Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

File metadata and controls

31 lines (22 loc) · 1.28 KB

AccountStatusResponse

Properties

Name Type Description Notes
subscription_plan str The subscription plan currently associated with the account, or 'none'.
subscription_state str The current subscription state: 'active', 'pastDue', or 'ended'.
credits float The number of API credits left. Can be fractional, so parse as a double-precision number.

Example

from vectorizer_ai.models.account_status_response import AccountStatusResponse

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

# convert the object into a dict
account_status_response_dict = account_status_response_instance.to_dict()
# create an instance of AccountStatusResponse from a dict
account_status_response_from_dict = AccountStatusResponse.from_dict(account_status_response_dict)

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