Skip to content

Latest commit

 

History

History
39 lines (30 loc) · 1.12 KB

StripePlan.md

File metadata and controls

39 lines (30 loc) · 1.12 KB

StripePlan

Properties

Name Type Description Notes
amount int
chunk_count int
created_at datetime
dataset_count int
file_storage int
id str
message_count int
name str
stripe_id str
updated_at datetime
user_count int

Example

from trieve_py_client.models.stripe_plan import StripePlan

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

# convert the object into a dict
stripe_plan_dict = stripe_plan_instance.to_dict()
# create an instance of StripePlan from a dict
stripe_plan_form_dict = stripe_plan.from_dict(stripe_plan_dict)

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