appcenter-cli
Version:
Command line tool for Visual Studio App Center
61 lines (56 loc) • 1.37 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.
*/
;
/**
* Alerting Email Settings
*
*/
class AlertEmailSettings {
/**
* Create a AlertEmailSettings.
* @property {array} settings The settings the user has for the app
*/
constructor() {
}
/**
* Defines the metadata of AlertEmailSettings
*
* @returns {object} metadata of AlertEmailSettings
*
*/
mapper() {
return {
required: false,
serializedName: 'AlertEmailSettings',
type: {
name: 'Composite',
className: 'AlertEmailSettings',
modelProperties: {
settings: {
required: true,
serializedName: 'settings',
type: {
name: 'Sequence',
element: {
required: false,
serializedName: 'EventSettingElementType',
type: {
name: 'Composite',
className: 'EventSetting'
}
}
}
}
}
}
};
}
}
module.exports = AlertEmailSettings;