< Summary

Class:Microsoft.Azure.CognitiveServices.Personalizer.Models.LogsProperties
Assembly:Microsoft.Azure.CognitiveServices.Personalizer
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Personalizer\src\Generated\Models\LogsProperties.cs
Covered lines:3
Uncovered lines:3
Coverable lines:6
Total lines:46
Line coverage:50% (3 of 6)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_DateRange()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Personalizer\src\Generated\Models\LogsProperties.cs

#LineLine coverage
 1// <auto-generated>
 2// Copyright (c) Microsoft Corporation. All rights reserved.
 3// Licensed under the MIT License. See License.txt in the project root for
 4// license information.
 5//
 6// Code generated by Microsoft (R) AutoRest Code Generator.
 7// Changes may cause incorrect behavior and will be lost if the code is
 8// regenerated.
 9// </auto-generated>
 10
 11namespace Microsoft.Azure.CognitiveServices.Personalizer.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Linq;
 15
 16    public partial class LogsProperties
 17    {
 18        /// <summary>
 19        /// Initializes a new instance of the LogsProperties class.
 20        /// </summary>
 221        public LogsProperties()
 22        {
 23            CustomInit();
 224        }
 25
 26        /// <summary>
 27        /// Initializes a new instance of the LogsProperties class.
 28        /// </summary>
 029        public LogsProperties(LogsPropertiesDateRange dateRange = default(LogsPropertiesDateRange))
 30        {
 031            DateRange = dateRange;
 32            CustomInit();
 033        }
 34
 35        /// <summary>
 36        /// An initialization method that performs custom operations like setting defaults
 37        /// </summary>
 38        partial void CustomInit();
 39
 40        /// <summary>
 41        /// </summary>
 42        [JsonProperty(PropertyName = "dateRange")]
 1643        public LogsPropertiesDateRange DateRange { get; private set; }
 44
 45    }
 46}

Methods/Properties

.ctor()
.ctor(...)
get_DateRange()