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

Latest commit

 

History

History
29 lines (21 loc) · 911 Bytes

BillingStatus.md

File metadata and controls

29 lines (21 loc) · 911 Bytes

BillingStatus

Properties

Name Type Description Notes
is_valid bool [optional]
message str [optional]

Example

from qovery.models.billing_status import BillingStatus

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

# convert the object into a dict
billing_status_dict = billing_status_instance.to_dict()
# create an instance of BillingStatus from a dict
billing_status_form_dict = billing_status.from_dict(billing_status_dict)

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