Type Alias $GuildDropsPayload<ExtArgs>

$GuildDropsPayload<ExtArgs>: {
    composites: {};
    name: "GuildDrops";
    objects: {
        games: $GuildDropsGamePayload<ExtArgs>[];
        webhook: $GuildDropsWebhookPayload<ExtArgs> | null;
    };
    scalars: GetPayloadResult<{
        createdAt: Date;
        dbId: string;
        guildId: string;
        kickChannelId: string | null;
        kickEnabled: boolean;
        kickLiveNotificationChannelId: string | null;
        kickLiveNotificationRoleId: string | null;
        kickRoleId: string | null;
        liveNotifications: boolean;
        twitchChannelId: string | null;
        twitchEnabled: boolean;
        twitchLiveNotificationChannelId: string | null;
        twitchLiveNotificationRoleId: string | null;
        twitchRoleId: string | null;
        updatedAt: Date;
    }, ExtArgs["result"]["guildDrops"]>;
}

Type Parameters