The external link request parameters.
| Name | Type | Description | Notes |
|---|---|---|---|
| link_id | str | The external link ID. | [optional] |
| access | FileShare | [optional] | |
| expiration_date | ApiDateTime | [optional] | |
| title | str | The link name. | [optional] |
| internal | bool | The link scope, whether it is internal or not. | [optional] |
| primary | bool | Specifies whether the file link is primary or not. | [optional] |
| deny_download | bool | Specifies whether to deny downloading the file or not. | [optional] |
| password | str | Password for access via link. | [optional] |
from docspace_api_sdk.models.file_link_request import FileLinkRequest
# TODO update the JSON string below
json = "{}"
# create an instance of FileLinkRequest from a JSON string
file_link_request_instance = FileLinkRequest.from_json(json)
# print the JSON string representation of the object
print(FileLinkRequest.to_json())
# convert the object into a dict
file_link_request_dict = file_link_request_instance.to_dict()
# create an instance of FileLinkRequest from a dict
file_link_request_from_dict = FileLinkRequest.from_dict(file_link_request_dict)