Interface ICheckParseAnswer
- Namespace
- CedarDotNet.Models
- Assembly
- CedarDotNet.dll
The marker interface for check parse answer.
[JsonPolymorphic(TypeDiscriminatorPropertyName = "type")]
[JsonDerivedType(typeof(CheckParseSuccess), "success")]
[JsonDerivedType(typeof(CheckParseFailure), "failure")]
public interface ICheckParseAnswer
Properties
Type
The answer type.
[JsonPropertyName("type")]
string Type { get; }