@aiozstream/nodejs-client
Version:
AIOZ stream nodejs API client
29 lines (28 loc) • 816 B
TypeScript
/**
* @aiozstream/nodejs-client
* Aioz Stream Service
*
* The version of the OpenAPI document: 1.0
*
*
* NOTE: This class is auto generated.
* Do not edit the class manually.
*/
import AttributeType from './AttributeType.js';
export default class MoveVideoInPlaylistRequest {
/**
* CurrentId is the UUID of the playlist item (media) to be moved
*/
'currentId'?: string;
/**
* NextId is the UUID of the playlist item that should come after the moved item
*/
'nextId'?: string;
/**
* PreviousId is the UUID of the playlist item that should come before the moved item
*/
'previousId'?: string;
static readonly discriminator?: string;
static readonly attributeTypeMap: Array<AttributeType>;
static getAttributeTypeMap(): Array<AttributeType>;
}