Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.04 KB

TaxonUsageModel.md

File metadata and controls

31 lines (22 loc) · 1.04 KB

TaxonUsageModel

Properties

Name Type Description Notes
projid int Project unique identifier.
title str Project's title.
nb_validated int How many validated objects in this category in this project.

Example

from ecotaxa_py_client.models.taxon_usage_model import TaxonUsageModel

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

# convert the object into a dict
taxon_usage_model_dict = taxon_usage_model_instance.to_dict()
# create an instance of TaxonUsageModel from a dict
taxon_usage_model_form_dict = taxon_usage_model.from_dict(taxon_usage_model_dict)

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