UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

71 lines (66 loc) 1.62 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'; /** * The status of the resign operation. * */ class ResignStatus { /** * Create a ResignStatus. * @property {string} status The status of the resign * @property {string} [errorCode] Error code for any error that occured * during the resigning operation. * @property {string} [errorMessage] Error message for any error that occured * during the resigning operation. */ constructor() { } /** * Defines the metadata of ResignStatus * * @returns {object} metadata of ResignStatus * */ mapper() { return { required: false, serializedName: 'ResignStatus', type: { name: 'Composite', className: 'ResignStatus', modelProperties: { status: { required: true, serializedName: 'status', type: { name: 'String' } }, errorCode: { required: false, serializedName: 'error_code', type: { name: 'String' } }, errorMessage: { required: false, serializedName: 'error_message', type: { name: 'String' } } } } }; } } module.exports = ResignStatus;