Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 1 KB

RequestPivot.md

File metadata and controls

30 lines (22 loc) · 1 KB

RequestPivot

A list of pivots.

Properties

Name Type Description Notes
key str A key corresponding to a matching field facet label or stats. [optional]
pivots List[RequestPivot] [optional]

Example

from alfresco_search_api_client.models.request_pivot import RequestPivot

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

# convert the object into a dict
request_pivot_dict = request_pivot_instance.to_dict()
# create an instance of RequestPivot from a dict
request_pivot_form_dict = request_pivot.from_dict(request_pivot_dict)

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