Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.07 KB

File metadata and controls

31 lines (22 loc) · 1.07 KB

RecipientTaxInfo

Properties

Name Type Description Notes
id str [optional]
company_name str [optional]
source str Indicates whether the tax identification used is from Tax ID or Document Number. [optional]

Example

from cloudbeds_fiscal_document.models.recipient_tax_info import RecipientTaxInfo

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

# convert the object into a dict
recipient_tax_info_dict = recipient_tax_info_instance.to_dict()
# create an instance of RecipientTaxInfo from a dict
recipient_tax_info_from_dict = RecipientTaxInfo.from_dict(recipient_tax_info_dict)

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