UNPKG

@aiozstream/nodejs-client

Version:
28 lines (27 loc) 819 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 Metadata from './Metadata.js'; import QualityConfig from './QualityConfig.js'; import VideoWatermark from './VideoWatermark.js'; export default class CreateMediaRequest { 'description'?: string; 'isPublic'?: boolean; 'metadata'?: Array<Metadata>; 'qualities'?: Array<QualityConfig>; 'segmentDuration'?: number; 'tags'?: Array<string>; 'title'?: string; 'watermark'?: VideoWatermark; static readonly discriminator?: string; static readonly attributeTypeMap: Array<AttributeType>; static getAttributeTypeMap(): Array<AttributeType>; }