@typed-discord/rest
    Preparing search index...

    Interface GuildInviteResponse

    interface GuildInviteResponse {
        approximate_member_count?: number | null;
        approximate_presence_count?: number | null;
        channel: InviteChannelResponse;
        code: string;
        created_at?: string;
        expires_at: string | null;
        flags?: number;
        guild: InviteGuildResponse;
        guild_id: `${bigint}`;
        guild_scheduled_event?: ScheduledEventResponse;
        inviter?: UserResponse;
        is_contact?: boolean;
        is_nickname_changeable?: boolean;
        liveliness?: GuildLivelinessResponse | null;
        max_age?: number;
        max_uses?: number;
        roles?: InviteGuildRoleResponse[] | null;
        target_application?: InviteApplicationResponse;
        target_channel_id?: `${bigint}`;
        target_message_id?: `${bigint}`;
        target_type?: InviteTargetTypes;
        target_user?: UserResponse;
        temporary?: boolean;
        type: GUILD;
        uses?: number;
    }
    Index

    Properties

    approximate_member_count?: number | null
    approximate_presence_count?: number | null
    code: string
    created_at?: string
    expires_at: string | null
    flags?: number
    guild_id: `${bigint}`
    guild_scheduled_event?: ScheduledEventResponse
    inviter?: UserResponse
    is_contact?: boolean
    is_nickname_changeable?: boolean
    liveliness?: GuildLivelinessResponse | null
    max_age?: number
    max_uses?: number
    roles?: InviteGuildRoleResponse[] | null
    target_application?: InviteApplicationResponse
    target_channel_id?: `${bigint}`
    target_message_id?: `${bigint}`
    target_type?: InviteTargetTypes
    target_user?: UserResponse
    temporary?: boolean
    type: GUILD
    uses?: number