Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.06 KB

File metadata and controls

31 lines (22 loc) · 1.06 KB

Billingimmuneresources

Properties

Name Type Description Notes
resource_id int [optional]
resource_type str [optional]
organization_id int [optional]

Example

from hyperstack.models.billingimmuneresources import Billingimmuneresources

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

# convert the object into a dict
billingimmuneresources_dict = billingimmuneresources_instance.to_dict()
# create an instance of Billingimmuneresources from a dict
billingimmuneresources_form_dict = billingimmuneresources.from_dict(billingimmuneresources_dict)

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