appcenter-cli
Version:
Command line tool for Visual Studio App Center
76 lines (71 loc) • 1.9 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 DistributionGroupUserDeleteResponse.
*/
class DistributionGroupUserDeleteResponse {
/**
* Create a DistributionGroupUserDeleteResponse.
* @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 {string} [userEmail] The email of the user
*/
constructor() {
}
/**
* Defines the metadata of DistributionGroupUserDeleteResponse
*
* @returns {object} metadata of DistributionGroupUserDeleteResponse
*
*/
mapper() {
return {
required: false,
serializedName: 'DistributionGroupUserDeleteResponse',
type: {
name: 'Composite',
className: 'DistributionGroupUserDeleteResponse',
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'
}
},
userEmail: {
required: false,
serializedName: 'user_email',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = DistributionGroupUserDeleteResponse;