Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.14 KB

File metadata and controls

32 lines (23 loc) · 1.14 KB

Identifier

Properties

Name Type Description Notes
name str Identifier name (e.g., Peppol Participant ID).
display_name str Display name of the identifier. [optional]
value str Value of the identifier.
extensions List[Extension] Optional array used to carry additional metadata or configuration values for the identifier. [optional]

Example

from Avalara.SDK.models.EInvoicing.V1.identifier import Identifier

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

# convert the object into a dict
identifier_dict = identifier_instance.to_dict()
# create an instance of Identifier from a dict
identifier_from_dict = Identifier.from_dict(identifier_dict)

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