< Summary

Class:Microsoft.Azure.EventGrid.Models.DeviceTwinProperties
Assembly:Microsoft.Azure.EventGrid
File(s):C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\DeviceTwinProperties.cs
Covered lines:2
Uncovered lines:6
Coverable lines:8
Total lines:61
Line coverage:25% (2 of 8)
Covered branches:0
Total branches:0

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\eventgrid\Microsoft.Azure.EventGrid\src\Generated\Models\DeviceTwinProperties.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.EventGrid.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Linq;
 15
 16    /// <summary>
 17    /// A portion of the properties that can be written only by the application
 18    /// back-end, and read by the device.
 19    /// </summary>
 20    public partial class DeviceTwinProperties
 21    {
 22        /// <summary>
 23        /// Initializes a new instance of the DeviceTwinProperties class.
 24        /// </summary>
 425        public DeviceTwinProperties()
 26        {
 27            CustomInit();
 428        }
 29
 30        /// <summary>
 31        /// Initializes a new instance of the DeviceTwinProperties class.
 32        /// </summary>
 33        /// <param name="metadata">Metadata information for the properties JSON
 34        /// document.</param>
 35        /// <param name="version">Version of device twin properties.</param>
 036        public DeviceTwinProperties(DeviceTwinMetadata metadata = default(DeviceTwinMetadata), double? version = default
 37        {
 038            Metadata = metadata;
 039            Version = version;
 40            CustomInit();
 041        }
 42
 43        /// <summary>
 44        /// An initialization method that performs custom operations like setting defaults
 45        /// </summary>
 46        partial void CustomInit();
 47
 48        /// <summary>
 49        /// Gets or sets metadata information for the properties JSON document.
 50        /// </summary>
 51        [JsonProperty(PropertyName = "metadata")]
 052        public DeviceTwinMetadata Metadata { get; set; }
 53
 54        /// <summary>
 55        /// Gets or sets version of device twin properties.
 56        /// </summary>
 57        [JsonProperty(PropertyName = "version")]
 058        public double? Version { get; set; }
 59
 60    }
 61}