Bases: OCIType
The sort criteria specifies whether sort is ascending or descending. Sort order defaults to ascending.
Attributes:
Source code in src/mercury_ocip_fast/commands/commands.py
| @dataclass(kw_only=True)
class SortCriteriaNumeric(OCIType):
"""The sort criteria specifies whether sort is
ascending or descending.
Sort order defaults to ascending.
Attributes:
is_ascending (bool):
"""
is_ascending: bool = field(default=True, metadata={"alias": "isAscending"})
|