Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new fields for deserializing to support PRA mandate #63

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,12 @@ public class PtsV2PaymentsRefundPost201ResponseProcessorInformation {
@SerializedName("responseCode")
private String responseCode = null;

@SerializedName("approvalCode")
private String approvalCode = null;

@SerializedName("networkTransactionId")
private String networkTransactionId = null;

@SerializedName("achVerification")
private PtsV2PaymentsPost201ResponseProcessorInformationAchVerification achVerification = null;

Expand Down Expand Up @@ -134,6 +140,31 @@ public void setAchVerification(PtsV2PaymentsPost201ResponseProcessorInformationA
this.achVerification = achVerification;
}

/**
* Get networkTransactionId
* @return networkTransactionId
**/
@ApiModelProperty(value = "")
public String getNetworkTransactionId() {
return networkTransactionId;
}

public void setNetworkTransactionId(String networkTransactionId) {
this.networkTransactionId = networkTransactionId;
}

/**
* Get approvalCode
* @return approvalCode
**/
@ApiModelProperty(value = "")
public String getApprovalCode() {
return approvalCode;
}

public void setApprovalCode(String approvalCode) {
this.approvalCode = approvalCode;
}

@Override
public boolean equals(java.lang.Object o) {
Expand Down