Class BatchLookupInput

java.lang.Object
ai.vectros.types.BatchLookupInput

public final class BatchLookupInput extends Object
  • Method Details

    • getRef

      public Optional<String> getRef()
      Returns:
      Your correlation id for this lookup, echoed back on the matching result group so you can pair results to inputs regardless of ordering.
    • getType

      public Optional<String> getType()
      Returns:
      The record type to look up.
    • getField

      public Optional<String> getField()
      Returns:
      The name of the lookup field to match on, as declared on the record schema. For a lookup declared over several fields, this is those field names joined with commas (status,area), and the values go in values.
    • getValue

      public Optional<String> getValue()
      Returns:
      The exact value to match against the lookup field. Mutually exclusive with values.
    • getValues

      public Optional<List<String>> getValues()
      Returns:
      The exact values to match, for a lookup declared over several fields — one value per field, in the order the lookup declares them. Mutually exclusive with value; a single-element list is identical to value. You may supply fewer values than the lookup declares as long as they are a leading run of its fields.
    • equals

      public boolean equals(Object other)
      Overrides:
      equals in class Object
    • getAdditionalProperties

      public Map<String,Object> getAdditionalProperties()
    • hashCode

      public int hashCode()
      Overrides:
      hashCode in class Object
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • builder

      public static BatchLookupInput.Builder builder()