Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.02 KB

File metadata and controls

30 lines (21 loc) · 1.02 KB

Excludebillingpostpayload

Properties

Name Type Description Notes
resource_id int
exclude bool

Example

from hyperstack.models.excludebillingpostpayload import Excludebillingpostpayload

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

# convert the object into a dict
excludebillingpostpayload_dict = excludebillingpostpayload_instance.to_dict()
# create an instance of Excludebillingpostpayload from a dict
excludebillingpostpayload_form_dict = excludebillingpostpayload.from_dict(excludebillingpostpayload_dict)

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