Skip to content

Latest commit

History

History
29 lines (20 loc) · 971 Bytes

File metadata and controls

29 lines (20 loc) · 971 Bytes

AddFileLabelRequest

Properties

NameTypeDescriptionNotes
namestrThe Label name.[optional]

Example

fromlilt.models.add_file_label_requestimportAddFileLabelRequest# TODO update the JSON string belowjson="{}"# create an instance of AddFileLabelRequest from a JSON stringadd_file_label_request_instance=AddFileLabelRequest.from_json(json)
# print the JSON string representation of the objectprint(AddFileLabelRequest.to_json())
# convert the object into a dictadd_file_label_request_dict=add_file_label_request_instance.to_dict()
# create an instance of AddFileLabelRequest from a dictadd_file_label_request_from_dict=AddFileLabelRequest.from_dict(add_file_label_request_dict)

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