當前位置: 首頁>>代碼示例>>Python>>正文


Python BankAccount.BIC方法代碼示例

本文整理匯總了Python中mangopaysdk.entities.bankaccount.BankAccount.BIC方法的典型用法代碼示例。如果您正苦於以下問題:Python BankAccount.BIC方法的具體用法?Python BankAccount.BIC怎麽用?Python BankAccount.BIC使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在mangopaysdk.entities.bankaccount.BankAccount的用法示例。


在下文中一共展示了BankAccount.BIC方法的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Python代碼示例。

示例1: create

# 需要導入模塊: from mangopaysdk.entities.bankaccount import BankAccount [as 別名]
# 或者: from mangopaysdk.entities.bankaccount.BankAccount import BIC [as 別名]
 def create(self):
     client = get_mangopay_api_client()
     mangopay_bank_account = BankAccount()
     mangopay_bank_account.UserId = self.mangopay_user.mangopay_id
     mangopay_bank_account.OwnerName = \
         self.mangopay_user.user.get_full_name()
     mangopay_bank_account.OwnerAddress = self.address
     mangopay_bank_account.IBAN = self.iban
     mangopay_bank_account.BIC = self.bic
     created_bank_account = client.users.CreateBankAccount(
         str(self.mangopay_user.mangopay_id), mangopay_bank_account)
     self.mangopay_id = created_bank_account.Id
     self.save()
開發者ID:bsvetchine,項目名稱:django-mangopay,代碼行數:15,代碼來源:models.py

示例2: getJohnsAccount

# 需要導入模塊: from mangopaysdk.entities.bankaccount import BankAccount [as 別名]
# 或者: from mangopaysdk.entities.bankaccount.BankAccount import BIC [as 別名]
 def getJohnsAccount(self):
     """Creates TestBase._johnsAccount (bank account belonging to John) if not created yet"""
     if self._johnsAccount == None:
         john = self.getJohn()
         account = BankAccount()
         account.Type = 'IBAN'
         account.OwnerName = john.FirstName + ' ' +  john.LastName
         account.OwnerAddress = john.Address
         account.IBAN = 'FR7617906000320008335232973'
         account.BIC = 'BINAADADXXX'
         self._johnsAccount = self.sdk.users.CreateBankAccount(john.Id, account)
         self.assertEqualInputProps(self._johnsAccount, account, True)
     return self._johnsAccount
開發者ID:ebewe,項目名稱:mangopay2-python-sdk,代碼行數:15,代碼來源:testbase.py

示例3: create

# 需要導入模塊: from mangopaysdk.entities.bankaccount import BankAccount [as 別名]
# 或者: from mangopaysdk.entities.bankaccount.BankAccount import BIC [as 別名]
 def create(self):
     client = get_mangopay_api_client()
     mangopay_bank_account = BankAccount()
     mangopay_bank_account.UserId = self.mangopay_user.mangopay_id
     mangopay_bank_account.OwnerName = \
         self.mangopay_user.user.get_full_name()
     mangopay_bank_account.OwnerAddress = self.address
     mangopay_bank_account.IBAN = self.iban
     mangopay_bank_account.BIC = self.bic
     if not mangopay_bank_account.IBAN:
         mangopay_bank_account.Type = 'OTHER'
         bank_details = BankAccountDetailsOTHER()
         bank_details.AccountNumber = self.account_number
         bank_details.Country = self.country
     else:
         bank_details = BankAccountDetailsIBAN()
     mangopay_bank_account.Details = bank_details
     created_bank_account = client.users.CreateBankAccount(
         str(self.mangopay_user.mangopay_id), mangopay_bank_account)
     self.mangopay_id = created_bank_account.Id
     self.save()
開發者ID:ivanm11,項目名稱:django-mangopay,代碼行數:23,代碼來源:models.py


注:本文中的mangopaysdk.entities.bankaccount.BankAccount.BIC方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。