UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

62 lines (57 loc) 1.31 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'; /** * Destination details for distributing build releases * */ class DestinationDetails { /** * Create a DestinationDetails. * @property {string} id * @property {string} type Possible values include: 'store', 'group', * 'tester' */ constructor() { } /** * Defines the metadata of DestinationDetails * * @returns {object} metadata of DestinationDetails * */ mapper() { return { required: false, serializedName: 'DestinationDetails', type: { name: 'Composite', className: 'DestinationDetails', modelProperties: { id: { required: true, serializedName: 'id', type: { name: 'String' } }, type: { required: true, serializedName: 'type', type: { name: 'String' } } } } }; } } module.exports = DestinationDetails;