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

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