Skip to content

Latest commit

 

History

History
52 lines (43 loc) · 3.25 KB

ResponseDoNothingNoopGet.md

File metadata and controls

52 lines (43 loc) · 3.25 KB

ResponseDoNothingNoopGet

Properties

Name Type Description Notes
objid int The object Id.
acquisid int The parent acquisition Id.
classif_id int The classification Id. [optional]
objtime str [optional]
latitude float The latitude. [optional]
longitude float The longitude. [optional]
depth_min float The min depth. [optional]
depth_max float The min depth. [optional]
objdate date [optional]
classif_qual str The classification qualification. Could be P for predicted, V for validated or D for Dubious. [optional]
sunpos str Sun position, from date, time and coords. [optional]
classif_when datetime The classification date. [optional]
classif_who int The user who manualy classify this object. [optional]
classif_auto_id int Set if the object was ever predicted, remain forever with these value. Reflect the 'last state' only if classif_qual is 'P'. [optional]
classif_auto_when datetime Set if the object was ever predicted, remain forever with these value. Reflect the 'last state' only if classif_qual is 'P'. The classification date. [optional]
classif_auto_score float Set if the object was ever predicted, remain forever with these value. Reflect the 'last state' only if classif_qual is 'P'. The classification auto score is generally between 0 and 1. This is a confidence score, in the fact that, the taxon prediction for this object is correct. [optional]
orig_id str Original object ID from initial TSV load.
object_link str Object link. [optional]
complement_info str [optional]
classif_date datetime The classification date. [optional]
classif_type str The type of classification. Could be A for Automatic or M for Manual. [optional]
classif_score float The classification score is generally between 0 and 1. This is a confidence score, in the fact that, the taxon prediction for this object is correct. [optional]
user_name str The name of the user who classified this object. [optional]
taxon_name str The taxon name of the object. [optional]

Example

from ecotaxa_py_client.models.response_do_nothing_noop_get import ResponseDoNothingNoopGet

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

# convert the object into a dict
response_do_nothing_noop_get_dict = response_do_nothing_noop_get_instance.to_dict()
# create an instance of ResponseDoNothingNoopGet from a dict
response_do_nothing_noop_get_form_dict = response_do_nothing_noop_get.from_dict(response_do_nothing_noop_get_dict)

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