Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 907 Bytes

FormLabel.md

File metadata and controls

31 lines (22 loc) · 907 Bytes

FormLabel

Properties

Name Type Description Notes
name str [optional]
priority int [optional]
uncertainty int [optional]

Example

from photoprism_client.models.form_label import FormLabel

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

# convert the object into a dict
form_label_dict = form_label_instance.to_dict()
# create an instance of FormLabel from a dict
form_label_from_dict = FormLabel.from_dict(form_label_dict)

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