| Name |
Type |
Description |
Notes |
| event_name |
str |
Unique, to the delivery system, identifier of the event. |
|
from Avalara.SDK.models.EInvoicing.V1.event_subscription import EventSubscription
# TODO update the JSON string below
json = "{}"
# create an instance of EventSubscription from a JSON string
event_subscription_instance = EventSubscription.from_json(json)
# print the JSON string representation of the object
print(EventSubscription.to_json())
# convert the object into a dict
event_subscription_dict = event_subscription_instance.to_dict()
# create an instance of EventSubscription from a dict
event_subscription_from_dict = EventSubscription.from_dict(event_subscription_dict)
[Back to Model list] [Back to API list] [Back to README]