appcenter-cli
Version:
Command line tool for Visual Studio App Center
59 lines (54 loc) • 1.34 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.
*/
;
/**
* Generic notification configuration result.
*
*/
class NotificationConfigResult {
/**
* Create a NotificationConfigResult.
* @property {string} type Polymorphic Discriminator
*/
constructor() {
}
/**
* Defines the metadata of NotificationConfigResult
*
* @returns {object} metadata of NotificationConfigResult
*
*/
mapper() {
return {
required: false,
serializedName: 'NotificationConfigResult',
type: {
name: 'Composite',
polymorphicDiscriminator: {
serializedName: 'type',
clientName: 'type'
},
uberParent: 'NotificationConfigResult',
className: 'NotificationConfigResult',
modelProperties: {
type: {
required: true,
serializedName: 'type',
isPolymorphicDiscriminator: true,
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = NotificationConfigResult;