Subscription AutoRenewal Disabled
The `Subscription.AutoRenewal.Disabled` event indicates that auto-renewal for a subscription is disabled. Subscriptions will not automatically renew at the end of each billing cycle when this feature is disabled.
💡 Note: This event occurs when the auto-renewal feature for a subscription is disabled.
Event Attributes
TenantSystemName (string)
The name of the tenant system within the RoSaaS database.
Event (string)
The type of event. For this event, the value is Subscription.AutoRenewal.Disabled
.
EventCode (integer)
Unique code representing the event type. For Subscription.AutoRenewal.Disabled
, the event code is 15
.
MetaData (object)
Additional dynamic metadata related to the event.
MetaData Attributes
- CurrentSubscriptionPlan (string): The current subscription plan of the tenant.
- CancellationTime (timestamp): The UTC timestamp indicating when the auto-renewal was disabled.
Created (timestamp)
The UTC timestamp indicating when the event was created.
Example
Here is an example JSON representation of the Subscription.AutoRenewal.Disabled
event:
{
"TenantSystemName": "example_tenant",
"Event": "Subscription.AutoRenewal.Disabled",
"MetaData": {
"CurrentSubscriptionPlan": "pro-plan",
"CancellationTime": "2024-06-02T12:00:00Z"
},
"EventCode": 15,
"Created": "2024-06-02T12:00:00Z"
}