Class ApiValidationDetail
Detail of a single error or warning.
Inherited Members
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). |