UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

68 lines (63 loc) 1.55 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 CrashingAppDetail. */ class CrashingAppDetail { /** * Create a CrashingAppDetail. * @property {string} [appId] application identifier * @property {string} [appVersion] application version * @property {string} [crashGroupId] crash group identifier */ constructor() { } /** * Defines the metadata of CrashingAppDetail * * @returns {object} metadata of CrashingAppDetail * */ mapper() { return { required: false, serializedName: 'CrashingAppDetail', type: { name: 'Composite', className: 'CrashingAppDetail', modelProperties: { appId: { required: false, serializedName: 'appId', type: { name: 'String' } }, appVersion: { required: false, serializedName: 'appVersion', type: { name: 'String' } }, crashGroupId: { required: false, serializedName: 'crashGroupId', type: { name: 'String' } } } } }; } } module.exports = CrashingAppDetail;