Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.22 KB

File metadata and controls

31 lines (22 loc) · 1.22 KB

ChangeSubscriptionRequest

Body for POST /v1/tenants/{tenant_id}/subscriptions.

Properties

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.

Example

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)

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