Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 970 Bytes

File metadata and controls

30 lines (21 loc) · 970 Bytes

DailyBillResponse

Properties

Name Type Description Notes
var_date date
credits float

Example

from platform_api_python_client.models.daily_bill_response import DailyBillResponse

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

# convert the object into a dict
daily_bill_response_dict = daily_bill_response_instance.to_dict()
# create an instance of DailyBillResponse from a dict
daily_bill_response_from_dict = DailyBillResponse.from_dict(daily_bill_response_dict)

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