UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

69 lines (64 loc) 1.64 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'; /** * Event property value counts during the time range in descending order * */ class EventPropertyValues { /** * Create a EventPropertyValues. * @property {number} [total] The total property value counts * @property {array} [values] The event property values */ constructor() { } /** * Defines the metadata of EventPropertyValues * * @returns {object} metadata of EventPropertyValues * */ mapper() { return { required: false, serializedName: 'EventPropertyValues', type: { name: 'Composite', className: 'EventPropertyValues', modelProperties: { total: { required: false, serializedName: 'total', type: { name: 'Number' } }, values: { required: false, serializedName: 'values', type: { name: 'Sequence', element: { required: false, serializedName: 'EventPropertyValueElementType', type: { name: 'Composite', className: 'EventPropertyValue' } } } } } } }; } } module.exports = EventPropertyValues;