Interface PaymentMethodUpdate


public interface PaymentMethodUpdate
PaymentMethodUpdate
Example to create an instance using the builder pattern

     PaymentMethodUpdate paymentMethodUpdate = PaymentMethodUpdate.builder()
             .version(0.3)
             .plusActions(actionsBuilder -> actionsBuilder)
             .build()
 
  • Method Details

    • getVersion

      @NotNull @NotNull Long getVersion()

      Expected version of the PaymentMethod on which the changes should be applied. If the expected version does not match the actual version, a ConcurrentModification error will be returned.

      Returns:
      version
    • getActions

      @NotNull @Valid @NotNull @Valid List<PaymentMethodUpdateAction> getActions()

      Update actions to be performed on the PaymentMethod.

      Returns:
      actions
    • setVersion

      void setVersion(Long version)

      Expected version of the PaymentMethod on which the changes should be applied. If the expected version does not match the actual version, a ConcurrentModification error will be returned.

      Parameters:
      version - value to be set
    • setActions

      void setActions(PaymentMethodUpdateAction... actions)

      Update actions to be performed on the PaymentMethod.

      Parameters:
      actions - values to be set
    • setActions

      void setActions(List<PaymentMethodUpdateAction> actions)

      Update actions to be performed on the PaymentMethod.

      Parameters:
      actions - values to be set
    • of

      static PaymentMethodUpdate of()
      factory method
      Returns:
      instance of PaymentMethodUpdate
    • of

      factory method to create a shallow copy PaymentMethodUpdate
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • copyDeep

    • deepCopy

      @Nullable static PaymentMethodUpdate deepCopy(@Nullable PaymentMethodUpdate template)
      factory method to create a deep copy of PaymentMethodUpdate
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • builder

      static PaymentMethodUpdateBuilder builder()
      builder factory method for PaymentMethodUpdate
      Returns:
      builder
    • builder

      create builder for PaymentMethodUpdate instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withPaymentMethodUpdate

      default <T> T withPaymentMethodUpdate(Function<PaymentMethodUpdate,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<PaymentMethodUpdate> typeReference()
      gives a TypeReference for usage with Jackson DataBind
      Returns:
      TypeReference