@aiozstream/nodejs-client
Version:
AIOZ stream nodejs API client
40 lines (34 loc) • 819 B
text/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';
import Playlist from './Playlist.js';
export default class GetPlaylistListData {
'playlists'?: Array<Playlist>;
'total'?: number;
static readonly discriminator?: string = undefined;
static readonly attributeTypeMap: Array<AttributeType> = [
{
name: 'playlists',
baseName: 'playlists',
type: 'Array<Playlist>',
format: '',
},
{
name: 'total',
baseName: 'total',
type: 'number',
format: '',
},
];
static getAttributeTypeMap(): Array<AttributeType> {
return GetPlaylistListData.attributeTypeMap;
}
}