@aiozstream/nodejs-client
Version:
AIOZ stream nodejs API client
64 lines (63 loc) • 1.29 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 QualityObject {
static getAttributeTypeMap() {
return QualityObject.attributeTypeMap;
}
}
QualityObject.discriminator = undefined;
QualityObject.attributeTypeMap = [
{
name: 'audioBitrate',
baseName: 'audio_bitrate',
type: 'number',
format: '',
},
{
name: 'audioCodec',
baseName: 'audio_codec',
type: 'string',
format: '',
},
{
name: 'name',
baseName: 'name',
type: 'string',
format: '',
},
{
name: 'status',
baseName: 'status',
type: 'string',
format: '',
},
{
name: 'type',
baseName: 'type',
type: 'string',
format: '',
},
{
name: 'videoBitrate',
baseName: 'video_bitrate',
type: 'number',
format: '',
},
{
name: 'videoCodec',
baseName: 'video_codec',
type: 'string',
format: '',
},
];
exports.default = QualityObject;
;