com.clover.remote.TxStartResponseResult Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of remote-pay-java-connector Show documentation
Show all versions of remote-pay-java-connector Show documentation
Clover Connector Java library
package com.clover.remote;
public enum TxStartResponseResult {
SUCCESS(true, 0),
DUPLICATE(false, 1),
ORDER_MODIFIED(false, 2),
ORDER_LOAD(false, 3),
FAIL(false, 4);
public final boolean success;
public final int messageId;
TxStartResponseResult(boolean success, int messageId) {
this.success = success;
this.messageId = messageId;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy