@jellyfin/sdk
Version:
A TypeScript SDK for Jellyfin.
66 lines (65 loc) • 1.81 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/.
*/
/**
* Stores the state of an quick connect request.
* @export
* @interface QuickConnectResult
*/
export interface QuickConnectResult {
/**
* Gets or sets a value indicating whether this request is authorized.
* @type {boolean}
* @memberof QuickConnectResult
*/
'Authenticated'?: boolean;
/**
* Gets the secret value used to uniquely identify this request. Can be used to retrieve authentication information.
* @type {string}
* @memberof QuickConnectResult
*/
'Secret'?: string;
/**
* Gets the user facing code used so the user can quickly differentiate this request from others.
* @type {string}
* @memberof QuickConnectResult
*/
'Code'?: string;
/**
* Gets the requesting device id.
* @type {string}
* @memberof QuickConnectResult
*/
'DeviceId'?: string;
/**
* Gets the requesting device name.
* @type {string}
* @memberof QuickConnectResult
*/
'DeviceName'?: string;
/**
* Gets the requesting app name.
* @type {string}
* @memberof QuickConnectResult
*/
'AppName'?: string;
/**
* Gets the requesting app version.
* @type {string}
* @memberof QuickConnectResult
*/
'AppVersion'?: string;
/**
* Gets or sets the DateTime that this request was created.
* @type {string}
* @memberof QuickConnectResult
*/
'DateAdded'?: string;
}