Class ClaimCheckoutTransactionsRequest
- java.lang.Object
-
- com.broadleafcommerce.cartoperation.service.provider.domain.ClaimCheckoutTransactionsRequest
-
- All Implemented Interfaces:
Serializable
public class ClaimCheckoutTransactionsRequest extends Object implements Serializable
Request domain used to claim checkout transactions.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ClaimCheckoutTransactionsRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected booleancanEqual(Object other)booleanequals(Object o)StringgetLockToken()The payment lock token.StringgetPaymentId()The id of the payment to claim the transactions against.StringgetRequestId()The id of the checkout request to claim the transactions for.StringgetTransactionType()The type of the transaction.inthashCode()booleanisResetTransactionReversalState()Whether to reset transaction reversal state.voidsetLockToken(String lockToken)The payment lock token.voidsetPaymentId(String paymentId)The id of the payment to claim the transactions against.voidsetRequestId(String requestId)The id of the checkout request to claim the transactions for.voidsetResetTransactionReversalState(boolean resetTransactionReversalState)Whether to reset transaction reversal state.voidsetTransactionType(String transactionType)The type of the transaction.StringtoString()
-
-
-
Method Detail
-
getPaymentId
public String getPaymentId()
The id of the payment to claim the transactions against.
-
getRequestId
public String getRequestId()
The id of the checkout request to claim the transactions for.
-
getTransactionType
public String getTransactionType()
The type of the transaction.
-
isResetTransactionReversalState
public boolean isResetTransactionReversalState()
Whether to reset transaction reversal state.
-
getLockToken
@Nullable public String getLockToken()
The payment lock token.
-
setPaymentId
public void setPaymentId(String paymentId)
The id of the payment to claim the transactions against.
-
setRequestId
public void setRequestId(String requestId)
The id of the checkout request to claim the transactions for.
-
setTransactionType
public void setTransactionType(String transactionType)
The type of the transaction.
-
setResetTransactionReversalState
public void setResetTransactionReversalState(boolean resetTransactionReversalState)
Whether to reset transaction reversal state.
-
setLockToken
public void setLockToken(@Nullable String lockToken)The payment lock token.
-
canEqual
protected boolean canEqual(Object other)
-
-