UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

71 lines (66 loc) 1.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'; /** * Updates the status of the resign request * */ class UpdateResignStatusRequest { /** * Create a UpdateResignStatusRequest. * @property {string} status The updated status for the resigning request. * @property {string} [errorCode] Error code if an error occured in the * resigning operation. * @property {string} [errorMessage] Error message if an error occured in the * resigning operation. */ constructor() { } /** * Defines the metadata of UpdateResignStatusRequest * * @returns {object} metadata of UpdateResignStatusRequest * */ mapper() { return { required: false, serializedName: 'UpdateResignStatusRequest', type: { name: 'Composite', className: 'UpdateResignStatusRequest', 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 = UpdateResignStatusRequest;