Class QueryRequestModel

java.lang.Object
net.avalara.avatax.rest.client.models.QueryRequestModel

public class QueryRequestModel extends Object
Represents a complex query request to parse using query filter guidelines from Microsoft REST standards
  • Constructor Summary

    Constructors
    Constructor
    Description
     
  • Method Summary

    Modifier and Type
    Method
    Description
    Getter for filter A list of conditions to filter objects.
    Getter for include A list of included commands for this fetch operation.
    Getter for maxResults For pagination: This is the maximum number of results to return.
    Getter for sortBy Sorts the resulting objects in a specific manner.
    Getter for startIndex For pagination: This is the index of the first result.
    void
    Setter for filter A list of conditions to filter objects.
    void
    Setter for include A list of included commands for this fetch operation.
    void
    Setter for maxResults For pagination: This is the maximum number of results to return.
    void
    Setter for sortBy Sorts the resulting objects in a specific manner.
    void
    Setter for startIndex For pagination: This is the index of the first result.
    Returns a JSON string representation of QueryRequestModel

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • QueryRequestModel

      public QueryRequestModel()
  • Method Details

    • getFilter

      public String getFilter()
      Getter for filter A list of conditions to filter objects.
    • setFilter

      public void setFilter(String value)
      Setter for filter A list of conditions to filter objects.
    • getInclude

      public String getInclude()
      Getter for include A list of included commands for this fetch operation.
    • setInclude

      public void setInclude(String value)
      Setter for include A list of included commands for this fetch operation.
    • getMaxResults

      public Integer getMaxResults()
      Getter for maxResults For pagination: This is the maximum number of results to return.
    • setMaxResults

      public void setMaxResults(Integer value)
      Setter for maxResults For pagination: This is the maximum number of results to return.
    • getStartIndex

      public Integer getStartIndex()
      Getter for startIndex For pagination: This is the index of the first result.
    • setStartIndex

      public void setStartIndex(Integer value)
      Setter for startIndex For pagination: This is the index of the first result.
    • getSortBy

      public String getSortBy()
      Getter for sortBy Sorts the resulting objects in a specific manner.
    • setSortBy

      public void setSortBy(String value)
      Setter for sortBy Sorts the resulting objects in a specific manner.
    • toString

      public String toString()
      Returns a JSON string representation of QueryRequestModel
      Overrides:
      toString in class Object