Skip to content

Latest commit

 

History

History
32 lines (24 loc) · 1.29 KB

File metadata and controls

32 lines (24 loc) · 1.29 KB

FileReferenceData

An object that is generated by the integrator to uniquely identify a file in its system.

Properties

Name Type Description Notes
file_key str The unique document identifier used by the service to get a link to the file. [optional]
instance_id str The unique system identifier. [optional]
room_id str Room ID [optional]
can_edit_room bool Specifies if the room can be edited out or not. [optional]

Example

from docspace_api_sdk.models.file_reference_data import FileReferenceData

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

# convert the object into a dict
file_reference_data_dict = file_reference_data_instance.to_dict()
# create an instance of FileReferenceData from a dict
file_reference_data_from_dict = FileReferenceData.from_dict(file_reference_data_dict)

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