UNPKG

@aiozstream/nodejs-client

Version:
81 lines (75 loc) 1.45 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 VideoWatermark { 'bottom'?: string; 'height'?: string; 'id'?: string; 'left'?: string; 'opacity'?: string; 'right'?: string; 'top'?: string; 'width'?: string; static readonly discriminator?: string = undefined; static readonly attributeTypeMap: Array<AttributeType> = [ { name: 'bottom', baseName: 'bottom', type: 'string', format: '', }, { name: 'height', baseName: 'height', type: 'string', format: '', }, { name: 'id', baseName: 'id', type: 'string', format: '', }, { name: 'left', baseName: 'left', type: 'string', format: '', }, { name: 'opacity', baseName: 'opacity', type: 'string', format: '', }, { name: 'right', baseName: 'right', type: 'string', format: '', }, { name: 'top', baseName: 'top', type: 'string', format: '', }, { name: 'width', baseName: 'width', type: 'string', format: '', }, ]; static getAttributeTypeMap(): Array<AttributeType> { return VideoWatermark.attributeTypeMap; } }