Class StagedQuoteUpdateBuilder

java.lang.Object
com.commercetools.api.models.staged_quote.StagedQuoteUpdateBuilder
All Implemented Interfaces:
io.vrap.rmf.base.client.Builder<StagedQuoteUpdate>

public class StagedQuoteUpdateBuilder extends Object implements io.vrap.rmf.base.client.Builder<StagedQuoteUpdate>
StagedQuoteUpdateBuilder
Example to create an instance using the builder pattern

     StagedQuoteUpdate stagedQuoteUpdate = StagedQuoteUpdate.builder()
             .version(0.3)
             .plusActions(actionsBuilder -> actionsBuilder)
             .build()
 
  • Constructor Details

    • StagedQuoteUpdateBuilder

      public StagedQuoteUpdateBuilder()
  • Method Details

    • version

      public StagedQuoteUpdateBuilder version(Long version)

      Expected version of the StagedQuote to 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
      Returns:
      Builder
    • actions

      Update actions to be performed on the StagedQuote.

      Parameters:
      actions - value to be set
      Returns:
      Builder
    • actions

      Update actions to be performed on the StagedQuote.

      Parameters:
      actions - value to be set
      Returns:
      Builder
    • plusActions

      public StagedQuoteUpdateBuilder plusActions(StagedQuoteUpdateAction... actions)

      Update actions to be performed on the StagedQuote.

      Parameters:
      actions - value to be set
      Returns:
      Builder
    • plusActions

      public StagedQuoteUpdateBuilder plusActions(Function<StagedQuoteUpdateActionBuilder,io.vrap.rmf.base.client.Builder<? extends StagedQuoteUpdateAction>> builder)

      Update actions to be performed on the StagedQuote.

      Parameters:
      builder - function to build the actions value
      Returns:
      Builder
    • withActions

      public StagedQuoteUpdateBuilder withActions(Function<StagedQuoteUpdateActionBuilder,io.vrap.rmf.base.client.Builder<? extends StagedQuoteUpdateAction>> builder)

      Update actions to be performed on the StagedQuote.

      Parameters:
      builder - function to build the actions value
      Returns:
      Builder
    • getVersion

      public Long getVersion()

      Expected version of the StagedQuote to 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

      public List<StagedQuoteUpdateAction> getActions()

      Update actions to be performed on the StagedQuote.

      Returns:
      actions
    • build

      public StagedQuoteUpdate build()
      builds StagedQuoteUpdate with checking for non-null required values
      Specified by:
      build in interface io.vrap.rmf.base.client.Builder<StagedQuoteUpdate>
      Returns:
      StagedQuoteUpdate
    • buildUnchecked

      public StagedQuoteUpdate buildUnchecked()
      builds StagedQuoteUpdate without checking for non-null required values
      Returns:
      StagedQuoteUpdate
    • of

      public static StagedQuoteUpdateBuilder of()
      factory method for an instance of StagedQuoteUpdateBuilder
      Returns:
      builder
    • of

      public static StagedQuoteUpdateBuilder of(StagedQuoteUpdate template)
      create builder for StagedQuoteUpdate instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder