Skip to content

Commit

Permalink
Adds refundHostReference field to the Refund model
Browse files Browse the repository at this point in the history
  • Loading branch information
tuncerergin committed Nov 13, 2024
1 parent 3b6bd81 commit f550dd1
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions src/main/java/com/iyzipay/model/Refund.java
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ public class Refund extends IyzipayResource {
private String connectorName;
private String authCode;
private String hostReference;
private String refundHostReference;

public static Refund create(CreateRefundRequest request, Options options) {
String path = "/payment/refund";
Expand Down Expand Up @@ -81,4 +82,11 @@ public String getHostReference() {
public void setHostReference(String hostReference) {
this.hostReference = hostReference;
}
public String getRefundHostReference() {
return refundHostReference;
}

public void setRefundHostReference(String refundHostReference) {
this.refundHostReference = refundHostReference;
}
}

0 comments on commit f550dd1

Please sign in to comment.