Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.66 KB

File metadata and controls

34 lines (25 loc) · 1.66 KB

StatusEvent

Displays when a status event occurred

Properties

Name Type Description Notes
event_date_time str The date and time when the status event occurred, displayed in the format YYYY-MM-DDThh:mm:ss [optional]
message str A message describing the status event [optional]
response_key str The type of number or acknowledgement returned by the tax authority (if applicable). For example, it could be an identification key, acknowledgement code, or any other relevant identifier. [optional]
response_value str The corresponding value associated with the response key. This value is provided by the tax authority in response to the event. [optional]
category str Represents the functional area or process stage where the status event occurred. Useful for grouping related events such as document processing, transmission, or validation. [optional]

Example

from Avalara.SDK.models.EInvoicing.V1.status_event import StatusEvent

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

# convert the object into a dict
status_event_dict = status_event_instance.to_dict()
# create an instance of StatusEvent from a dict
status_event_from_dict = StatusEvent.from_dict(status_event_dict)

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