UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

79 lines (74 loc) 2.08 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'; /** * Class representing a DistributionStoreWithoutIsLatest. */ class DistributionStoreWithoutIsLatest { /** * Create a DistributionStoreWithoutIsLatest. * @property {string} [id] ID identifying a unique distribution store. * @property {string} [name] A name identifying a unique distribution store. * @property {string} [type] type of the distribution store currently stores * type can be intune, googleplay or windows. Possible values include: * 'intune', 'googleplay', 'windows' * @property {string} [publishingStatus] publishing status of the release in * the store. */ constructor() { } /** * Defines the metadata of DistributionStoreWithoutIsLatest * * @returns {object} metadata of DistributionStoreWithoutIsLatest * */ mapper() { return { required: false, serializedName: 'DistributionStoreWithoutIsLatest', type: { name: 'Composite', className: 'DistributionStoreWithoutIsLatest', modelProperties: { id: { required: false, serializedName: 'id', type: { name: 'String' } }, name: { required: false, serializedName: 'name', type: { name: 'String' } }, type: { required: false, serializedName: 'type', type: { name: 'String' } }, publishingStatus: { required: false, serializedName: 'publishing_status', type: { name: 'String' } } } } }; } } module.exports = DistributionStoreWithoutIsLatest;