Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 1.36 KB

File metadata and controls

32 lines (23 loc) · 1.36 KB

QueryVectorCollection200ResponsePagination

Pagination info (listByMetadata mode only)

Properties

Name Type Description Notes
sort_by str [optional]
sort_order str [optional]
limit int [optional]

Example

from quantcdn.models.query_vector_collection200_response_pagination import QueryVectorCollection200ResponsePagination

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

# convert the object into a dict
query_vector_collection200_response_pagination_dict = query_vector_collection200_response_pagination_instance.to_dict()
# create an instance of QueryVectorCollection200ResponsePagination from a dict
query_vector_collection200_response_pagination_from_dict = QueryVectorCollection200ResponsePagination.from_dict(query_vector_collection200_response_pagination_dict)

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