You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Automatic redirection information after the payment of the link payment
7
+
/// </summary>
8
+
publicclassPaymentCallbackRequestDto
9
+
{
10
+
/// <summary>
11
+
/// URL that the customer will be redirected to after successful payment of the invoice or payment link
12
+
/// </summary>
13
+
[JsonPropertyName("successUrl")]
14
+
publicstring?SuccessUrl{get;set;}
15
+
16
+
/// <summary>
17
+
/// Define whether the customer will be automatically redirected or will just be informed with a button to return to the website. The default is true, if you want to disable it, enter false
/// Number of installments (only in the case of installment payment)
54
+
/// </summary>
55
+
[JsonPropertyName("installmentCount")]
56
+
publiclong?InstallmentCount{get;set;}
57
+
58
+
/// <summary>
59
+
/// Enter the total amount of a charge that will be paid in installments (only in the case of an installment charge). If this field is sent, the installmentValue is not necessary, the calculation per installment will be automatic.
60
+
/// </summary>
61
+
[JsonPropertyName("totalValue")]
62
+
publicdecimal?TotalValue{get;set;}
63
+
64
+
/// <summary>
65
+
/// Value of each installment (only in the case of installment payment). Send this field if you want to define the value of each installment.
66
+
/// </summary>
67
+
[JsonPropertyName("installmentValue")]
68
+
publicdecimal?InstallmentValue{get;set;}
69
+
70
+
/// <summary>
71
+
/// Discount information
72
+
/// </summary>
73
+
[JsonPropertyName("discount")]
74
+
publicPaymentDiscountDto?Discount{get;set;}
75
+
76
+
/// <summary>
77
+
/// Interest information for payment after due date
/// Number of installments (only in the case of installment payment)
54
+
/// </summary>
55
+
[JsonPropertyName("installmentCount")]
56
+
publiclong?InstallmentCount{get;set;}
57
+
58
+
/// <summary>
59
+
/// Enter the total amount of a charge that will be paid in installments (only in the case of an installment charge). If this field is sent, the installmentValue is not necessary, the calculation per installment will be automatic.
60
+
/// </summary>
61
+
[JsonPropertyName("totalValue")]
62
+
publicdecimal?TotalValue{get;set;}
63
+
64
+
/// <summary>
65
+
/// Value of each installment (only in the case of installment payment). Send this field if you want to define the value of each installment.
66
+
/// </summary>
67
+
[JsonPropertyName("installmentValue")]
68
+
publicdecimal?InstallmentValue{get;set;}
69
+
70
+
/// <summary>
71
+
/// Discount information
72
+
/// </summary>
73
+
[JsonPropertyName("discount")]
74
+
publicPaymentDiscountDto?Discount{get;set;}
75
+
76
+
/// <summary>
77
+
/// Interest information for payment after due date
0 commit comments