aboutsummaryrefslogtreecommitdiff
path: root/lib/models/user/activity.ml
blob: c9b73d80b622473000300b3a3a885f574f75e29f (plain) (blame)
1
2
3
4
5
6
7
open Core

type t = {
    name: string;
    kind: int [@key "type"];
    url: string option [@default None];
} [@@deriving sexp, yojson { strict = false}]