Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 933 Bytes

File metadata and controls

31 lines (22 loc) · 933 Bytes

Data

Properties

Name Type Description Notes
organization_id int Organization ID associated with the resource. [optional]
resource_id int ID of the resource. [optional]
resource_type str Type of the resource. [optional]

Example

from hyperstack.models.data import Data

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

# convert the object into a dict
data_dict = data_instance.to_dict()
# create an instance of Data from a dict
data_from_dict = Data.from_dict(data_dict)

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