Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.08 KB

File metadata and controls

30 lines (21 loc) · 1.08 KB

RecipientDetails

Properties

Name Type Description Notes
name str Required. Name of the recipient.
address RecipientAddress Required for foreign withdrawals, optional for domestic transfers. Address of the recipient. [optional]

Example

from clientapi_barion.models.recipient_details import RecipientDetails

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

# convert the object into a dict
recipient_details_dict = recipient_details_instance.to_dict()
# create an instance of RecipientDetails from a dict
recipient_details_from_dict = RecipientDetails.from_dict(recipient_details_dict)

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