UNPKG

@jellyfin/sdk

Version:
31 lines (30 loc) 889 B
/** * 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 { SessionMessageType } from './session-message-type'; /** * Sessions start message. Data is the timing data encoded as \"$initialDelay,$interval\" in ms. * @export * @interface SessionsStartMessage */ export interface SessionsStartMessage { /** * Gets or sets the data. * @type {string} * @memberof SessionsStartMessage */ 'Data'?: string | null; /** * * @type {SessionMessageType} * @memberof SessionsStartMessage */ 'MessageType'?: SessionMessageType; }