jellyfin-discord-bot/server/jellyfin/models/GetPostedPlaybackInfoRequest.ts

185 lines
6.7 KiB
TypeScript
Raw Normal View History

2023-05-04 23:34:53 +02:00
/* tslint:disable */
/* eslint-disable */
/**
* Jellyfin API
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
*
* The version of the OpenAPI document: 10.8.9
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
import { exists, mapValues } from '../runtime';
import type { ClientCapabilitiesDtoDeviceProfile } from './ClientCapabilitiesDtoDeviceProfile';
import {
ClientCapabilitiesDtoDeviceProfileFromJSON,
ClientCapabilitiesDtoDeviceProfileFromJSONTyped,
ClientCapabilitiesDtoDeviceProfileToJSON,
} from './ClientCapabilitiesDtoDeviceProfile';
/**
* Plabyback info dto.
* @export
* @interface GetPostedPlaybackInfoRequest
*/
export interface GetPostedPlaybackInfoRequest {
/**
* Gets or sets the playback userId.
* @type {string}
* @memberof GetPostedPlaybackInfoRequest
*/
userId?: string | null;
/**
* Gets or sets the max streaming bitrate.
* @type {number}
* @memberof GetPostedPlaybackInfoRequest
*/
maxStreamingBitrate?: number | null;
/**
* Gets or sets the start time in ticks.
* @type {number}
* @memberof GetPostedPlaybackInfoRequest
*/
startTimeTicks?: number | null;
/**
* Gets or sets the audio stream index.
* @type {number}
* @memberof GetPostedPlaybackInfoRequest
*/
audioStreamIndex?: number | null;
/**
* Gets or sets the subtitle stream index.
* @type {number}
* @memberof GetPostedPlaybackInfoRequest
*/
subtitleStreamIndex?: number | null;
/**
* Gets or sets the max audio channels.
* @type {number}
* @memberof GetPostedPlaybackInfoRequest
*/
maxAudioChannels?: number | null;
/**
* Gets or sets the media source id.
* @type {string}
* @memberof GetPostedPlaybackInfoRequest
*/
mediaSourceId?: string | null;
/**
* Gets or sets the live stream id.
* @type {string}
* @memberof GetPostedPlaybackInfoRequest
*/
liveStreamId?: string | null;
/**
*
* @type {ClientCapabilitiesDtoDeviceProfile}
* @memberof GetPostedPlaybackInfoRequest
*/
deviceProfile?: ClientCapabilitiesDtoDeviceProfile | null;
/**
* Gets or sets a value indicating whether to enable direct play.
* @type {boolean}
* @memberof GetPostedPlaybackInfoRequest
*/
enableDirectPlay?: boolean | null;
/**
* Gets or sets a value indicating whether to enable direct stream.
* @type {boolean}
* @memberof GetPostedPlaybackInfoRequest
*/
enableDirectStream?: boolean | null;
/**
* Gets or sets a value indicating whether to enable transcoding.
* @type {boolean}
* @memberof GetPostedPlaybackInfoRequest
*/
enableTranscoding?: boolean | null;
/**
* Gets or sets a value indicating whether to enable video stream copy.
* @type {boolean}
* @memberof GetPostedPlaybackInfoRequest
*/
allowVideoStreamCopy?: boolean | null;
/**
* Gets or sets a value indicating whether to allow audio stream copy.
* @type {boolean}
* @memberof GetPostedPlaybackInfoRequest
*/
allowAudioStreamCopy?: boolean | null;
/**
* Gets or sets a value indicating whether to auto open the live stream.
* @type {boolean}
* @memberof GetPostedPlaybackInfoRequest
*/
autoOpenLiveStream?: boolean | null;
}
/**
* Check if a given object implements the GetPostedPlaybackInfoRequest interface.
*/
export function instanceOfGetPostedPlaybackInfoRequest(value: object): boolean {
let isInstance = true;
return isInstance;
}
export function GetPostedPlaybackInfoRequestFromJSON(json: any): GetPostedPlaybackInfoRequest {
return GetPostedPlaybackInfoRequestFromJSONTyped(json, false);
}
export function GetPostedPlaybackInfoRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetPostedPlaybackInfoRequest {
if ((json === undefined) || (json === null)) {
return json;
}
return {
'userId': !exists(json, 'UserId') ? undefined : json['UserId'],
'maxStreamingBitrate': !exists(json, 'MaxStreamingBitrate') ? undefined : json['MaxStreamingBitrate'],
'startTimeTicks': !exists(json, 'StartTimeTicks') ? undefined : json['StartTimeTicks'],
'audioStreamIndex': !exists(json, 'AudioStreamIndex') ? undefined : json['AudioStreamIndex'],
'subtitleStreamIndex': !exists(json, 'SubtitleStreamIndex') ? undefined : json['SubtitleStreamIndex'],
'maxAudioChannels': !exists(json, 'MaxAudioChannels') ? undefined : json['MaxAudioChannels'],
'mediaSourceId': !exists(json, 'MediaSourceId') ? undefined : json['MediaSourceId'],
'liveStreamId': !exists(json, 'LiveStreamId') ? undefined : json['LiveStreamId'],
'deviceProfile': !exists(json, 'DeviceProfile') ? undefined : ClientCapabilitiesDtoDeviceProfileFromJSON(json['DeviceProfile']),
'enableDirectPlay': !exists(json, 'EnableDirectPlay') ? undefined : json['EnableDirectPlay'],
'enableDirectStream': !exists(json, 'EnableDirectStream') ? undefined : json['EnableDirectStream'],
'enableTranscoding': !exists(json, 'EnableTranscoding') ? undefined : json['EnableTranscoding'],
'allowVideoStreamCopy': !exists(json, 'AllowVideoStreamCopy') ? undefined : json['AllowVideoStreamCopy'],
'allowAudioStreamCopy': !exists(json, 'AllowAudioStreamCopy') ? undefined : json['AllowAudioStreamCopy'],
'autoOpenLiveStream': !exists(json, 'AutoOpenLiveStream') ? undefined : json['AutoOpenLiveStream'],
};
}
export function GetPostedPlaybackInfoRequestToJSON(value?: GetPostedPlaybackInfoRequest | null): any {
if (value === undefined) {
return undefined;
}
if (value === null) {
return null;
}
return {
'UserId': value.userId,
'MaxStreamingBitrate': value.maxStreamingBitrate,
'StartTimeTicks': value.startTimeTicks,
'AudioStreamIndex': value.audioStreamIndex,
'SubtitleStreamIndex': value.subtitleStreamIndex,
'MaxAudioChannels': value.maxAudioChannels,
'MediaSourceId': value.mediaSourceId,
'LiveStreamId': value.liveStreamId,
'DeviceProfile': ClientCapabilitiesDtoDeviceProfileToJSON(value.deviceProfile),
'EnableDirectPlay': value.enableDirectPlay,
'EnableDirectStream': value.enableDirectStream,
'EnableTranscoding': value.enableTranscoding,
'AllowVideoStreamCopy': value.allowVideoStreamCopy,
'AllowAudioStreamCopy': value.allowAudioStreamCopy,
'AutoOpenLiveStream': value.autoOpenLiveStream,
};
}