aboutsummaryrefslogtreecommitdiff
path: root/lib/models/user/activity.mli
blob: 1ddd4e7fda2948c02715ea7c1742460e3d03dcc7 (plain) (blame)
1
2
3
4
5
6
(** An activity object. *)
type t = {
    name: string; (** The name of the activity. *)
    kind: int; (** 0 = Playing, 1 = Streaming, 2 = Listening, 3 = Watching *)
    url: string option; (** Stream URL. Only validated for kind = 1. *)
} [@@deriving sexp, yojson]