blob: 6e015dc88cbc95bb1079df4e908a689dc124a286 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
|
let string_of_sexp = Base.String.t_of_sexp
let sexp_of_string = Base.String.sexp_of_t
type t =
{ id: Snowflake.t
; kind: string [@key "type"]
; allow: Permissions.t
; deny: Permissions.t
} [@@deriving sexp, yojson { strict = false; exn = true }]
|