@jellyfin/sdk
Version:
A TypeScript SDK for Jellyfin.
67 lines (66 loc) • 1.58 kB
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/.
*/
import type { TaskCompletionStatus } from './task-completion-status';
/**
* Class TaskExecutionInfo.
* @export
* @interface TaskResult
*/
export interface TaskResult {
/**
* Gets or sets the start time UTC.
* @type {string}
* @memberof TaskResult
*/
'StartTimeUtc'?: string;
/**
* Gets or sets the end time UTC.
* @type {string}
* @memberof TaskResult
*/
'EndTimeUtc'?: string;
/**
*
* @type {TaskCompletionStatus}
* @memberof TaskResult
*/
'Status'?: TaskCompletionStatus;
/**
* Gets or sets the name.
* @type {string}
* @memberof TaskResult
*/
'Name'?: string | null;
/**
* Gets or sets the key.
* @type {string}
* @memberof TaskResult
*/
'Key'?: string | null;
/**
* Gets or sets the id.
* @type {string}
* @memberof TaskResult
*/
'Id'?: string | null;
/**
* Gets or sets the error message.
* @type {string}
* @memberof TaskResult
*/
'ErrorMessage'?: string | null;
/**
* Gets or sets the long error message.
* @type {string}
* @memberof TaskResult
*/
'LongErrorMessage'?: string | null;
}