Skip to content

SortCriteriaNumeric

Bases: OCIType

The sort criteria specifies whether sort is ascending or descending. Sort order defaults to ascending.

Attributes:

is_ascending (bool):
Source code in src/mercury_ocip/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"})