Class CimdValidationResult
- Namespace
- Auth0.ManagementApi
- Assembly
- Auth0.ManagementApi.dll
Validation result for the Client ID Metadata Document
[Serializable]
public record CimdValidationResult : IJsonOnDeserialized, IJsonOnSerializing, IEquatable<CimdValidationResult>
- Inheritance
-
CimdValidationResult
- Implements
- Inherited Members
- Extension Methods
Properties
AdditionalProperties
[JsonIgnore]
public AdditionalProperties AdditionalProperties { get; set; }
Property Value
Valid
Whether the metadata document passed validation
[JsonPropertyName("valid")]
public required bool Valid { get; set; }
Property Value
Violations
Array of validation violation messages (if any)
[JsonPropertyName("violations")]
public IEnumerable<string> Violations { get; set; }
Property Value
Warnings
Array of warning messages (if any)
[JsonPropertyName("warnings")]
public IEnumerable<string> Warnings { get; set; }
Property Value
Methods
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.