Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.47 KB

File metadata and controls

34 lines (25 loc) · 1.47 KB

GetSubscriptionOutputBody

Properties

Name Type Description Notes
ends_at datetime Date access ends (CANCELING only). [optional]
price PriceSummary Current price (ACTIVE / CANCELING / PAYMENT_ISSUE only). [optional]
product ProductSummary Subscribed product (ACTIVE / CANCELING / PAYMENT_ISSUE only). [optional]
renews_at datetime Next billing date (ACTIVE only). [optional]
status str Subscription state.
tier str User's effective tier.

Example

from revengai.models.get_subscription_output_body import GetSubscriptionOutputBody

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

# convert the object into a dict
get_subscription_output_body_dict = get_subscription_output_body_instance.to_dict()
# create an instance of GetSubscriptionOutputBody from a dict
get_subscription_output_body_from_dict = GetSubscriptionOutputBody.from_dict(get_subscription_output_body_dict)

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