Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.2 KB

TaxonomyRecast.md

File metadata and controls

31 lines (22 loc) · 1.2 KB

TaxonomyRecast

In various contexts, a taxo recast (from taxon -> to taxon) setting.

Properties

Name Type Description Notes
from_to Dict[str, int] Mapping from seen taxon (key) to output replacement one (value). Use a null replacement to discard the present taxon. Note: keys are strings.
doc Dict[str, str] To keep memory of the reasons for the above mapping. Note: keys are strings. [optional]

Example

from ecotaxa_py_client.models.taxonomy_recast import TaxonomyRecast

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

# convert the object into a dict
taxonomy_recast_dict = taxonomy_recast_instance.to_dict()
# create an instance of TaxonomyRecast from a dict
taxonomy_recast_form_dict = taxonomy_recast.from_dict(taxonomy_recast_dict)

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