Show / Hide Table of Contents

Class ApiValidationDetails

Detail of an error or warning.

Inheritance
object
ApiValidationDetails
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 ApiValidationDetails

Properties

Details

Declaration
[JsonProperty(PropertyName = "details")]
public List<ApiValidationDetail> Details { get; set; }
Property Value
Type Description
List<ApiValidationDetail>

Details of validation.

Name

Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type Description
string

Name of the validation.

Remarks

Required

Result

Declaration
[Required(ErrorMessage = "Result is required.")]
[JsonProperty(PropertyName = "result")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ApiValidationDetails.ResultEnum? Result { get; set; }
Property Value
Type Description
ApiValidationDetails.ResultEnum?

Result of the validation.

Remarks

Required

In this article
Back to top