Interface CustomerAddBillingAddressIdAction

All Superinterfaces:
CustomerUpdateAction, ResourceUpdateAction<CustomerUpdateAction>

public interface CustomerAddBillingAddressIdAction extends CustomerUpdateAction

Adds an Address from the addresses array to billingAddressIds. Either addressId or addressKey is required.


Example to create an instance using the builder pattern

     CustomerAddBillingAddressIdAction customerAddBillingAddressIdAction = CustomerAddBillingAddressIdAction.builder()
             .build()
 
  • Field Details

    • ADD_BILLING_ADDRESS_ID

      static final String ADD_BILLING_ADDRESS_ID
      discriminator value for CustomerAddBillingAddressIdAction
      See Also:
  • Method Details

    • getAddressId

      String getAddressId()

      id of the Address to become a billing address.

      Returns:
      addressId
    • getAddressKey

      String getAddressKey()

      key of the Address to become a billing address.

      Returns:
      addressKey
    • setAddressId

      void setAddressId(String addressId)

      id of the Address to become a billing address.

      Parameters:
      addressId - value to be set
    • setAddressKey

      void setAddressKey(String addressKey)

      key of the Address to become a billing address.

      Parameters:
      addressKey - value to be set
    • of

      factory method
      Returns:
      instance of CustomerAddBillingAddressIdAction
    • of

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

      factory method to create a deep copy of CustomerAddBillingAddressIdAction
      Parameters:
      template - instance to be copied
      Returns:
      copy instance
    • builder

      builder factory method for CustomerAddBillingAddressIdAction
      Returns:
      builder
    • builder

      create builder for CustomerAddBillingAddressIdAction instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withCustomerAddBillingAddressIdAction

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