appcenter-cli
Version:
Command line tool for Visual Studio App Center
61 lines (56 loc) • 1.24 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.
*/
;
/**
* Physical device screen dimensions
*
*/
class DeviceScreenSize {
/**
* Create a DeviceScreenSize.
* @property {string} [cm]
* @property {string} [inProperty]
*/
constructor() {
}
/**
* Defines the metadata of DeviceScreenSize
*
* @returns {object} metadata of DeviceScreenSize
*
*/
mapper() {
return {
required: false,
serializedName: 'DeviceScreenSize',
type: {
name: 'Composite',
className: 'DeviceScreenSize',
modelProperties: {
cm: {
required: false,
serializedName: 'cm',
type: {
name: 'String'
}
},
inProperty: {
required: false,
serializedName: 'in',
type: {
name: 'String'
}
}
}
}
};
}
}
module.exports = DeviceScreenSize;