An object that is generated by the integrator to uniquely identify a file in its system.
| 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] |
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)