本文整理匯總了Python中mangopaysdk.entities.payin.PayIn.ExecutionType方法的典型用法代碼示例。如果您正苦於以下問題:Python PayIn.ExecutionType方法的具體用法?Python PayIn.ExecutionType怎麽用?Python PayIn.ExecutionType使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類mangopaysdk.entities.payin.PayIn
的用法示例。
在下文中一共展示了PayIn.ExecutionType方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。
示例1: getJohnsPayInBankWireDirect
# 需要導入模塊: from mangopaysdk.entities.payin import PayIn [as 別名]
# 或者: from mangopaysdk.entities.payin.PayIn import ExecutionType [as 別名]
def getJohnsPayInBankWireDirect(self):
wallet = self.getJohnsWallet()
payIn = PayIn()
payIn.CreditedWalletId = wallet.Id
payIn.AuthorId = wallet.Owners[0]
# payment type as CARD
payIn.PaymentDetails = PayInPaymentDetailsBankWire()
payIn.PaymentDetails.DeclaredDebitedFunds = Money()
payIn.PaymentDetails.DeclaredFees = Money()
payIn.PaymentDetails.DeclaredDebitedFunds.Currency = 'EUR'
payIn.PaymentDetails.DeclaredFees.Currency = 'EUR'
payIn.PaymentDetails.DeclaredDebitedFunds.Amount = 10000
payIn.PaymentDetails.DeclaredFees.Amount = 1000
# execution type as DIRECT
payIn.ExecutionDetails = PayInExecutionDetailsDirect()
payIn.ExecutionType = ExecutionType.DIRECT
return self.sdk.payIns.Create(payIn)