diff --git a/remote-pay-android-connector/src/main/java/com/clover/remote/client/messages/BaseTransactionRequest.java b/remote-pay-android-connector/src/main/java/com/clover/remote/client/messages/BaseTransactionRequest.java index 60e7c15..a528b00 100644 --- a/remote-pay-android-connector/src/main/java/com/clover/remote/client/messages/BaseTransactionRequest.java +++ b/remote-pay-android-connector/src/main/java/com/clover/remote/client/messages/BaseTransactionRequest.java @@ -20,6 +20,7 @@ public abstract class BaseTransactionRequest extends BaseRequest { private Map extras = null; private Map regionalExtras = null; private String externalReferenceId = null; + private Boolean allowPartialAuth = null; public BaseTransactionRequest(long amount, String externalId) { if(externalId == null || externalId.length() > 32) { @@ -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; + } + }