Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.2 KB

File metadata and controls

30 lines (21 loc) · 1.2 KB

FiscalizationTaxRulesResponse

Properties

Name Type Description Notes
country CountryInfo
taxes List[TaxRule] Flat list of selectable tax category + rate combinations

Example

from cloudbeds_fiscal_document.models.fiscalization_tax_rules_response import FiscalizationTaxRulesResponse

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

# convert the object into a dict
fiscalization_tax_rules_response_dict = fiscalization_tax_rules_response_instance.to_dict()
# create an instance of FiscalizationTaxRulesResponse from a dict
fiscalization_tax_rules_response_from_dict = FiscalizationTaxRulesResponse.from_dict(fiscalization_tax_rules_response_dict)

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