UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

54 lines (49 loc) 1.22 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 response from the release creation API that just contains the created * release's distinct id. * */ class ReleaseCreateResponse { /** * Create a ReleaseCreateResponse. * @property {number} releaseDistinctId The distinct ID of the release. */ constructor() { } /** * Defines the metadata of ReleaseCreateResponse * * @returns {object} metadata of ReleaseCreateResponse * */ mapper() { return { required: false, serializedName: 'ReleaseCreateResponse', type: { name: 'Composite', className: 'ReleaseCreateResponse', modelProperties: { releaseDistinctId: { required: true, serializedName: 'release_distinct_id', type: { name: 'Number' } } } } }; } } module.exports = ReleaseCreateResponse;