Class Psd2Request
Represents a PSD2-compliant verification request for Strong Customer Authentication (SCA), displaying the payment recipient and amount to the user.
public class Psd2Request : VerifyRequestBase
- Inheritance
-
Psd2Request
- Inherited Members
Properties
Amount
The payment amount to be confirmed, in Euros. Displayed to the user in the verification message.
[JsonProperty("amount")]
public double? Amount { get; set; }
Property Value
Payee
The name of the payment recipient displayed to the user in the verification message (e.g., "Acme Corp").
[JsonProperty("payee")]
public string Payee { get; set; }
Property Value
WorkflowId
The delivery workflow that defines the sequence of SMS and voice calls used to deliver the verification code. Defaults to SMS_TTS_TTS if not specified.
[JsonProperty("workflow_id")]
public Psd2Request.Workflow? WorkflowId { get; set; }