Bases: OCIType
Used in queries to restrict the set of result rows when making a request that can result in a large dataset. The client specifies the starting row and the number of rows requested. The server only provides those rows in results, if available.
Attributes:
response_start_index (int):
response_page_size (int):
Source code in src/mercury_ocip_fast/commands/commands.py
| @dataclass(kw_only=True)
class ResponsePagingControl(OCIType):
"""Used in queries to restrict the set of result rows when making a request that can result in
a large dataset. The client specifies the starting row and the number of rows requested.
The server only provides those rows in results, if available.
Attributes:
response_start_index (int):
response_page_size (int):
"""
response_start_index: int = field(metadata={"alias": "responseStartIndex"})
response_page_size: int = field(metadata={"alias": "responsePageSize"})
|