Interface PaymentSetTransactionCustomTypeAction
- All Superinterfaces:
PaymentUpdateAction
,ResourceUpdateAction<PaymentUpdateAction>
PaymentSetTransactionCustomTypeAction
Example to create an instance using the builder pattern
Example to create an instance using the builder pattern
PaymentSetTransactionCustomTypeAction paymentSetTransactionCustomTypeAction = PaymentSetTransactionCustomTypeAction.builder()
.transactionId("{transactionId}")
.build()
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
discriminator value for PaymentSetTransactionCustomTypeAction -
Method Summary
Modifier and TypeMethodDescriptionbuilder()
builder factory method for PaymentSetTransactionCustomTypeActionbuilder
(PaymentSetTransactionCustomTypeAction template) create builder for PaymentSetTransactionCustomTypeAction instancefactory method to create a deep copy of PaymentSetTransactionCustomTypeAction@Valid FieldContainer
Sets the Custom Fields fields for the Transaction.@NotNull String
Unique identifier of the Transaction.@Valid TypeResourceIdentifier
getType()
Defines the Type that extends the Transaction with Custom Fields.of()
factory methodof
(PaymentSetTransactionCustomTypeAction template) factory method to create a shallow copy PaymentSetTransactionCustomTypeActionvoid
setFields
(FieldContainer fields) Sets the Custom Fields fields for the Transaction.void
setTransactionId
(String transactionId) Unique identifier of the Transaction.void
Defines the Type that extends the Transaction with Custom Fields.static com.fasterxml.jackson.core.type.TypeReference<PaymentSetTransactionCustomTypeAction>
gives a TypeReference for usage with Jackson DataBinddefault <T> T
accessor map functionMethods inherited from interface com.commercetools.api.models.payment.PaymentUpdateAction
getAction, withPaymentUpdateAction
Methods inherited from interface com.commercetools.api.models.ResourceUpdateAction
get
-
Field Details
-
SET_TRANSACTION_CUSTOM_TYPE
discriminator value for PaymentSetTransactionCustomTypeAction- See Also:
-
-
Method Details
-
getTransactionId
Unique identifier of the Transaction. If the specified
transactionId
does not exist, the request will fail with an InvalidOperation error.- Returns:
- transactionId
-
getType
Defines the Type that extends the Transaction with Custom Fields. If absent, any existing Type and Custom Fields are removed from the Transaction.
- Returns:
- type
-
getFields
Sets the Custom Fields fields for the Transaction.
- Returns:
- fields
-
setTransactionId
Unique identifier of the Transaction. If the specified
transactionId
does not exist, the request will fail with an InvalidOperation error.- Parameters:
transactionId
- value to be set
-
setType
Defines the Type that extends the Transaction with Custom Fields. If absent, any existing Type and Custom Fields are removed from the Transaction.
- Parameters:
type
- value to be set
-
setFields
Sets the Custom Fields fields for the Transaction.
- Parameters:
fields
- value to be set
-
of
factory method- Returns:
- instance of PaymentSetTransactionCustomTypeAction
-
of
factory method to create a shallow copy PaymentSetTransactionCustomTypeAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
deepCopy
@Nullable static PaymentSetTransactionCustomTypeAction deepCopy(@Nullable PaymentSetTransactionCustomTypeAction template) factory method to create a deep copy of PaymentSetTransactionCustomTypeAction- Parameters:
template
- instance to be copied- Returns:
- copy instance
-
builder
builder factory method for PaymentSetTransactionCustomTypeAction- Returns:
- builder
-
builder
static PaymentSetTransactionCustomTypeActionBuilder builder(PaymentSetTransactionCustomTypeAction template) create builder for PaymentSetTransactionCustomTypeAction instance- Parameters:
template
- instance with prefilled values for the builder- Returns:
- builder
-
withPaymentSetTransactionCustomTypeAction
default <T> T withPaymentSetTransactionCustomTypeAction(Function<PaymentSetTransactionCustomTypeAction, T> helper) accessor map function- Type Parameters:
T
- mapped type- Parameters:
helper
- function to map the object- Returns:
- mapped value
-
typeReference
static com.fasterxml.jackson.core.type.TypeReference<PaymentSetTransactionCustomTypeAction> typeReference()gives a TypeReference for usage with Jackson DataBind- Returns:
- TypeReference
-