UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

68 lines (63 loc) 1.61 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 AnalyticsReleasesParameter. */ class AnalyticsReleasesParameter { /** * Create a AnalyticsReleasesParameter. * @property {number} releaseId release id * @property {string} distributionGroupId distribution group id * @property {uuid} userId user id */ constructor() { } /** * Defines the metadata of AnalyticsReleasesParameter * * @returns {object} metadata of AnalyticsReleasesParameter * */ mapper() { return { required: false, serializedName: 'AnalyticsReleasesParameter', type: { name: 'Composite', className: 'AnalyticsReleasesParameter', modelProperties: { releaseId: { required: true, serializedName: 'release_id', type: { name: 'Number' } }, distributionGroupId: { required: true, serializedName: 'distribution_group_id', type: { name: 'String' } }, userId: { required: true, serializedName: 'user_id', type: { name: 'String' } } } } }; } } module.exports = AnalyticsReleasesParameter;