UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

76 lines (71 loc) 1.95 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 DistributionGroupAadGroupsDeleteResponse. */ class DistributionGroupAadGroupsDeleteResponse { /** * Create a DistributionGroupAadGroupsDeleteResponse. * @property {string} [code] The code of the result * @property {number} [message] The message of the result * @property {number} status The status code of the result * @property {uuid} [aadGroupId] The aad id of the group */ constructor() { } /** * Defines the metadata of DistributionGroupAadGroupsDeleteResponse * * @returns {object} metadata of DistributionGroupAadGroupsDeleteResponse * */ mapper() { return { required: false, serializedName: 'DistributionGroupAadGroupsDeleteResponse', type: { name: 'Composite', className: 'DistributionGroupAadGroupsDeleteResponse', modelProperties: { code: { required: false, serializedName: 'code', type: { name: 'String' } }, message: { required: false, serializedName: 'message', type: { name: 'Number' } }, status: { required: true, serializedName: 'status', type: { name: 'Number' } }, aadGroupId: { required: false, serializedName: 'aad_group_id', type: { name: 'String' } } } } }; } } module.exports = DistributionGroupAadGroupsDeleteResponse;