UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

76 lines (71 loc) 1.87 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 StepReportDeviceScreenshotsItemScreenshotUrls. */ class StepReportDeviceScreenshotsItemScreenshotUrls { /** * Create a StepReportDeviceScreenshotsItemScreenshotUrls. * @property {string} original * @property {string} small * @property {string} medium * @property {string} large */ constructor() { } /** * Defines the metadata of StepReportDeviceScreenshotsItemScreenshotUrls * * @returns {object} metadata of StepReportDeviceScreenshotsItemScreenshotUrls * */ mapper() { return { required: false, serializedName: 'StepReport_deviceScreenshotsItem_screenshot_urls', type: { name: 'Composite', className: 'StepReportDeviceScreenshotsItemScreenshotUrls', modelProperties: { original: { required: true, serializedName: 'original', type: { name: 'String' } }, small: { required: true, serializedName: 'small', type: { name: 'String' } }, medium: { required: true, serializedName: 'medium', type: { name: 'String' } }, large: { required: true, serializedName: 'large', type: { name: 'String' } } } } }; } } module.exports = StepReportDeviceScreenshotsItemScreenshotUrls;