Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.6 KB

File metadata and controls

38 lines (29 loc) · 1.6 KB

ManualRecipientRequest

Properties

Name Type Description Notes
type str Type of recipient (person or company)
name str Name of the recipient
gender GuestGender [optional]
email str Email address of the recipient [optional]
birthday date Birthday of the recipient [optional]
phone str Phone number [optional]
cell_phone str Cell phone number [optional]
tax_id str Tax ID / VAT number
address ManualRecipientRequestAddress [optional]
document ManualRecipientRequestDocument [optional]

Example

from cloudbeds_fiscal_document.models.manual_recipient_request import ManualRecipientRequest

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

# convert the object into a dict
manual_recipient_request_dict = manual_recipient_request_instance.to_dict()
# create an instance of ManualRecipientRequest from a dict
manual_recipient_request_from_dict = ManualRecipientRequest.from_dict(manual_recipient_request_dict)

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