aboutsummaryrefslogtreecommitdiff
path: root/lib/models/attachment.ml
blob: 095743d53d337fab6e0b997d802f96887adef429 (plain) (blame)
1
2
3
4
5
6
7
8
9
type t = {
    id: Snowflake.t;
    filename: string;
    size: int;
    url: string;
    proxy_url: string;
    height: int option;
    width: int option;
}