Chameleon
    Preparing search index...

    Interface Application

    interface Application {
        id: string;
        name: string;
        icon: string | null;
        description: string;
        rpcOrigins?: string[];
        botPublic: boolean;
        botRequireCodeGrant: boolean;
        bot?: Partial<User>;
        termsOfServiceUrl?: string;
        privacyPolicyUrl?: string;
        owner?: Partial<User>;
        verifyKey: string;
        team: Team | null;
        guildId?: string;
        guild?: Partial<Guild>;
        primarySkuId?: string;
        slug?: string;
        coverImage?: string;
        flags?: number;
        approximateGuildCount?: number;
        approximateUserInstallCount?: number;
        approximateUserAuthorizationCount?: number;
        redirectUris?: string[];
        interactionsEndpointUrl?: string | null;
        roleConnectionsVerificationUrl?: string | null;
        eventWebhooksUrl?: string | null;
        eventWebhooksStatus?: number;
        eventWebhooksTypes?: string[];
        tags?: string[];
        installParams?: InstallParams;
        integrationTypesConfig?: Record<
            string,
            ApplicationIntegrationTypeConfiguration,
        >;
        customInstallUrl?: string;
    }
    Index

    Properties

    id: string
    name: string
    icon: string | null
    description: string
    rpcOrigins?: string[]
    botPublic: boolean
    botRequireCodeGrant: boolean
    bot?: Partial<User>
    termsOfServiceUrl?: string
    privacyPolicyUrl?: string
    owner?: Partial<User>
    verifyKey: string
    team: Team | null
    guildId?: string
    guild?: Partial<Guild>
    primarySkuId?: string
    slug?: string
    coverImage?: string
    flags?: number
    approximateGuildCount?: number
    approximateUserInstallCount?: number
    approximateUserAuthorizationCount?: number
    redirectUris?: string[]
    interactionsEndpointUrl?: string | null
    roleConnectionsVerificationUrl?: string | null
    eventWebhooksUrl?: string | null
    eventWebhooksStatus?: number
    eventWebhooksTypes?: string[]
    tags?: string[]
    installParams?: InstallParams
    integrationTypesConfig?: Record<string, ApplicationIntegrationTypeConfiguration>
    customInstallUrl?: string