@aiozstream/nodejs-client
Version:
AIOZ stream nodejs API client
58 lines (57 loc) • 1.15 kB
JavaScript
/**
* @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.
*/
Object.defineProperty(exports, "__esModule", { value: true });
class AudioConfig {
static getAttributeTypeMap() {
return AudioConfig.attributeTypeMap;
}
}
AudioConfig.discriminator = undefined;
AudioConfig.attributeTypeMap = [
{
name: 'bitrate',
baseName: 'bitrate',
type: 'number',
format: '',
},
{
name: 'channels',
baseName: 'channels',
type: 'string',
format: '',
},
{
name: 'codec',
baseName: 'codec',
type: 'string',
format: '',
},
{
name: 'index',
baseName: 'index',
type: 'number',
format: '',
},
{
name: 'language',
baseName: 'language',
type: 'string',
format: '',
},
{
name: 'sampleRate',
baseName: 'sample_rate',
type: 'number',
format: '',
},
];
exports.default = AudioConfig;
;