appcenter-cli
Version:
Command line tool for Visual Studio App Center
68 lines (63 loc) • 1.53 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 UWPSolution.
*/
class UWPSolution {
/**
* Create a UWPSolution.
* @property {string} path The path to the UWP solution
* @property {array} configurations The possible configurations detected for
* the UWP solution
*/
constructor() {
}
/**
* Defines the metadata of UWPSolution
*
* @returns {object} metadata of UWPSolution
*
*/
mapper() {
return {
required: false,
serializedName: 'UWPSolution',
type: {
name: 'Composite',
className: 'UWPSolution',
modelProperties: {
path: {
required: true,
serializedName: 'path',
type: {
name: 'String'
}
},
configurations: {
required: true,
serializedName: 'configurations',
type: {
name: 'Sequence',
element: {
required: false,
serializedName: 'StringElementType',
type: {
name: 'String'
}
}
}
}
}
}
};
}
}
module.exports = UWPSolution;