aboutsummaryrefslogtreecommitdiff
path: root/lib/models/attachment.ml
blob: c56b389a720015775376a1911c8b73835ad69197 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
open Core

type t = {
    id: Snowflake.t;
    filename: string;
    size: int;
    url: string;
    proxy_url: string;
    height: int [@default -1];
    width: int [@default -1];
} [@@deriving sexp, yojson { strict = false}]