appcenter-cli
Version:
Command line tool for Visual Studio App Center
60 lines (55 loc) • 1.4 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 CrashGroupOperatingSystem.
*/
class CrashGroupOperatingSystem {
/**
* Create a CrashGroupOperatingSystem.
* @property {string} [operatingSystemName] OS name
* @property {number} [crashCount] count of OS
*/
constructor() {
}
/**
* Defines the metadata of CrashGroupOperatingSystem
*
* @returns {object} metadata of CrashGroupOperatingSystem
*
*/
mapper() {
return {
required: false,
serializedName: 'CrashGroupOperatingSystem',
type: {
name: 'Composite',
className: 'CrashGroupOperatingSystem',
modelProperties: {
operatingSystemName: {
required: false,
serializedName: 'operating_system_name',
type: {
name: 'String'
}
},
crashCount: {
required: false,
serializedName: 'crash_count',
type: {
name: 'Number'
}
}
}
}
};
}
}
module.exports = CrashGroupOperatingSystem;