appcenter-cli
Version:
Command line tool for Visual Studio App Center
64 lines (59 loc) • 1.6 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.
*/
;
/**
* Class representing a DistributionGroupAppsDeleteRequest.
*/
class DistributionGroupAppsDeleteRequest {
/**
* Create a DistributionGroupAppsDeleteRequest.
* @property {array} [apps] The list of apps to delete from the distribution
* group
*/
constructor() {
}
/**
* Defines the metadata of DistributionGroupAppsDeleteRequest
*
* @returns {object} metadata of DistributionGroupAppsDeleteRequest
*
*/
mapper() {
return {
required: false,
serializedName: 'DistributionGroupAppsDeleteRequest',
type: {
name: 'Composite',
className: 'DistributionGroupAppsDeleteRequest',
modelProperties: {
apps: {
required: false,
serializedName: 'apps',
constraints: {
MinItems: 1
},
type: {
name: 'Sequence',
element: {
required: false,
serializedName: 'AppDeleteRequestElementType',
type: {
name: 'Composite',
className: 'AppDeleteRequest'
}
}
}
}
}
}
};
}
}
module.exports = DistributionGroupAppsDeleteRequest;