appcenter-cli
Version:
Command line tool for Visual Studio App Center
71 lines (66 loc) • 1.82 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.
*/
;
/**
* grouped by missing symbols crashes response object
*
*/
class V2MissingSymbolCrashGroupsResponse {
/**
* Create a V2MissingSymbolCrashGroupsResponse.
* @property {number} totalCrashCount total number of cashes for all the
* groups
* @property {array} groups list of crash groups formed by missing symbols
* combination
*/
constructor() {
}
/**
* Defines the metadata of V2MissingSymbolCrashGroupsResponse
*
* @returns {object} metadata of V2MissingSymbolCrashGroupsResponse
*
*/
mapper() {
return {
required: false,
serializedName: 'v2MissingSymbolCrashGroupsResponse',
type: {
name: 'Composite',
className: 'V2MissingSymbolCrashGroupsResponse',
modelProperties: {
totalCrashCount: {
required: true,
serializedName: 'total_crash_count',
type: {
name: 'Number'
}
},
groups: {
required: true,
serializedName: 'groups',
type: {
name: 'Sequence',
element: {
required: false,
serializedName: 'V2MissingSymbolCrashGroupElementType',
type: {
name: 'Composite',
className: 'V2MissingSymbolCrashGroup'
}
}
}
}
}
}
};
}
}
module.exports = V2MissingSymbolCrashGroupsResponse;