Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 978 Bytes

NotUsedForField.md

File metadata and controls

30 lines (21 loc) · 978 Bytes

NotUsedForField

Mandates for which this field is not used

Properties

Name Type Description Notes
country_mandate str [optional]

Example

from Avalara.SDK.models.EInvoicing.V1.not_used_for_field import NotUsedForField

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

# convert the object into a dict
not_used_for_field_dict = not_used_for_field_instance.to_dict()
# create an instance of NotUsedForField from a dict
not_used_for_field_from_dict = NotUsedForField.from_dict(not_used_for_field_dict)

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