UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

54 lines (49 loc) 1.22 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'; /** * Object returned in response to getting or updating the state of a bugtracker * */ class BugTrackerStateResult { /** * Create a BugTrackerStateResult. * @property {string} [state] bugtracker state. Possible values include: * 'enabled', 'disabled', 'unauthorized' */ constructor() { } /** * Defines the metadata of BugTrackerStateResult * * @returns {object} metadata of BugTrackerStateResult * */ mapper() { return { required: false, serializedName: 'BugTrackerStateResult', type: { name: 'Composite', className: 'BugTrackerStateResult', modelProperties: { state: { required: false, serializedName: 'state', type: { name: 'String' } } } } }; } } module.exports = BugTrackerStateResult;