| 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] |
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)