Skip to content

Commit

Permalink
Update Payment Context - Payment Request (#388)
Browse files Browse the repository at this point in the history
  • Loading branch information
armando-rodriguez-cko authored Feb 6, 2024
1 parent 883a581 commit a228507
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/main/java/com/checkout/payments/PaymentProcessing.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,14 @@ public final class PaymentProcessing {

@SerializedName("recommendation_code")
private String recommendationCode;

private String scheme;

@SerializedName("partner_merchant_advice_code")
private String partnerMerchantAdviceCode;

@SerializedName("partner_response_code")
private String partnerResponseCode;

@SerializedName("partner_order_id")
private String partnerOrderId;
Expand Down Expand Up @@ -54,5 +59,8 @@ public final class PaymentProcessing {

@SerializedName("partner_authorization_response_code")
private String partnerAuthorizationResponseCode;

@SerializedName("surcharge_amount")
private Long surchargeAmount;

}
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@
@Data
@Builder
public final class PaymentRequest {

@SerializedName("payment_context_id")
private String paymentContextId;

private AbstractRequestSource source;

Expand Down

0 comments on commit a228507

Please sign in to comment.