diff --git a/deno/payloads/v10/invite.ts b/deno/payloads/v10/invite.ts index 3b4168cd..50855204 100644 --- a/deno/payloads/v10/invite.ts +++ b/deno/payloads/v10/invite.ts @@ -77,9 +77,9 @@ export interface APIInvite { */ approximate_member_count?: number; /** - * The expiration date of this invite, returned from the `GET /invites/` endpoint when `with_expiration` is `true` + * The expiration date of this invite */ - expires_at?: string | null; + expires_at: string | null; /** * The stage instance data if there is a public stage instance in the stage channel this invite is for * diff --git a/deno/payloads/v9/invite.ts b/deno/payloads/v9/invite.ts index 3b4168cd..50855204 100644 --- a/deno/payloads/v9/invite.ts +++ b/deno/payloads/v9/invite.ts @@ -77,9 +77,9 @@ export interface APIInvite { */ approximate_member_count?: number; /** - * The expiration date of this invite, returned from the `GET /invites/` endpoint when `with_expiration` is `true` + * The expiration date of this invite */ - expires_at?: string | null; + expires_at: string | null; /** * The stage instance data if there is a public stage instance in the stage channel this invite is for * diff --git a/payloads/v10/invite.ts b/payloads/v10/invite.ts index a6d27ee4..1e9256fa 100644 --- a/payloads/v10/invite.ts +++ b/payloads/v10/invite.ts @@ -77,9 +77,9 @@ export interface APIInvite { */ approximate_member_count?: number; /** - * The expiration date of this invite, returned from the `GET /invites/` endpoint when `with_expiration` is `true` + * The expiration date of this invite */ - expires_at?: string | null; + expires_at: string | null; /** * The stage instance data if there is a public stage instance in the stage channel this invite is for * diff --git a/payloads/v9/invite.ts b/payloads/v9/invite.ts index a6d27ee4..1e9256fa 100644 --- a/payloads/v9/invite.ts +++ b/payloads/v9/invite.ts @@ -77,9 +77,9 @@ export interface APIInvite { */ approximate_member_count?: number; /** - * The expiration date of this invite, returned from the `GET /invites/` endpoint when `with_expiration` is `true` + * The expiration date of this invite */ - expires_at?: string | null; + expires_at: string | null; /** * The stage instance data if there is a public stage instance in the stage channel this invite is for *