Class PaymentSetInterfaceIdActionBuilder

java.lang.Object
com.commercetools.api.models.payment.PaymentSetInterfaceIdActionBuilder
All Implemented Interfaces:
io.vrap.rmf.base.client.Builder<PaymentSetInterfaceIdAction>

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

     PaymentSetInterfaceIdAction paymentSetInterfaceIdAction = PaymentSetInterfaceIdAction.builder()
             .interfaceId("{interfaceId}")
             .build()
 
  • Constructor Details

    • PaymentSetInterfaceIdActionBuilder

      public PaymentSetInterfaceIdActionBuilder()
  • Method Details

    • interfaceId

      public PaymentSetInterfaceIdActionBuilder interfaceId(String interfaceId)

      Value to set. Once set, the interfaceId cannot be changed.

      Parameters:
      interfaceId - value to be set
      Returns:
      Builder
    • getInterfaceId

      public String getInterfaceId()

      Value to set. Once set, the interfaceId cannot be changed.

      Returns:
      interfaceId
    • build

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

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

      factory method for an instance of PaymentSetInterfaceIdActionBuilder
      Returns:
      builder
    • of

      create builder for PaymentSetInterfaceIdAction instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder