You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`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
fromhyperstack.models.exclude_billing_post_payloadimportExcludeBillingPostPayload# TODO update the JSON string belowjson="{}"# create an instance of ExcludeBillingPostPayload from a JSON stringexclude_billing_post_payload_instance=ExcludeBillingPostPayload.from_json(json)
# print the JSON string representation of the objectprint(ExcludeBillingPostPayload.to_json())
# convert the object into a dictexclude_billing_post_payload_dict=exclude_billing_post_payload_instance.to_dict()
# create an instance of ExcludeBillingPostPayload from a dictexclude_billing_post_payload_from_dict=ExcludeBillingPostPayload.from_dict(exclude_billing_post_payload_dict)