Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.1 KB

File metadata and controls

31 lines (22 loc) · 1.1 KB

AccountUsageResponse

Properties

Name Type Description Notes
api_key str [optional]
api_credits ApiCredits [optional]
api_subscription ApiSubscription [optional]

Example

from whoisfreaks.models.account_usage_response import AccountUsageResponse

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

# convert the object into a dict
account_usage_response_dict = account_usage_response_instance.to_dict()
# create an instance of AccountUsageResponse from a dict
account_usage_response_from_dict = AccountUsageResponse.from_dict(account_usage_response_dict)

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