Skip to content

Latest commit

 

History

History
31 lines (23 loc) · 1.42 KB

FrontierServiceCreateCheckoutRequest.md

File metadata and controls

31 lines (23 loc) · 1.42 KB

FrontierServiceCreateCheckoutRequest

Properties

Name Type Description Notes
success_url str [optional]
cancel_url str [optional]
subscription_body V1beta1CheckoutSubscriptionBody [optional]
feature_body V1beta1CheckoutFeatureBody [optional]

Example

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)

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