appcenter-cli
Version:
Command line tool for Visual Studio App Center
56 lines (50 loc) • 1.21 kB
JavaScript
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is
* regenerated.
*/
;
const models = require('./index');
/**
* Object returned in response to accepting an event occurance
*
* @extends models['AlertOperationResult']
*/
class EventResponseResult extends models['AlertOperationResult'] {
/**
* Create a EventResponseResult.
*/
constructor() {
super();
}
/**
* Defines the metadata of EventResponseResult
*
* @returns {object} metadata of EventResponseResult
*
*/
mapper() {
return {
required: false,
serializedName: 'EventResponseResult',
type: {
name: 'Composite',
className: 'EventResponseResult',
modelProperties: {
requestId: {
required: true,
serializedName: 'request_id',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = EventResponseResult;