It is a parameter that allows to identify in the response, the detailed content of the plans to which the client has subscribed
| Name | Type | Description | Notes |
|---|---|---|---|
| plan_id | str | ||
| card_id | str | [optional] | |
| trial_end | int | [optional] |
from conekta.models.subscription_request import SubscriptionRequest
# TODO update the JSON string below
json = "{}"
# create an instance of SubscriptionRequest from a JSON string
subscription_request_instance = SubscriptionRequest.from_json(json)
# print the JSON string representation of the object
print SubscriptionRequest.to_json()
# convert the object into a dict
subscription_request_dict = subscription_request_instance.to_dict()
# create an instance of SubscriptionRequest from a dict
subscription_request_form_dict = subscription_request.from_dict(subscription_request_dict)