Interface PaymentSetTransactionCustomTypeAction

All Superinterfaces:
PaymentUpdateAction, ResourceUpdateAction<PaymentUpdateAction>

public interface PaymentSetTransactionCustomTypeAction extends PaymentUpdateAction
PaymentSetTransactionCustomTypeAction
Example to create an instance using the builder pattern

     PaymentSetTransactionCustomTypeAction paymentSetTransactionCustomTypeAction = PaymentSetTransactionCustomTypeAction.builder()
             .transactionId("{transactionId}")
             .build()
 
  • Field Details

    • SET_TRANSACTION_CUSTOM_TYPE

      static final String SET_TRANSACTION_CUSTOM_TYPE
      discriminator value for PaymentSetTransactionCustomTypeAction
      See Also:
  • Method Details

    • getTransactionId

      @NotNull @NotNull String getTransactionId()

      Unique identifier of the Transaction. If the specified transactionId does not exist, the request will fail with an InvalidOperation error.

      Returns:
      transactionId
    • getType

      @Valid @Valid TypeResourceIdentifier 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

      @Valid @Valid FieldContainer getFields()

      Sets the Custom Fields fields for the Transaction.

      Returns:
      fields
    • setTransactionId

      void setTransactionId(String transactionId)

      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

      void setType(TypeResourceIdentifier type)

      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

      void setFields(FieldContainer fields)

      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

      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

      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