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 ErrorGroupOperatingSystem.
*/
class ErrorGroupOperatingSystem {
/**
* Create a ErrorGroupOperatingSystem.
* @property {string} [operatingSystemName] OS name
* @property {number} [errorCount] count of OS
*/
constructor() {
}
/**
* Defines the metadata of ErrorGroupOperatingSystem
*
* @returns {object} metadata of ErrorGroupOperatingSystem
*
*/
mapper() {
return {
required: false,
serializedName: 'ErrorGroupOperatingSystem',
type: {
name: 'Composite',
className: 'ErrorGroupOperatingSystem',
modelProperties: {
operatingSystemName: {
required: false,
serializedName: 'operatingSystemName',
type: {
name: 'String'
}
},
errorCount: {
required: false,
serializedName: 'errorCount',
type: {
name: 'Number'
}
}
}
}
};
}
}
module.exports = ErrorGroupOperatingSystem;