Skip to content

Owner

Properties

Name Type Description Notes
create_date datetime [optional]
email str [optional]
first_name str [optional]
last_failed_date datetime [optional]
last_name str [optional]
last_success_login datetime [optional]
login str [optional]
owner_id int [optional]
sms_phone_number 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
experiments List[Experiment] ExperimentApi OwnerID->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.owner import Owner

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

# convert the object into a dict
owner_dict = owner_instance.to_dict()
# create an instance of Owner from a dict
owner_from_dict = Owner.from_dict(owner_dict)

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