Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 908 Bytes

File metadata and controls

29 lines (20 loc) · 908 Bytes

CreditsResponse

Properties

Name Type Description Notes
credits float

Example

from platform_api_python_client.models.credits_response import CreditsResponse

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

# convert the object into a dict
credits_response_dict = credits_response_instance.to_dict()
# create an instance of CreditsResponse from a dict
credits_response_from_dict = CreditsResponse.from_dict(credits_response_dict)

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