Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.14 KB

EntityPhotoLabel.md

File metadata and controls

34 lines (25 loc) · 1.14 KB

EntityPhotoLabel

Properties

Name Type Description Notes
label EntityLabel [optional]
label_id int [optional]
label_src str [optional]
photo EntityPhoto [optional]
photo_id int [optional]
uncertainty int [optional]

Example

from photoprism_client.models.entity_photo_label import EntityPhotoLabel

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

# convert the object into a dict
entity_photo_label_dict = entity_photo_label_instance.to_dict()
# create an instance of EntityPhotoLabel from a dict
entity_photo_label_from_dict = EntityPhotoLabel.from_dict(entity_photo_label_dict)

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