Skip to content

Files

Latest commit

 

History

History
35 lines (26 loc) · 1.02 KB

FormLink.md

File metadata and controls

35 lines (26 loc) · 1.02 KB

FormLink

Properties

Name Type Description Notes
can_comment bool [optional]
can_edit bool [optional]
expires int [optional]
max_views int [optional]
password str [optional]
slug str [optional]
token str [optional]

Example

from photoprism_client.models.form_link import FormLink

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

# convert the object into a dict
form_link_dict = form_link_instance.to_dict()
# create an instance of FormLink from a dict
form_link_from_dict = FormLink.from_dict(form_link_dict)

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