UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

70 lines (65 loc) 1.61 kB
/* * 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. */ 'use strict'; /** * Class representing a DeviceFrame. */ class DeviceFrame { /** * Create a DeviceFrame. * @property {object} [grid] * @property {number} [grid.width] * @property {number} [grid.height] * @property {string} [grid.frameUrl] * @property {array} [grid.screen] * @property {object} [full] * @property {number} [full.width] * @property {number} [full.height] * @property {string} [full.frameUrl] * @property {array} [full.screen] */ constructor() { } /** * Defines the metadata of DeviceFrame * * @returns {object} metadata of DeviceFrame * */ mapper() { return { required: false, serializedName: 'DeviceFrame', type: { name: 'Composite', className: 'DeviceFrame', modelProperties: { grid: { required: false, serializedName: 'grid', type: { name: 'Composite', className: 'DeviceFrameDefinition' } }, full: { required: false, serializedName: 'full', type: { name: 'Composite', className: 'DeviceFrameDefinition' } } } } }; } } module.exports = DeviceFrame;