Interface StagedQuoteReference

All Superinterfaces:
Identifiable<StagedQuote>, IdentifiableObjHolder<StagedQuote>, Reference, ReferenceMixin

public interface StagedQuoteReference extends Reference, Identifiable<StagedQuote>, IdentifiableObjHolder<StagedQuote>

Reference to a StagedQuote.


Example to create an instance using the builder pattern

     StagedQuoteReference stagedQuoteReference = StagedQuoteReference.builder()
             .id("{id}")
             .build()
 
  • Field Details

  • Method Details

    • getObj

      @Valid @Valid StagedQuote getObj()

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

      Specified by:
      getObj in interface IdentifiableObjHolder<StagedQuote>
      Returns:
      obj
    • setObj

      void setObj(StagedQuote obj)

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

      Parameters:
      obj - value to be set
    • of

      static StagedQuoteReference of()
      factory method
      Returns:
      instance of StagedQuoteReference
    • of

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

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

      static StagedQuoteReferenceBuilder builder()
      builder factory method for StagedQuoteReference
      Returns:
      builder
    • builder

      create builder for StagedQuoteReference instance
      Parameters:
      template - instance with prefilled values for the builder
      Returns:
      builder
    • withStagedQuoteReference

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