Name | Type | Description | Notes |
---|---|---|---|
success_url | str | [optional] | |
cancel_url | str | [optional] | |
subscription_body | V1beta1CheckoutSubscriptionBody | [optional] | |
feature_body | V1beta1CheckoutFeatureBody | [optional] |
from frontier_api.models.frontier_service_create_checkout_request import FrontierServiceCreateCheckoutRequest
# TODO update the JSON string below
json = "{}"
# create an instance of FrontierServiceCreateCheckoutRequest from a JSON string
frontier_service_create_checkout_request_instance = FrontierServiceCreateCheckoutRequest.from_json(json)
# print the JSON string representation of the object
print FrontierServiceCreateCheckoutRequest.to_json()
# convert the object into a dict
frontier_service_create_checkout_request_dict = frontier_service_create_checkout_request_instance.to_dict()
# create an instance of FrontierServiceCreateCheckoutRequest from a dict
frontier_service_create_checkout_request_form_dict = frontier_service_create_checkout_request.from_dict(frontier_service_create_checkout_request_dict)