Interface CartResourceIdentifier

All Superinterfaces:
Identifiable<Cart>, ResourceIdentifier, WithKey

public interface CartResourceIdentifier extends ResourceIdentifier, Identifiable<Cart>

ResourceIdentifier to a Cart. Either id or key is required. If both are set, an InvalidJsonInput error is returned.


Example to create an instance using the builder pattern

     CartResourceIdentifier cartResourceIdentifier = CartResourceIdentifier.builder()
             .build()
 
  • Field Details

  • Method Details

    • getId

      String getId()

      Unique identifier of the referenced Cart. Required if key is absent.

      Specified by:
      getId in interface Identifiable<Cart>
      Specified by:
      getId in interface ResourceIdentifier
      Returns:
      id
    • getKey

      String getKey()

      User-defined unique identifier of the referenced Cart. Required if id is absent.

      Specified by:
      getKey in interface ResourceIdentifier
      Specified by:
      getKey in interface WithKey
      Returns:
      key
    • setId

      void setId(String id)

      Unique identifier of the referenced Cart. Required if key is absent.

      Specified by:
      setId in interface ResourceIdentifier
      Parameters:
      id - value to be set
    • setKey

      void setKey(String key)

      User-defined unique identifier of the referenced Cart. Required if id is absent.

      Specified by:
      setKey in interface ResourceIdentifier
      Parameters:
      key - value to be set
    • of

      factory method
      Returns:
      instance of CartResourceIdentifier
    • of

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

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

      builder factory method for CartResourceIdentifier
      Returns:
      builder
    • builder

      create builder for CartResourceIdentifier instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withCartResourceIdentifier

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