Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.29 KB

File metadata and controls

32 lines (23 loc) · 1.29 KB

SubscriptionRegistration

Properties

Name Type Description Notes
description str Description of the subscription [optional]
notification_url str The URL of the webhook endpoint to which event messages will be delivered
signature SignatureSignature
events List[EventSubscription]

Example

from Avalara.SDK.models.EInvoicing.V1.subscription_registration import SubscriptionRegistration

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

# convert the object into a dict
subscription_registration_dict = subscription_registration_instance.to_dict()
# create an instance of SubscriptionRegistration from a dict
subscription_registration_from_dict = SubscriptionRegistration.from_dict(subscription_registration_dict)

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