Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group=com.checkout
version=6.10.0
version=6.10.1

project_name=Checkout SDK Java
project_description=Checkout SDK for Java https://checkout.com
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ public final class EpsSource extends AbstractSource {
/**
* Purpose of the payment as appearing on customer's bank statement.
* [Optional]
* <= 27
* &lt; 27
*/
private String purpose;

/**
* Bank Identifier Code (BIC). It can be exactly 8 characters or 11 characters long.
* [Optional]
* <= 11
* &lt; 11
* 8 characters
* 11 characters
*/
Expand All @@ -40,7 +40,7 @@ public final class EpsSource extends AbstractSource {
/**
* International Bank Account Number (IBAN) without whitespaces.
* [Optional]
* <= 34
* &lt; 34
*/
private String iban;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public final class UnreferencedRefundRequest {
/**
* The amount of the payment
* [Required]
* >= 1
* &gt; 1
*/
private Integer amount;

Expand Down Expand Up @@ -84,6 +84,7 @@ public final class UnreferencedRefundRequest {
* non-primitive data types such as objects or arrays.
* [Optional]
*/
@Builder.Default
private Map<String, Object> metadata = new HashMap<>();

/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ public final class BillingAddress {
/**
* The first line of the address.
* [Optional]
* <= 200
* &lt; 200
*/
@SerializedName("address_line1")
private String addressLine1;

/**
* The second line of the address.
* [Optional]
* <= 200
* &lt; 200
*/
@SerializedName("address_line2")
private String addressLine2;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public final class Identification {
/**
* The account holder's identification number.
* [Required]
* <= 25
* &lt; 25
*/
private String number;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,22 +20,22 @@ public final class Segment {
/**
* The brand of business segment.
* [Optional]
* <= 50
* &lt; 50
*/
private String brand;

/**
* The category of business segment.
* [Optional]
* <= 50
* &lt; 50
*/
@SerializedName("business_category")
private String businessCategory;

/**
* The market of business segment.
* [Optional]
* <= 50
* &lt; 50
*/
private String market;

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,6 @@ public final class RequestAPaymentOrPayoutResponseCreated extends Resource {
/**
* The date/time the payment was processed
* [Required]
* <date-time>
*/
@SerializedName("processed_on")
private Instant processedOn;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ public final class Processing {
/**
* Surcharge amount applied to the transaction in minor units
* [Optional]
* >= 0
* &gt; 0
*/
@SerializedName("surcharge_amount")
private Integer surchargeAmount;
Expand Down
Loading