Skip to content
This repository has been archived by the owner on Mar 14, 2024. It is now read-only.

Latest commit

 

History

History
28 lines (20 loc) · 845 Bytes

BillingEnd.md

File metadata and controls

28 lines (20 loc) · 845 Bytes

BillingEnd

Properties

Name Type Description Notes
billing_ended_on datetime [optional]

Example

from qovery.models.billing_end import BillingEnd

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

# convert the object into a dict
billing_end_dict = billing_end_instance.to_dict()
# create an instance of BillingEnd from a dict
billing_end_form_dict = billing_end.from_dict(billing_end_dict)

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