Table of Contents

Class VerifyCheckResponse

Namespace
Vonage.Verify
Assembly
Vonage.dll

Represents the response from validating a PIN code, indicating whether the code was correct and the cost incurred.

public class VerifyCheckResponse : VerifyResponseBase
Inheritance
VerifyCheckResponse
Inherited Members

Properties

Currency

The three-letter currency code (ISO 4217) for the Price value.

[JsonProperty("currency")]
public string Currency { get; set; }

Property Value

string

EstimatedPriceMessagesSent

The estimated cost in EUR of all messages and calls sent during the verification process. This value may update after the request completes. The total cost is the sum of this field and Price. May not be present depending on your pricing model.

[JsonProperty("estimated_price_messages_sent")]
public string EstimatedPriceMessagesSent { get; set; }

Property Value

string

EventId

The identifier of the specific verification event (SMS or voice call) that delivered the code.

[JsonProperty("event_id")]
public string EventId { get; set; }

Property Value

string

Price

The cost incurred for this verification check, in the currency specified by Currency.

[JsonProperty("price")]
public string Price { get; set; }

Property Value

string

RequestId

The unique identifier of the verification request that was checked.

[JsonProperty("request_id")]
public string RequestId { get; set; }

Property Value

string