@aiozstream/nodejs-client
Version:
AIOZ stream nodejs API client
26 lines (25 loc) • 678 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';
import Metadata from './Metadata.js';
export default class GetVideoListRequest {
'limit'?: number;
'metadata'?: Array<Metadata>;
'offset'?: number;
'orderBy'?: string;
'search'?: string;
'sortBy'?: string;
'status'?: string;
'tags'?: Array<string>;
static readonly discriminator?: string;
static readonly attributeTypeMap: Array<AttributeType>;
static getAttributeTypeMap(): Array<AttributeType>;
}