< Summary

Class:Microsoft.Azure.CognitiveServices.ContentModerator.Models.TermsPaging
Assembly:Microsoft.Azure.CognitiveServices.Vision.ContentModerator
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ContentModerator\src\Generated\Models\TermsPaging.cs
Covered lines:0
Uncovered lines:12
Coverable lines:12
Total lines:71
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_Total()-0%100%
get_Limit()-0%100%
get_Offset()-0%100%
get_Returned()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ContentModerator\src\Generated\Models\TermsPaging.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.Linq;
 11
 12    /// <summary>
 13    /// Paging details.
 14    /// </summary>
 15    public partial class TermsPaging
 16    {
 17        /// <summary>
 18        /// Initializes a new instance of the TermsPaging class.
 19        /// </summary>
 020        public TermsPaging()
 21        {
 22            CustomInit();
 023        }
 24
 25        /// <summary>
 26        /// Initializes a new instance of the TermsPaging class.
 27        /// </summary>
 28        /// <param name="total">Total details.</param>
 29        /// <param name="limit">Limit details.</param>
 30        /// <param name="offset">Offset details.</param>
 31        /// <param name="returned">Returned text details.</param>
 032        public TermsPaging(int? total = default(int?), int? limit = default(int?), int? offset = default(int?), int? ret
 33        {
 034            Total = total;
 035            Limit = limit;
 036            Offset = offset;
 037            Returned = returned;
 38            CustomInit();
 039        }
 40
 41        /// <summary>
 42        /// An initialization method that performs custom operations like setting defaults
 43        /// </summary>
 44        partial void CustomInit();
 45
 46        /// <summary>
 47        /// Gets or sets total details.
 48        /// </summary>
 49        [JsonProperty(PropertyName = "Total")]
 050        public int? Total { get; set; }
 51
 52        /// <summary>
 53        /// Gets or sets limit details.
 54        /// </summary>
 55        [JsonProperty(PropertyName = "Limit")]
 056        public int? Limit { get; set; }
 57
 58        /// <summary>
 59        /// Gets or sets offset details.
 60        /// </summary>
 61        [JsonProperty(PropertyName = "Offset")]
 062        public int? Offset { get; set; }
 63
 64        /// <summary>
 65        /// Gets or sets returned text details.
 66        /// </summary>
 67        [JsonProperty(PropertyName = "Returned")]
 068        public int? Returned { get; set; }
 69
 70    }
 71}