@aiozstream/nodejs-client
Version:
AIOZ stream nodejs API client
74 lines (68 loc) • 1.5 kB
text/typescript
/**
* @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 CreateWebhookRequest {
'encodingFailed'?: boolean;
'encodingFinished'?: boolean;
'encodingStarted'?: boolean;
'fileReceived'?: boolean;
'name'?: string;
'partialFinished'?: boolean;
'url'?: string;
static readonly discriminator?: string = undefined;
static readonly attributeTypeMap: Array<AttributeType> = [
{
name: 'encodingFailed',
baseName: 'encoding_failed',
type: 'boolean',
format: '',
},
{
name: 'encodingFinished',
baseName: 'encoding_finished',
type: 'boolean',
format: '',
},
{
name: 'encodingStarted',
baseName: 'encoding_started',
type: 'boolean',
format: '',
},
{
name: 'fileReceived',
baseName: 'file_received',
type: 'boolean',
format: '',
},
{
name: 'name',
baseName: 'name',
type: 'string',
format: '',
},
{
name: 'partialFinished',
baseName: 'partial_finished',
type: 'boolean',
format: '',
},
{
name: 'url',
baseName: 'url',
type: 'string',
format: '',
},
];
static getAttributeTypeMap(): Array<AttributeType> {
return CreateWebhookRequest.attributeTypeMap;
}
}