-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Fix threeDSInfo field name - Remove Builder annotation in PaymentThreeDSInfo - Change PaymentFeeRequest type to percentage
- Loading branch information
1 parent
0d410eb
commit f183582
Showing
4 changed files
with
9 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
6 changes: 2 additions & 4 deletions
6
src/main/java/com/mercadopago/resources/payment/PaymentThreeDSInfo.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,13 @@ | ||
package com.mercadopago.resources.payment; | ||
|
||
import lombok.Builder; | ||
import lombok.Getter; | ||
|
||
/** 3DS Info. */ | ||
@Getter | ||
@Builder | ||
public class PaymentThreeDSInfo { | ||
/** External Resource Url. */ | ||
private final String externalResourceUrl; | ||
private String externalResourceUrl; | ||
|
||
/** creq. */ | ||
private final String creq; | ||
private String creq; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters