Skip to content
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 @@ -20,6 +20,7 @@ public abstract class BaseTransactionRequest extends BaseRequest {
private Map<String, String> extras = null;
private Map<String, String> regionalExtras = null;
private String externalReferenceId = null;
private Boolean allowPartialAuth = null;

public BaseTransactionRequest(long amount, String externalId) {
if(externalId == null || externalId.length() > 32) {
Expand Down Expand Up @@ -264,4 +265,22 @@ public void setExternalReferenceId(String externalReferenceId) {
this.externalReferenceId = externalReferenceId;
}

/**
* Get the field value
*
* @return Allow partial auth
*/
public Boolean getAllowPartialAuth() {
return allowPartialAuth;
}

/**
* Set the field value
*
* @param allowPartialAuth Allow partial auth
*/
public void setAllowPartialAuth(Boolean allowPartialAuth) {
this.allowPartialAuth = allowPartialAuth;
}

}