1using System.Text.Json.Serialization;
27 [JsonPropertyName(Error_ConstraintFailuresMessageFieldName)]
33 [JsonPropertyName(Error_ConstraintFailuresNameFieldName)]
34 public string Name {
get;
set; }
39 [JsonPropertyName(Error_ConstraintFailuresPathsFieldName)]
40 public object[][]?
Paths {
get;
set; }
A class representing a constraint failure from Fauna.
ConstraintFailure(string message, string name, object[][]? paths)
Initializes a new ConstraintFailure.
string Message
The constraint failure message describing the specific check that failed.
string Name
The constraint failure name.
object?[][] Paths
The constraint failure paths.