Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.62 KB

File metadata and controls

36 lines (27 loc) · 1.62 KB

EventMessage

Properties

Name Type Description Notes
message object Event-specific information
signature SignatureValueSignature
tenant_id str Tenant ID of the event
correlation_id str The correlation ID used by Avalara to aid in tracing through to provenance of this event massage. [optional]
system_code str The Avalara registered code for the system. See <a href=&quot;https://avalara.atlassian.net/wiki/spaces/AIM/pages/637250338966/Taxonomy+Avalara+Systems\&quot;&gt;Taxonomy&amp;#58; Avalara Systems</a>
event_name str Type of the event
event_version str Version of the included payload. [optional]
receipt_timestamp datetime Timestamp when the event was received by the dispatch service. [optional]

Example

from Avalara.SDK.models.EInvoicing.V1.event_message import EventMessage

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

# convert the object into a dict
event_message_dict = event_message_instance.to_dict()
# create an instance of EventMessage from a dict
event_message_from_dict = EventMessage.from_dict(event_message_dict)

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