/** * Contains the properties to update * @export * @interface ModifyVersionPayloadDataAttributes */ export interface ModifyVersionPayloadDataAttributes { /** * The file name to be used when synced to local disk (1-255 characters). Avoid using the following reserved characters in the name: ``<``, ``>``, ``:``, ``\"``, ``/``, ``\\``, ``|``, ``?``, ``*``, ``\'``, ``\\n``, ``\\r``, ``\\t``, ``\\0``, ``\\f``, ``¢``, ``™``, ``$``, ``®``. * @type {string} * @memberof ModifyVersionPayloadDataAttributes */ 'name'?: string; }