Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

File metadata and controls

31 lines (22 loc) · 1.28 KB

ExcludeBillingPostPayload

Properties

Name Type Description Notes
exclude bool `true` excludes the resource from billing while `false` does not.
resource_id int The ID of the resource which is being excluded from billing.
resource_type str The type of the resource which is being excluded from billing.

Example

from hyperstack.models.exclude_billing_post_payload import ExcludeBillingPostPayload

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

# convert the object into a dict
exclude_billing_post_payload_dict = exclude_billing_post_payload_instance.to_dict()
# create an instance of ExcludeBillingPostPayload from a dict
exclude_billing_post_payload_from_dict = ExcludeBillingPostPayload.from_dict(exclude_billing_post_payload_dict)

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