Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 889 Bytes

File metadata and controls

30 lines (21 loc) · 889 Bytes

ApiCredits

Properties

Name Type Description Notes
total_credits int [optional]
served_request int [optional]

Example

from whoisfreaks.models.api_credits import ApiCredits

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

# convert the object into a dict
api_credits_dict = api_credits_instance.to_dict()
# create an instance of ApiCredits from a dict
api_credits_from_dict = ApiCredits.from_dict(api_credits_dict)

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