Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.82 KB

SummaryExportReq.md

File metadata and controls

35 lines (26 loc) · 1.82 KB

SummaryExportReq

Summary export request.

Properties

Name Type Description Notes
project_id int The project to export.
quantity SummaryExportQuantitiesOptionsEnum The quantity to compute. Abundance is always possible. [optional]
summarise_by SummaryExportSumOptionsEnum Computations aggregation level. [optional]
taxo_mapping Dict[str, int] Mapping from present taxon (key) to output replacement one (value). Use a 0 replacement to discard the present taxon. [optional]
formulae Dict[str, str] Transitory: How to get values from DB free columns. Python syntax, prefixes are 'sam', 'ssm' and 'obj'.Variables used in computations are 'total_water_volume', 'subsample_coef' and 'individual_volume' [optional]
out_to_ftp bool Copy result file to FTP area. Original file is still available. [optional] [default to False]

Example

from ecotaxa_py_client.models.summary_export_req import SummaryExportReq

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

# convert the object into a dict
summary_export_req_dict = summary_export_req_instance.to_dict()
# create an instance of SummaryExportReq from a dict
summary_export_req_form_dict = summary_export_req.from_dict(summary_export_req_dict)

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