Show / Hide Table of Contents

Class ApiValidationDetail

Detail of a single error or warning.

Inheritance
object
ApiValidationDetail
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ApigatewayService.Models
Assembly: OCI.DotNetSDK.Apigateway.dll
Syntax
public class ApiValidationDetail

Properties

Msg

Declaration
[JsonProperty(PropertyName = "msg")]
public string Msg { get; set; }
Property Value
Type Description
string

Description of the warning/error.

Severity

Declaration
[JsonProperty(PropertyName = "severity")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ApiValidationDetail.SeverityEnum? Severity { get; set; }
Property Value
Type Description
ApiValidationDetail.SeverityEnum?

Severity of the issue.

Src

Declaration
[JsonProperty(PropertyName = "src")]
public List<List<decimal>> Src { get; set; }
Property Value
Type Description
List<List<decimal>>

Position of the issue in the specification file (line, column).

In this article
Back to top