< Summary

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

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.ContentModerator\src\Generated\Models\APIError.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    /// Error information returned by the API
 14    /// </summary>
 15    public partial class APIError
 16    {
 17        /// <summary>
 18        /// Initializes a new instance of the APIError class.
 19        /// </summary>
 020        public APIError()
 21        {
 22            CustomInit();
 023        }
 24
 25        /// <summary>
 26        /// Initializes a new instance of the APIError class.
 27        /// </summary>
 028        public APIError(Error error = default(Error))
 29        {
 030            Error = error;
 31            CustomInit();
 032        }
 33
 34        /// <summary>
 35        /// An initialization method that performs custom operations like setting defaults
 36        /// </summary>
 37        partial void CustomInit();
 38
 39        /// <summary>
 40        /// </summary>
 41        [JsonProperty(PropertyName = "Error")]
 042        public Error Error { get; set; }
 43
 44    }
 45}

Methods/Properties

.ctor()
.ctor(...)
get_Error()