diff --git a/src/types/invites/invite.ts b/src/types/invites/invite.ts index f06dcb266..1b82079f3 100644 --- a/src/types/invites/invite.ts +++ b/src/types/invites/invite.ts @@ -24,4 +24,6 @@ export interface Invite { approximatePresenceCount?: number; /** Approximate count of total members */ approximateMemberCount?: number; + /** The expiration date of this invite, returned from the `GET /invites/` endpoint when `with_expiration` is `true`. */ + expiresAt?: string | null; }