Skip to content

Latest commit

 

History

History
29 lines (21 loc) · 1.34 KB

AdminServiceDelegatedCheckoutRequest.md

File metadata and controls

29 lines (21 loc) · 1.34 KB

AdminServiceDelegatedCheckoutRequest

Properties

Name Type Description Notes
subscription_body V1beta1CheckoutSubscriptionBody [optional]
feature_body V1beta1CheckoutFeatureBody [optional]

Example

from frontier_api.models.admin_service_delegated_checkout_request import AdminServiceDelegatedCheckoutRequest

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

# convert the object into a dict
admin_service_delegated_checkout_request_dict = admin_service_delegated_checkout_request_instance.to_dict()
# create an instance of AdminServiceDelegatedCheckoutRequest from a dict
admin_service_delegated_checkout_request_form_dict = admin_service_delegated_checkout_request.from_dict(admin_service_delegated_checkout_request_dict)

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