Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.28 KB

Beneficiary.md

File metadata and controls

33 lines (24 loc) · 1.28 KB

Beneficiary

Properties

Name Type Description Notes
name str The displayed name of the wallet that will be the target of the wire transfer. [optional]
country str ISO-3 country code of the wire transfer target's address. [optional]
city str The city of the wire transfer target's address. [optional]
zip str The zip code of the wire transfer target's address. [optional]
street str The street and house number of the wire transfer target's address. [optional]

Example

from clientapi_barion.models.beneficiary import Beneficiary

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

# convert the object into a dict
beneficiary_dict = beneficiary_instance.to_dict()
# create an instance of Beneficiary from a dict
beneficiary_from_dict = Beneficiary.from_dict(beneficiary_dict)

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