Skip to content

SystemProfile

Properties

Name Type Description Notes
profile_active bool [optional]
profile_id int [optional]
profile_info str [optional]
profile_name str [optional]
system_hw_config str [optional]

1:1 Relationships

All the listed relationships are available as properties on the model instance

Name Model Linked Via

Implicit Relationships

All the listed relationships are available as properties on the model instance

Name Model API Operation Parameter
devices List[Device] DeviceApi ProfileID->id

Parameterized Relationships

All the listed relationships are available as methods on the model instance.

Parameters written in bold are taken automatically from the model instance, when calling the method you have to supply the non-bold parameters

Name Model API Operation Parameters
## Example
from plantscreen.models.system_profile import SystemProfile

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

# convert the object into a dict
system_profile_dict = system_profile_instance.to_dict()
# create an instance of SystemProfile from a dict
system_profile_from_dict = SystemProfile.from_dict(system_profile_dict)

Back to API Endpoints Back to Models [Back to README]