< Summary

Class:Microsoft.Azure.CognitiveServices.ContentModerator.Models.TermsData
Assembly:Microsoft.Azure.CognitiveServices.Vision.ContentModerator
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ContentModerator\src\Generated\Models\TermsData.cs
Covered lines:0
Uncovered lines:12
Coverable lines:12
Total lines:73
Line coverage:0% (0 of 12)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-0%100%
.ctor(...)-0%100%
get_Language()-0%100%
get_Terms()-0%100%
get_Status()-0%100%
get_TrackingId()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ContentModerator\src\Generated\Models\TermsData.cs

#LineLine coverage
 1// <auto-generated>
 2// Code generated by Microsoft (R) AutoRest Code Generator.
 3// Changes may cause incorrect behavior and will be lost if the code is
 4// regenerated.
 5// </auto-generated>
 6
 7namespace Microsoft.Azure.CognitiveServices.ContentModerator.Models
 8{
 9    using Newtonsoft.Json;
 10    using System.Collections;
 11    using System.Collections.Generic;
 12    using System.Linq;
 13
 14    /// <summary>
 15    /// All term Id response properties.
 16    /// </summary>
 17    public partial class TermsData
 18    {
 19        /// <summary>
 20        /// Initializes a new instance of the TermsData class.
 21        /// </summary>
 022        public TermsData()
 23        {
 24            CustomInit();
 025        }
 26
 27        /// <summary>
 28        /// Initializes a new instance of the TermsData class.
 29        /// </summary>
 30        /// <param name="language">Language of the terms.</param>
 31        /// <param name="terms">List of terms.</param>
 32        /// <param name="status">Term Status.</param>
 33        /// <param name="trackingId">Tracking Id.</param>
 034        public TermsData(string language = default(string), IList<TermsInList> terms = default(IList<TermsInList>), Stat
 35        {
 036            Language = language;
 037            Terms = terms;
 038            Status = status;
 039            TrackingId = trackingId;
 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 language of the terms.
 50        /// </summary>
 51        [JsonProperty(PropertyName = "Language")]
 052        public string Language { get; set; }
 53
 54        /// <summary>
 55        /// Gets or sets list of terms.
 56        /// </summary>
 57        [JsonProperty(PropertyName = "Terms")]
 058        public IList<TermsInList> Terms { get; set; }
 59
 60        /// <summary>
 61        /// Gets or sets term Status.
 62        /// </summary>
 63        [JsonProperty(PropertyName = "Status")]
 064        public Status Status { get; set; }
 65
 66        /// <summary>
 67        /// Gets or sets tracking Id.
 68        /// </summary>
 69        [JsonProperty(PropertyName = "TrackingId")]
 070        public string TrackingId { get; set; }
 71
 72    }
 73}