Probe200Response
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| json_probe_result | List[Probe] | ||
| json_probe_by_id_result | Probe |
Links
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 |
|---|---|---|---|---|
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.probe200_response import Probe200Response
# TODO update the JSON string below
json = "{}"
# create an instance of Probe200Response from a JSON string
probe200_response_instance = Probe200Response.from_json(json)
# print the JSON string representation of the object
print(Probe200Response.to_json())
# convert the object into a dict
probe200_response_dict = probe200_response_instance.to_dict()
# create an instance of Probe200Response from a dict
probe200_response_from_dict = Probe200Response.from_dict(probe200_response_dict)