| Name |
Type |
Description |
Notes |
| base_model |
str |
|
[optional] |
| base_model_display_name |
str |
|
[optional] |
| infrahub_id |
int |
|
[optional] |
| lora_adapter |
str |
|
[optional] |
| resource_name |
str |
|
[optional] |
| status |
str |
|
[optional] |
from hyperstack.models.attributes import Attributes
# TODO update the JSON string below
json = "{}"
# create an instance of Attributes from a JSON string
attributes_instance = Attributes.from_json(json)
# print the JSON string representation of the object
print(Attributes.to_json())
# convert the object into a dict
attributes_dict = attributes_instance.to_dict()
# create an instance of Attributes from a dict
attributes_from_dict = Attributes.from_dict(attributes_dict)
[Back to Model list] [Back to API list] [Back to README]