Class SearchabilityV2

java.lang.Object
io.constructor.client.models.SearchabilityV2

public class SearchabilityV2 extends Object
Constructor.io Searchability V2 model.

This class represents the v2 searchability configuration. Uses Gson/Reflection to load data in.

  • Constructor Details

    • SearchabilityV2

      public SearchabilityV2()
  • Method Details

    • getName

      public String getName()
      Returns:
      the name
    • getFuzzySearchable

      public Boolean getFuzzySearchable()
      Returns:
      whether terms can be fuzzy searchable
    • getExactSearchable

      public Boolean getExactSearchable()
      Returns:
      whether terms can be exact searchable
    • getDisplayable

      public Boolean getDisplayable()
      Returns:
      whether the field is displayable in the response
    • getHidden

      public Boolean getHidden()
      Returns:
      whether the field is hidden by default
    • getCreatedAt

      public String getCreatedAt()
      Returns:
      the creation timestamp
    • getUpdatedAt

      public String getUpdatedAt()
      Returns:
      the last update timestamp
    • setName

      public void setName(String name)
    • setFuzzySearchable

      public void setFuzzySearchable(Boolean fuzzySearchable)
    • setExactSearchable

      public void setExactSearchable(Boolean exactSearchable)
    • setDisplayable

      public void setDisplayable(Boolean displayable)
    • setHidden

      public void setHidden(Boolean hidden)
    • setCreatedAt

      public void setCreatedAt(String createdAt)
    • setUpdatedAt

      public void setUpdatedAt(String updatedAt)