appcenter-cli
Version:
Command line tool for Visual Studio App Center
84 lines (79 loc) • 1.88 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 CreateGdprTestData.
*/
class CreateGdprTestData {
/**
* Create a CreateGdprTestData.
* @property {uuid} [appId]
* @property {uuid} [accountId]
* @property {string} [userName]
* @property {string} [userEmail]
* @property {string} [appName]
*/
constructor() {
}
/**
* Defines the metadata of CreateGdprTestData
*
* @returns {object} metadata of CreateGdprTestData
*
*/
mapper() {
return {
required: false,
serializedName: 'CreateGdprTestData',
type: {
name: 'Composite',
className: 'CreateGdprTestData',
modelProperties: {
appId: {
required: false,
serializedName: 'appId',
type: {
name: 'String'
}
},
accountId: {
required: false,
serializedName: 'accountId',
type: {
name: 'String'
}
},
userName: {
required: false,
serializedName: 'userName',
type: {
name: 'String'
}
},
userEmail: {
required: false,
serializedName: 'userEmail',
type: {
name: 'String'
}
},
appName: {
required: false,
serializedName: 'appName',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = CreateGdprTestData;