UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

63 lines (58 loc) 1.5 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'; /** * URL that can be used to check the status of the update devices operation and * the updated profiles. * */ class UpdateResignStatusResponse { /** * Create a UpdateResignStatusResponse. * @property {string} status The status. * @property {string} [profilesZipBase64] A zip of the updated provisioning * profiles. Base64 encoded. */ constructor() { } /** * Defines the metadata of UpdateResignStatusResponse * * @returns {object} metadata of UpdateResignStatusResponse * */ mapper() { return { required: false, serializedName: 'UpdateResignStatusResponse', type: { name: 'Composite', className: 'UpdateResignStatusResponse', modelProperties: { status: { required: true, serializedName: 'status', type: { name: 'String' } }, profilesZipBase64: { required: false, serializedName: 'profiles_zip_base64', type: { name: 'String' } } } } }; } } module.exports = UpdateResignStatusResponse;