Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.22 KB

File metadata and controls

33 lines (24 loc) · 1.22 KB

CreateCheckoutSessionRequest

Properties

Name Type Description Notes
target_tier BillingPlanTier
cadence BillingCadence
seats int
success_url str
cancel_url str

Example

from ksapi.models.create_checkout_session_request import CreateCheckoutSessionRequest

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

# convert the object into a dict
create_checkout_session_request_dict = create_checkout_session_request_instance.to_dict()
# create an instance of CreateCheckoutSessionRequest from a dict
create_checkout_session_request_from_dict = CreateCheckoutSessionRequest.from_dict(create_checkout_session_request_dict)

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