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
FieldsModifier and TypeFieldDescriptionstatic final Stringdiscriminator value for PaymentSetTransactionCustomTypeAction -
Method Summary
Modifier and TypeMethodDescriptionbuilder()builder factory method for PaymentSetTransactionCustomTypeActionbuilder(PaymentSetTransactionCustomTypeAction template) create builder for PaymentSetTransactionCustomTypeAction instancecopyDeep()factory method to create a deep copy of PaymentSetTransactionCustomTypeAction@Valid FieldContainerSets the Custom Fields fields for the Transaction.@NotNull StringUnique identifier of the Transaction.@Valid TypeResourceIdentifiergetType()Defines the Type that extends the Transaction with Custom Fields.of()factory methodof(PaymentSetTransactionCustomTypeAction template) factory method to create a shallow copy PaymentSetTransactionCustomTypeActionvoidsetFields(FieldContainer fields) Sets the Custom Fields fields for the Transaction.voidsetTransactionId(String transactionId) Unique identifier of the Transaction.voidDefines 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> Taccessor map functionMethods inherited from interface com.commercetools.api.models.payment.PaymentUpdateAction
getAction, withPaymentUpdateActionMethods 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
transactionIddoes 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
transactionIddoes 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
-
copyDeep
PaymentSetTransactionCustomTypeAction copyDeep()- Specified by:
copyDeepin interfacePaymentUpdateAction
-
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
-