UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

68 lines (63 loc) 1.75 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 DistributionGroupAADGroupPostResponse. */ class DistributionGroupAADGroupPostResponse { /** * Create a DistributionGroupAADGroupPostResponse. * @property {uuid} [id] The internal unique id (UUID) of the AAD group. * @property {uuid} [aadGroupId] The AAD unique id (UUID) of the AAD group. * @property {string} [displayName] The display name of the AAD group */ constructor() { } /** * Defines the metadata of DistributionGroupAADGroupPostResponse * * @returns {object} metadata of DistributionGroupAADGroupPostResponse * */ mapper() { return { required: false, serializedName: 'DistributionGroupAADGroupPostResponse', type: { name: 'Composite', className: 'DistributionGroupAADGroupPostResponse', modelProperties: { id: { required: false, serializedName: 'id', type: { name: 'String' } }, aadGroupId: { required: false, serializedName: 'aad_group_id', type: { name: 'String' } }, displayName: { required: false, serializedName: 'display_name', type: { name: 'String' } } } } }; } } module.exports = DistributionGroupAADGroupPostResponse;