UNPKG

@aiozstream/nodejs-client

Version:
60 lines (54 loc) 1.13 kB
/** * @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'; export default class VideoCaption { 'description'?: string; 'isDefault'?: boolean; 'language'?: string; 'status'?: string; 'url'?: string; static readonly discriminator?: string = undefined; static readonly attributeTypeMap: Array<AttributeType> = [ { name: 'description', baseName: 'description', type: 'string', format: '', }, { name: 'isDefault', baseName: 'is_default', type: 'boolean', format: '', }, { name: 'language', baseName: 'language', type: 'string', format: '', }, { name: 'status', baseName: 'status', type: 'string', format: '', }, { name: 'url', baseName: 'url', type: 'string', format: '', }, ]; static getAttributeTypeMap(): Array<AttributeType> { return VideoCaption.attributeTypeMap; } }