Source code for pyrestsdk.request.supports_types._supports_query_options

"""Houses Supports Query Options"""

from typing import Protocol
from pyrestsdk.type.model import QueryOptionCollection


[docs]class SupportsQueryOptions(Protocol): """Supports Query Options Type""" __slots__ = ["_query_options"] _query_options: QueryOptionCollection @property def query_options(self) -> QueryOptionCollection: """Gets Query Options""" return self._query_options