appcenter-cli
Version:
Command line tool for Visual Studio App Center
76 lines (71 loc) • 1.71 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 TestGDPRFileSetFile.
*/
class TestGDPRFileSetFile {
/**
* Create a TestGDPRFileSetFile.
* @property {string} [path]
* @property {uuid} [hashFileId]
* @property {uuid} [appUploadId]
* @property {string} [hashFileUrl]
*/
constructor() {
}
/**
* Defines the metadata of TestGDPRFileSetFile
*
* @returns {object} metadata of TestGDPRFileSetFile
*
*/
mapper() {
return {
required: false,
serializedName: 'TestGDPRFileSetFile',
type: {
name: 'Composite',
className: 'TestGDPRFileSetFile',
modelProperties: {
path: {
required: false,
serializedName: 'path',
type: {
name: 'String'
}
},
hashFileId: {
required: false,
serializedName: 'hash_file_id',
type: {
name: 'String'
}
},
appUploadId: {
required: false,
serializedName: 'app_upload_id',
type: {
name: 'String'
}
},
hashFileUrl: {
required: false,
serializedName: 'hash_file_url',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = TestGDPRFileSetFile;