@jellyfin/sdk
Version:
A TypeScript SDK for Jellyfin.
36 lines (35 loc) • 920 B
TypeScript
/**
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* Do not edit the class manually.
*
* Jellyfin API
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/
/**
* Validate path object.
* @export
* @interface ValidatePathDto
*/
export interface ValidatePathDto {
/**
* Gets or sets a value indicating whether validate if path is writable.
* @type {boolean}
* @memberof ValidatePathDto
*/
'ValidateWritable'?: boolean;
/**
* Gets or sets the path.
* @type {string}
* @memberof ValidatePathDto
*/
'Path'?: string | null;
/**
* Gets or sets is path file.
* @type {boolean}
* @memberof ValidatePathDto
*/
'IsFile'?: boolean | null;
}