Class VerifyResponseBase
Base class for verification responses, containing common status and error properties.
public abstract class VerifyResponseBase
- Inheritance
-
VerifyResponseBase
- Derived
- Inherited Members
Properties
ErrorText
A human-readable error message explaining why the request failed. Only populated when Status is non-zero.
[JsonProperty("error_text")]
public string ErrorText { get; set; }
Property Value
Status
The status code of the response. A value of "0" indicates success; any other value indicates an error. Check ErrorText for details when non-zero.
[JsonProperty("status")]
public string Status { get; set; }