appcenter-cli
Version:
Command line tool for Visual Studio App Center
61 lines (56 loc) • 1.32 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 BuildParams.
*/
class BuildParams {
/**
* Create a BuildParams.
* @property {string} [sourceVersion] Version to build which represents the
* full Git commit reference
* @property {boolean} [debug] Run build in debug mode
*/
constructor() {
}
/**
* Defines the metadata of BuildParams
*
* @returns {object} metadata of BuildParams
*
*/
mapper() {
return {
required: false,
serializedName: 'BuildParams',
type: {
name: 'Composite',
className: 'BuildParams',
modelProperties: {
sourceVersion: {
required: false,
serializedName: 'sourceVersion',
type: {
name: 'String'
}
},
debug: {
required: false,
serializedName: 'debug',
type: {
name: 'Boolean'
}
}
}
}
};
}
}
module.exports = BuildParams;