Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 939 Bytes

File metadata and controls

30 lines (21 loc) · 939 Bytes

Extension

Properties

Name Type Description Notes
key str Name of the custom attribute.
values List[str] Array of string values associated with the custom attribute.

Example

from Avalara.SDK.models.EInvoicing.V1.extension import Extension

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

# convert the object into a dict
extension_dict = extension_instance.to_dict()
# create an instance of Extension from a dict
extension_from_dict = Extension.from_dict(extension_dict)

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