Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 918 Bytes

TaxNumber.md

File metadata and controls

30 lines (21 loc) · 918 Bytes

TaxNumber

Properties

Name Type Description Notes
tax_number str [optional]
result CheckTaxNumberMessage [optional]

Example

from clientapi_billingo.models.tax_number import TaxNumber

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

# convert the object into a dict
tax_number_dict = tax_number_instance.to_dict()
# create an instance of TaxNumber from a dict
tax_number_from_dict = TaxNumber.from_dict(tax_number_dict)

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