Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 1.25 KB

File metadata and controls

30 lines (21 loc) · 1.25 KB

ResourceObjectResponseForCustomer

Properties

Name Type Description Notes
org_id int [optional]
resource InfrahubResourceObjectResponseForCustomer [optional]

Example

from hyperstack.models.resource_object_response_for_customer import ResourceObjectResponseForCustomer

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

# convert the object into a dict
resource_object_response_for_customer_dict = resource_object_response_for_customer_instance.to_dict()
# create an instance of ResourceObjectResponseForCustomer from a dict
resource_object_response_for_customer_from_dict = ResourceObjectResponseForCustomer.from_dict(resource_object_response_for_customer_dict)

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