UNPKG

@aiozstream/nodejs-client

Version:
34 lines (33 loc) 860 B
/** * @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'; import PlaylistItem from './PlaylistItem.js'; export default class Playlist { 'createdAt'?: string; 'duration'?: number; 'id'?: string; 'iframe'?: string; 'itemCount'?: number; 'metadata'?: { [key: string]: string; }; 'name'?: string; 'playlistUrl'?: string; 'size'?: number; 'tags'?: string; 'thumbnailUrl'?: string; 'updatedAt'?: string; 'userId'?: string; 'videoItems'?: Array<PlaylistItem>; static readonly discriminator?: string; static readonly attributeTypeMap: Array<AttributeType>; static getAttributeTypeMap(): Array<AttributeType>; }