Type Alias $GuildDropsGamePayload<ExtArgs>

$GuildDropsGamePayload<ExtArgs>: {
    composites: {};
    name: "GuildDropsGame";
    objects: {
        game: $DropGamePayload<ExtArgs> | null;
        guildDrops: $GuildDropsPayload<ExtArgs> | null;
        webhook: $GuildDropsGameWebhookPayload<ExtArgs> | null;
    };
    scalars: GetPayloadResult<{
        channelId: string | null;
        createdAt: Date;
        dbId: string;
        gameId: string;
        guildDropsId: string;
        liveNotifications: boolean | null;
        roleId: string | null;
    }, ExtArgs["result"]["guildDropsGame"]>;
}

Type Parameters