You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Optional field containing additional company-related information such as companyName, companyAddress, blockListed, tradeName, and taxPayerType. It may also include other details specific to the given tax authority. Refer to the GET /tax-identifiers/schema API endpoint for the full response structure for a given country.
[optional]
Example
fromAvalara.SDK.models.EInvoicing.V1.tax_identifier_response_valueimportTaxIdentifierResponseValue# TODO update the JSON string belowjson="{}"# create an instance of TaxIdentifierResponseValue from a JSON stringtax_identifier_response_value_instance=TaxIdentifierResponseValue.from_json(json)
# print the JSON string representation of the objectprint(TaxIdentifierResponseValue.to_json())
# convert the object into a dicttax_identifier_response_value_dict=tax_identifier_response_value_instance.to_dict()
# create an instance of TaxIdentifierResponseValue from a dicttax_identifier_response_value_from_dict=TaxIdentifierResponseValue.from_dict(tax_identifier_response_value_dict)