UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

63 lines (58 loc) 1.5 kB
/* * 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. */ 'use strict'; /** * Class representing a NotifyReleasesContainer. */ class NotifyReleasesContainer { /** * Create a NotifyReleasesContainer. * @property {array} releases */ constructor() { } /** * Defines the metadata of NotifyReleasesContainer * * @returns {object} metadata of NotifyReleasesContainer * */ mapper() { return { required: false, serializedName: 'NotifyReleasesContainer', type: { name: 'Composite', className: 'NotifyReleasesContainer', modelProperties: { releases: { required: true, serializedName: 'releases', constraints: { MinItems: 1 }, type: { name: 'Sequence', element: { required: false, serializedName: 'ReleaseWithDistributionGroupAndUserIdElementType', type: { name: 'Composite', className: 'ReleaseWithDistributionGroupAndUserId' } } } } } } }; } } module.exports = NotifyReleasesContainer;