appcenter-cli
Version:
Command line tool for Visual Studio App Center
55 lines (50 loc) • 1.24 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.
*/
;
/**
* A request containing information pertaining to completing a symbol upload
* process
*
*/
class SymbolUploadEndRequest {
/**
* Create a SymbolUploadEndRequest.
* @property {string} status The desired operation for the symbol upload.
* Possible values include: 'committed', 'aborted'
*/
constructor() {
}
/**
* Defines the metadata of SymbolUploadEndRequest
*
* @returns {object} metadata of SymbolUploadEndRequest
*
*/
mapper() {
return {
required: false,
serializedName: 'SymbolUploadEndRequest',
type: {
name: 'Composite',
className: 'SymbolUploadEndRequest',
modelProperties: {
status: {
required: true,
serializedName: 'status',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = SymbolUploadEndRequest;