package polymarket

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Client.StatusSource

Status filter for events and markets

Sourcetype t =
  1. | Active
    (*

    Only active/open items

    *)
  2. | Closed
    (*

    Only closed/resolved items

    *)
  3. | All
    (*

    All items regardless of status

    *)
Sourceval to_string : t -> string
Sourceval of_string : string -> t
Sourceval of_string_opt : string -> t option
Sourceval t_of_yojson : Yojson.Safe.t -> t
Sourceval yojson_of_t : t -> Yojson.Safe.t
Sourceval pp : Format.formatter -> t -> unit
Sourceval equal : t -> t -> bool