UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

62 lines (57 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'; /** * ReleasePublishErrorResponse * */ class ReleasePublishErrorResponse { /** * Create a ReleasePublishErrorResponse. * @property {string} [message] error Details * @property {boolean} [isLogsAvailable] boolean property to tell if logs are * available for download */ constructor() { } /** * Defines the metadata of ReleasePublishErrorResponse * * @returns {object} metadata of ReleasePublishErrorResponse * */ mapper() { return { required: false, serializedName: 'ReleasePublishErrorResponse', type: { name: 'Composite', className: 'ReleasePublishErrorResponse', modelProperties: { message: { required: false, serializedName: 'message', type: { name: 'String' } }, isLogsAvailable: { required: false, serializedName: 'is_logs_available', type: { name: 'Boolean' } } } } }; } } module.exports = ReleasePublishErrorResponse;