Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.13 KB

File metadata and controls

34 lines (25 loc) · 1.13 KB

RecipientDetails

Properties

Name Type Description Notes
id str [optional]
first_name str [optional]
last_name str [optional]
email str [optional]
type RecipientType [optional]
company_name str [optional]

Example

from cloudbeds_fiscal_document.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]