appcenter-cli
Version:
Command line tool for Visual Studio App Center
70 lines (65 loc) • 1.68 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 response containing information pertaining to a symbol status
*
*/
class SymbolStatusResponse {
/**
* Create a SymbolStatusResponse.
* @property {string} symbolId The unique id for this symbol (uuid)
* @property {string} appId The application that this symbol belongs to
* @property {string} status Whether the symbol is ignored. Possible values
* include: 'available', 'ignored', 'missing'
*/
constructor() {
}
/**
* Defines the metadata of SymbolStatusResponse
*
* @returns {object} metadata of SymbolStatusResponse
*
*/
mapper() {
return {
required: false,
serializedName: 'SymbolStatusResponse',
type: {
name: 'Composite',
className: 'SymbolStatusResponse',
modelProperties: {
symbolId: {
required: true,
serializedName: 'symbol_id',
type: {
name: 'String'
}
},
appId: {
required: true,
serializedName: 'app_id',
type: {
name: 'String'
}
},
status: {
required: true,
serializedName: 'status',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = SymbolStatusResponse;