Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1.22 KB

RequestFacetIntervals.md

File metadata and controls

30 lines (22 loc) · 1.22 KB

RequestFacetIntervals

Facet Intervals

Properties

Name Type Description Notes
sets List[RequestFacetSet] Sets the intervals for all fields. [optional]
intervals List[RequestFacetIntervalsIntervalsInner] Specifies the fields to facet by interval. [optional]

Example

from alfresco_search_api_client.models.request_facet_intervals import RequestFacetIntervals

# TODO update the JSON string below
json = "{}"
# create an instance of RequestFacetIntervals from a JSON string
request_facet_intervals_instance = RequestFacetIntervals.from_json(json)
# print the JSON string representation of the object
print RequestFacetIntervals.to_json()

# convert the object into a dict
request_facet_intervals_dict = request_facet_intervals_instance.to_dict()
# create an instance of RequestFacetIntervals from a dict
request_facet_intervals_form_dict = request_facet_intervals.from_dict(request_facet_intervals_dict)

[Back to Model list] [Back to API list] [Back to README]