Type Alias $GuildCustomBotProfilePayload<ExtArgs>

$GuildCustomBotProfilePayload<ExtArgs>: {
    composites: {};
    name: "GuildCustomBotProfile";
    objects: {
        guild: $GuildPayload<ExtArgs> | null;
    };
    scalars: GetPayloadResult<{
        avatarKey: string | null;
        bannerKey: string | null;
        bio: string | null;
        dbId: string;
        enabled: boolean;
        guildId: string;
        nick: string | null;
    }, ExtArgs["result"]["guildCustomBotProfile"]>;
}

Type Parameters