UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

69 lines (64 loc) 1.46 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'; /** * Places and count during the time range in descending order * */ class Places { /** * Create a Places. * @property {number} [total] * @property {array} [places] */ constructor() { } /** * Defines the metadata of Places * * @returns {object} metadata of Places * */ mapper() { return { required: false, serializedName: 'Places', type: { name: 'Composite', className: 'Places', modelProperties: { total: { required: false, serializedName: 'total', type: { name: 'Number' } }, places: { required: false, serializedName: 'places', type: { name: 'Sequence', element: { required: false, serializedName: 'PlaceElementType', type: { name: 'Composite', className: 'Place' } } } } } } }; } } module.exports = Places;