UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

63 lines (58 loc) 1.43 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'; /** * Export status * */ class ExportStatusResult { /** * Create a ExportStatusResult. * @property {string} exportId The unique export identifier. * @property {string} status Status of the export. Possible values include: * 'InProgress', 'Completed', 'Failed' */ constructor() { } /** * Defines the metadata of ExportStatusResult * * @returns {object} metadata of ExportStatusResult * */ mapper() { return { required: false, serializedName: 'ExportStatusResult', type: { name: 'Composite', className: 'ExportStatusResult', modelProperties: { exportId: { required: true, serializedName: 'export_id', type: { name: 'String' } }, status: { required: true, serializedName: 'status', type: { name: 'Enum', allowedValues: [ 'InProgress', 'Completed', 'Failed' ] } } } } }; } } module.exports = ExportStatusResult;