Skip to content

Species

Properties

Name Type Description Notes
id str
time_created datetime
time_modified datetime
owner_id str
tenant_id str
tenant_name str [optional]
name str The name of the species

Example

from libica.openapi.v3.models.species import Species

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

# convert the object into a dict
species_dict = species_instance.to_dict()
# create an instance of Species from a dict
species_from_dict = Species.from_dict(species_dict)

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