appcenter-cli
Version:
Command line tool for Visual Studio App Center
70 lines (65 loc) • 1.76 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 DistributionGroupTesterGetResponse.
*/
class DistributionGroupTesterGetResponse {
/**
* Create a DistributionGroupTesterGetResponse.
* @property {string} [displayName] The full name of the tester. Might for
* example be first and last name
* @property {string} name The unique name that is used to identify the
* tester.
* @property {string} email The email address of the tester
*/
constructor() {
}
/**
* Defines the metadata of DistributionGroupTesterGetResponse
*
* @returns {object} metadata of DistributionGroupTesterGetResponse
*
*/
mapper() {
return {
required: false,
serializedName: 'DistributionGroupTesterGetResponse',
type: {
name: 'Composite',
className: 'DistributionGroupTesterGetResponse',
modelProperties: {
displayName: {
required: false,
serializedName: 'display_name',
type: {
name: 'String'
}
},
name: {
required: true,
serializedName: 'name',
type: {
name: 'String'
}
},
email: {
required: true,
serializedName: 'email',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = DistributionGroupTesterGetResponse;