UNPKG

@aiozstream/nodejs-client

Version:
70 lines (69 loc) 1.39 kB
"use strict"; /** * @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. */ Object.defineProperty(exports, "__esModule", { value: true }); class PlaylistItem { static getAttributeTypeMap() { return PlaylistItem.attributeTypeMap; } } PlaylistItem.discriminator = undefined; PlaylistItem.attributeTypeMap = [ { name: 'createdAt', baseName: 'created_at', type: 'string', format: '', }, { name: 'id', baseName: 'id', type: 'string', format: '', }, { name: 'nextId', baseName: 'next_id', type: 'string', format: '', }, { name: 'playlistId', baseName: 'playlist_id', type: 'string', format: '', }, { name: 'previousId', baseName: 'previous_id', type: 'string', format: '', }, { name: 'updatedAt', baseName: 'updated_at', type: 'string', format: '', }, { name: 'video', baseName: 'video', type: 'PlaylistItemMedia', format: '', }, { name: 'videoId', baseName: 'video_id', type: 'string', format: '', }, ]; exports.default = PlaylistItem;