appcenter-cli
Version:
Command line tool for Visual Studio App Center
69 lines (64 loc) • 1.43 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.
*/
;
/**
* Device screen resolution
*
*/
class DeviceResolution {
/**
* Create a DeviceResolution.
* @property {string} [height]
* @property {string} [width]
* @property {string} [ppi]
*/
constructor() {
}
/**
* Defines the metadata of DeviceResolution
*
* @returns {object} metadata of DeviceResolution
*
*/
mapper() {
return {
required: false,
serializedName: 'DeviceResolution',
type: {
name: 'Composite',
className: 'DeviceResolution',
modelProperties: {
height: {
required: false,
serializedName: 'height',
type: {
name: 'String'
}
},
width: {
required: false,
serializedName: 'width',
type: {
name: 'String'
}
},
ppi: {
required: false,
serializedName: 'ppi',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = DeviceResolution;