Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.68 KB

File metadata and controls

39 lines (30 loc) · 1.68 KB

FiscalDocumentRecipient

Properties

Name Type Description Notes
id str [optional]
first_name str [optional]
last_name str [optional]
email str [optional]
type RecipientType [optional]
address RecipientAddress [optional]
company RecipientCompany [optional]
tax RecipientTaxInfo [optional]
contact_details RecipientContactDetails [optional]
document RecipientDocument [optional]
country_data Dict[str, object] Arbitrary country-specific fields from guest requirements. [optional]

Example

from cloudbeds_fiscal_document.models.fiscal_document_recipient import FiscalDocumentRecipient

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

# convert the object into a dict
fiscal_document_recipient_dict = fiscal_document_recipient_instance.to_dict()
# create an instance of FiscalDocumentRecipient from a dict
fiscal_document_recipient_from_dict = FiscalDocumentRecipient.from_dict(fiscal_document_recipient_dict)

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