Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 948 Bytes

File metadata and controls

29 lines (20 loc) · 948 Bytes

BankDetails

Properties

Name Type Description Notes
swift_code str Required for IBAN transfers. SwiftCode of the recipient bank for international transfers. [optional]

Example

from clientapi_barion.models.bank_details import BankDetails

# TODO update the JSON string below
json = "{}"
# create an instance of BankDetails from a JSON string
bank_details_instance = BankDetails.from_json(json)
# print the JSON string representation of the object
print(BankDetails.to_json())

# convert the object into a dict
bank_details_dict = bank_details_instance.to_dict()
# create an instance of BankDetails from a dict
bank_details_from_dict = BankDetails.from_dict(bank_details_dict)

[Back to Model list] [Back to API list] [Back to README]