UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

97 lines (92 loc) 2.58 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 AppFeatures. */ class AppFeatures { /** * Create a AppFeatures. * @property {boolean} [crashgroupModifyStatus] App supports modification of * crashgroup status * @property {boolean} [crashgroupModifyAnnotation] App supports modification * of crashgroup annotation * @property {boolean} [search] App supports search API * @property {boolean} [crashgroupAnalyticsCrashfreeusers] App supports the * 'crash free user' metric * @property {boolean} [crashgroupAnalyticsImpactedusers] App supports the * 'impacted users' metric * @property {boolean} [crashDownloadRaw] App supports download of raw * crashes */ constructor() { } /** * Defines the metadata of AppFeatures * * @returns {object} metadata of AppFeatures * */ mapper() { return { required: false, serializedName: 'AppFeatures', type: { name: 'Composite', className: 'AppFeatures', modelProperties: { crashgroupModifyStatus: { required: false, serializedName: 'crashgroup_modify_status', type: { name: 'Boolean' } }, crashgroupModifyAnnotation: { required: false, serializedName: 'crashgroup_modify_annotation', type: { name: 'Boolean' } }, search: { required: false, serializedName: 'search', type: { name: 'Boolean' } }, crashgroupAnalyticsCrashfreeusers: { required: false, serializedName: 'crashgroup_analytics_crashfreeusers', type: { name: 'Boolean' } }, crashgroupAnalyticsImpactedusers: { required: false, serializedName: 'crashgroup_analytics_impactedusers', type: { name: 'Boolean' } }, crashDownloadRaw: { required: false, serializedName: 'crash_download_raw', type: { name: 'Boolean' } } } } }; } } module.exports = AppFeatures;