UNPKG

@aiozstream/nodejs-client

Version:
42 lines (41 loc) 898 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'; export default class UpdateVideoInfoRequest { /** * Description of the media */ 'description'?: string; /** * Media's publish status */ 'isPublic'?: boolean; /** * Media's metadata */ 'metadata'?: Array<Metadata>; /** * Media player 's id */ 'playerId'?: string; /** * Media's tags */ 'tags'?: Array<string>; /** * Title of the media */ 'title'?: string; static readonly discriminator?: string; static readonly attributeTypeMap: Array<AttributeType>; static getAttributeTypeMap(): Array<AttributeType>; }