Interface StandalonePriceReference

All Superinterfaces:
Reference, ReferenceMixin

public interface StandalonePriceReference extends Reference

Reference to a StandalonePrice.


Example to create an instance using the builder pattern

     StandalonePriceReference standalonePriceReference = StandalonePriceReference.builder()
             .id("{id}")
             .build()
 
  • Field Details

    • STANDALONE_PRICE

      static final String STANDALONE_PRICE
      discriminator value for StandalonePriceReference
      See Also:
  • Method Details

    • getObj

      @Valid @Valid StandalonePrice getObj()

      Contains the representation of the expanded StandalonePrice. Only present in responses to requests with Reference Expansion for StandalonePrice.

      Returns:
      obj
    • setObj

      void setObj(StandalonePrice obj)

      Contains the representation of the expanded StandalonePrice. Only present in responses to requests with Reference Expansion for StandalonePrice.

      Parameters:
      obj - value to be set
    • of

      factory method
      Returns:
      instance of StandalonePriceReference
    • of

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

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

      builder factory method for StandalonePriceReference
      Returns:
      builder
    • builder

      create builder for StandalonePriceReference instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withStandalonePriceReference

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