aboutsummaryrefslogtreecommitdiff
path: root/lib/models/gen/attachment.atd
blob: 9757b49bad9eb3768207514cc333e41622831c1a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
type snowflake <ocaml from="Snowflake" t="t"> = abstract

type t = {
    id: snowflake;
    filename: string;
    size: int;
    url: string;
    proxy_url: string;
    ?height: int option;
    ?width: int option;
}