Type Alias $GuildDropsWebhookPayload<ExtArgs>

$GuildDropsWebhookPayload<ExtArgs>: {
    composites: {};
    name: "GuildDropsWebhook";
    objects: {
        guildDrops: $GuildDropsPayload<ExtArgs> | null;
    };
    scalars: GetPayloadResult<{
        avatarUrl: string | null;
        dbId: string;
        guildDropsId: string;
        username: string | null;
    }, ExtArgs["result"]["guildDropsWebhook"]>;
}

Type Parameters