Overview

Summary

ContactDonateImprint


Appendix E-15: FUNDING SOURCE (UI prompt)


FundingSourceFundingSourceModulePayPal

Properties (5)

PropertyTypeEntityReferenceModule
(1) CreatedAtDATEFundingSource
(2) LastUsedAtDATEFundingSource
(3) StatusSTRINGFundingSource
(4) TypeSTRINGFundingSource
(5) UserAccountLONGFundingSourceUserAccountUserAccountModule


Module Interfaces (11)

Remote MethodLocal MethodModuleHTTP-MethodReferences
(1) /bankaccount/fundingsource/{id}findAllBankAccountOfFundingSource(id)CountryModuleGETFundingSource BankAccount
(2) /paymentcard/fundingsource/{id}findAllPaymentCardOfFundingSource(id)FundingSourceModuleGETFundingSource PaymentCard
(3) /fundingsource/{id}deleteFundingSourceById(id)FundingSourceModuleDELETEFundingSource
(4) /fundingsourceinsertFundingSource(fundingsource)FundingSourceModulePOSTFundingSource
(5) /fundingsource/useraccount/{id}findAllFundingSourceOfUserAccount(id)FundingSourceModuleGETUserAccount FundingSource
(6) /fundingsourcefindAllFundingSource()FundingSourceModuleGETFundingSource
(7) /fundingsource/{id}updateFundingSourceById(fundingsource)FundingSourceModulePUTFundingSource
(8) /fundingsource/{id}findFundingSourceById(id)FundingSourceModuleGETFundingSource
(9) /paymentmethod/fundingsource/{id}findAllPaymentMethodOfFundingSource(id)SubscriptionModuleGETFundingSource PaymentMethod
(10) /transaction/fundingsource/{id}findAllTransactionOfFundingSource(id)TransactionModuleGETFundingSource Transaction
(11) /payout/fundingsource/{id}findAllPayoutOfFundingSource(id)UserAccountModuleGETFundingSource Payout





Example:

final FundingSource fundingsource = (FundingSource) invokeModule(FUNDING_SOURCE_MODULE + "/fundingsource/" + id, FundingSource.class);
if (fundingsource != null) {
    final UserAccount useraccount1 = (UserAccount) invokeModule(USER_ACCOUNT_MODULE + "/useraccount/" + fundingsource.getUserAccount().getId(), UserAccount.class);
    if (useraccount1 != null) {
    }
}
return fundingsource;


Overview

Summary

ContactDonateImprint