UNPKG

appcenter-cli

Version:

Command line tool for Visual Studio App Center

68 lines (63 loc) 1.49 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 LogTraceDefinition. */ class LogTraceDefinition { /** * Create a LogTraceDefinition. * @property {string} appSecret * @property {string} [installId] * @property {date} [expiration] */ constructor() { } /** * Defines the metadata of LogTraceDefinition * * @returns {object} metadata of LogTraceDefinition * */ mapper() { return { required: false, serializedName: 'LogTraceDefinition', type: { name: 'Composite', className: 'LogTraceDefinition', modelProperties: { appSecret: { required: true, serializedName: 'app_secret', type: { name: 'String' } }, installId: { required: false, serializedName: 'install_id', type: { name: 'String' } }, expiration: { required: false, serializedName: 'expiration', type: { name: 'DateTime' } } } } }; } } module.exports = LogTraceDefinition;