Skip to content

Options🔗

Definition🔗

class Options:
    only_from_this_dashboard: bool
    only_in_time_range: bool
    tags: list[str]
    limit: int
    show_user: bool
    show_time: bool
    show_tags: bool
    navigate_to_panel: bool
    navigate_before: str
    navigate_after: str

Methods🔗

to_json🔗

Converts this object into a representation that can easily be encoded to JSON.

def to_json() -> dict[str, object]

from_json🔗

Builds this object from a JSON-decoded dict.

@classmethod
def from_json(data: dict[str, typing.Any]) -> typing.Self