invite interface
This commit is contained in:
parent
e63f127a56
commit
d886213349
31
src/models/Invite.ts
Normal file
31
src/models/Invite.ts
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
export interface Invite {
|
||||||
|
code: string,
|
||||||
|
guild: {
|
||||||
|
id: bigint,
|
||||||
|
name: string,
|
||||||
|
splash: string,
|
||||||
|
description: string,
|
||||||
|
icon: string,
|
||||||
|
features: Object,
|
||||||
|
verification_level: number
|
||||||
|
},
|
||||||
|
channel: {
|
||||||
|
id: bigint,
|
||||||
|
name: string,
|
||||||
|
type: number
|
||||||
|
},
|
||||||
|
|
||||||
|
inviter: {
|
||||||
|
id: bigint,
|
||||||
|
username: string,
|
||||||
|
avatar: string,
|
||||||
|
discriminator: number,
|
||||||
|
},
|
||||||
|
target_user: {
|
||||||
|
id: bigint,
|
||||||
|
username: string,
|
||||||
|
avatar: string,
|
||||||
|
discriminator: number
|
||||||
|
},
|
||||||
|
target_user_type: number
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user