diff options
| author | Adelyn Breedlove <[email protected]> | 2018-12-14 16:49:37 -0700 |
|---|---|---|
| committer | Adelyn Breedlove <[email protected]> | 2018-12-14 16:49:37 -0700 |
| commit | 41fbba7d0b7dd9fff8dcb9985a474cfbbd2408f2 (patch) | |
| tree | 690861418bed15de47e7cf5672d96fdacc9abe5e /lib/models/gen/guild_t.mli | |
| parent | Merge branch 'dev' of https://gitlab.com/Mishio595/disml into dev (diff) | |
| parent | A few metafile updates (diff) | |
| download | disml-41fbba7d0b7dd9fff8dcb9985a474cfbbd2408f2.tar.xz disml-41fbba7d0b7dd9fff8dcb9985a474cfbbd2408f2.zip | |
Merging
Diffstat (limited to 'lib/models/gen/guild_t.mli')
| -rw-r--r-- | lib/models/gen/guild_t.mli | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/lib/models/gen/guild_t.mli b/lib/models/gen/guild_t.mli new file mode 100644 index 0000000..9ffe83f --- /dev/null +++ b/lib/models/gen/guild_t.mli @@ -0,0 +1,43 @@ +(* Auto-generated from "guild.atd" *) + [@@@ocaml.warning "-27-32-35-39"] + +type user = User_t.t + +type snowflake = Snowflake_t.t + +type role = Role_t.t + +type member = Member_t.t + +type emoji = Emoji_t.t + +type channel = Channel_t.t + +type t = { + id: snowflake; + name: string; + icon: string option; + splash: string option; + owner_id: snowflake; + region: string; + afk_channel_id: snowflake option; + afk_timeout: int; + embed_enabled: bool option; + embed_channel_id: snowflake option; + verification_level: int; + default_message_notifications: int; + explicit_content_filter: int; + roles: role list; + emojis: emoji list; + features: string list; + mfa_level: int; + application_id: snowflake option; + widget_enabled: bool option; + widget_channel: channel option; + system_channel: channel option; + large: bool option; + unavailable: bool option; + member_count: int option; + members: member list option; + channels: channel list option +} |