Body for POST /v1/tenants/{tenant_id}/subscriptions.
| Name | Type | Description | Notes |
|---|---|---|---|
| subscription_id | UUID | Target plan to switch to. | |
| num_seats | int | Desired seat cap. Must be <= plan.max_seats and >= the count of active TenantUser rows. |
from ksapi.models.change_subscription_request import ChangeSubscriptionRequest
# TODO update the JSON string below
json = "{}"
# create an instance of ChangeSubscriptionRequest from a JSON string
change_subscription_request_instance = ChangeSubscriptionRequest.from_json(json)
# print the JSON string representation of the object
print(ChangeSubscriptionRequest.to_json())
# convert the object into a dict
change_subscription_request_dict = change_subscription_request_instance.to_dict()
# create an instance of ChangeSubscriptionRequest from a dict
change_subscription_request_from_dict = ChangeSubscriptionRequest.from_dict(change_subscription_request_dict)