blob: d8683b704b7931f70e53c64923f27dcf6cc44181 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
open Core
type t = {
user: User_t.partial_user;
game: Activity.t option [@default None];
status: string;
activities: Activity.t list;
} [@@deriving sexp, yojson { strict = false; exn = true }]
|