🎨 Message
This commit is contained in:
parent
f22b6d3f0b
commit
9d06aa09bf
14
dist/models/Message.d.ts
vendored
14
dist/models/Message.d.ts
vendored
@ -6,20 +6,20 @@ export interface Message {
|
|||||||
guild_id?: bigint;
|
guild_id?: bigint;
|
||||||
author_id?: bigint;
|
author_id?: bigint;
|
||||||
webhook_id?: bigint;
|
webhook_id?: bigint;
|
||||||
application_id: bigint;
|
application_id?: bigint;
|
||||||
content: string;
|
content?: string;
|
||||||
timestamp: Date;
|
timestamp: Date;
|
||||||
edited_timestamp: Date;
|
edited_timestamp?: Date;
|
||||||
tts: boolean;
|
tts?: boolean;
|
||||||
mention_everyone: boolean;
|
mention_everyone?: boolean;
|
||||||
mention_user_ids: bigint[];
|
mention_user_ids: bigint[];
|
||||||
mention_role_ids: bigint[];
|
mention_role_ids: bigint[];
|
||||||
mention_channels_ids: bigint[];
|
mention_channels_ids: bigint[];
|
||||||
attachments: Attachment[];
|
attachments: Attachment[];
|
||||||
embeds: Embed[];
|
embeds: Embed[];
|
||||||
reactions?: Reaction[];
|
reactions: Reaction[];
|
||||||
nonce?: string | number;
|
nonce?: string | number;
|
||||||
pinned: boolean;
|
pinned?: boolean;
|
||||||
type: MessageType;
|
type: MessageType;
|
||||||
activity?: {
|
activity?: {
|
||||||
type: number;
|
type: number;
|
||||||
|
@ -10,20 +10,20 @@ export interface Message {
|
|||||||
guild_id?: bigint;
|
guild_id?: bigint;
|
||||||
author_id?: bigint;
|
author_id?: bigint;
|
||||||
webhook_id?: bigint;
|
webhook_id?: bigint;
|
||||||
application_id: bigint;
|
application_id?: bigint;
|
||||||
content: string;
|
content?: string;
|
||||||
timestamp: Date;
|
timestamp: Date;
|
||||||
edited_timestamp: Date;
|
edited_timestamp?: Date;
|
||||||
tts: boolean;
|
tts?: boolean;
|
||||||
mention_everyone: boolean;
|
mention_everyone?: boolean;
|
||||||
mention_user_ids: bigint[];
|
mention_user_ids: bigint[];
|
||||||
mention_role_ids: bigint[];
|
mention_role_ids: bigint[];
|
||||||
mention_channels_ids: bigint[];
|
mention_channels_ids: bigint[];
|
||||||
attachments: Attachment[];
|
attachments: Attachment[];
|
||||||
embeds: Embed[];
|
embeds: Embed[];
|
||||||
reactions?: Reaction[];
|
reactions: Reaction[];
|
||||||
nonce?: string | number;
|
nonce?: string | number;
|
||||||
pinned: boolean;
|
pinned?: boolean;
|
||||||
type: MessageType;
|
type: MessageType;
|
||||||
activity?: {
|
activity?: {
|
||||||
type: number;
|
type: number;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user