UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

62 lines (57 loc) 1.59 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 InternalHockeyAppCutoverStatusResponse. */ class InternalHockeyAppCutoverStatusResponse { /** * Create a InternalHockeyAppCutoverStatusResponse. * @property {string} id The ID of the app * @property {string} [status] Does the HockeyApp app have crashes from * within the last 90 days?. Possible values include: 'not_requested', * 'requested', 'in_progress', 'completed' */ constructor() { } /** * Defines the metadata of InternalHockeyAppCutoverStatusResponse * * @returns {object} metadata of InternalHockeyAppCutoverStatusResponse * */ mapper() { return { required: false, serializedName: 'InternalHockeyAppCutoverStatusResponse', type: { name: 'Composite', className: 'InternalHockeyAppCutoverStatusResponse', modelProperties: { id: { required: true, serializedName: 'id', type: { name: 'String' } }, status: { required: false, serializedName: 'status', type: { name: 'String' } } } } }; } } module.exports = InternalHockeyAppCutoverStatusResponse;