UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

100 lines (95 loc) 2.72 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 TestReportFeaturesItemTestsItemRunsItemStepsItem. */ class TestReportFeaturesItemTestsItemRunsItemStepsItem { /** * Create a TestReportFeaturesItemTestsItemRunsItemStepsItem. * @property {string} [stepName] * @property {string} [id] * @property {array} [stepExecutions] * @property {number} [failed] * @property {number} [skipped] * @property {string} [stepReportUrl] */ constructor() { } /** * Defines the metadata of TestReportFeaturesItemTestsItemRunsItemStepsItem * * @returns {object} metadata of TestReportFeaturesItemTestsItemRunsItemStepsItem * */ mapper() { return { required: false, serializedName: 'TestReport_featuresItem_testsItem_runsItem_stepsItem', type: { name: 'Composite', className: 'TestReportFeaturesItemTestsItemRunsItemStepsItem', modelProperties: { stepName: { required: false, serializedName: 'stepName', type: { name: 'String' } }, id: { required: false, serializedName: 'id', type: { name: 'String' } }, stepExecutions: { required: false, serializedName: 'stepExecutions', type: { name: 'Sequence', element: { required: false, serializedName: 'TestReportFeaturesItemTestsItemRunsItemStepsItemStepExecutionsItemElementType', type: { name: 'Composite', className: 'TestReportFeaturesItemTestsItemRunsItemStepsItemStepExecutionsItem' } } } }, failed: { required: false, serializedName: 'failed', type: { name: 'Number' } }, skipped: { required: false, serializedName: 'skipped', type: { name: 'Number' } }, stepReportUrl: { required: false, serializedName: 'step_report_url', type: { name: 'String' } } } } }; } } module.exports = TestReportFeaturesItemTestsItemRunsItemStepsItem;