Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.83 KB

TaxassignmentAutocompleteElementResponse.md

File metadata and controls

32 lines (23 loc) · 1.83 KB

TaxassignmentAutocompleteElementResponse

A Taxassignment AutocompleteElement Response

Properties

Name Type Description Notes
s_taxassignment_description_x str The description of the Taxassignment in the language of the requester
pki_taxassignment_id int The unique ID of the Taxassignment. Valid values: Value
b_taxassignment_isactive bool Whether the Taxassignment is active or not

Example

from eZmaxApi.models.taxassignment_autocomplete_element_response import TaxassignmentAutocompleteElementResponse

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

# convert the object into a dict
taxassignment_autocomplete_element_response_dict = taxassignment_autocomplete_element_response_instance.to_dict()
# create an instance of TaxassignmentAutocompleteElementResponse from a dict
taxassignment_autocomplete_element_response_form_dict = taxassignment_autocomplete_element_response.from_dict(taxassignment_autocomplete_element_response_dict)

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