Type Alias $SentDropPayload<ExtArgs>

$SentDropPayload<ExtArgs>: {
    composites: {};
    name: "SentDrop";
    objects: {
        drop: $DropPayload<ExtArgs> | null;
    };
    scalars: GetPayloadResult<{
        channelId: string | null;
        dbId: string;
        dropId: string;
        guildId: string;
        messageId: string | null;
        platform: PlatformEnum;
        sentAt: Date;
    }, ExtArgs["result"]["sentDrop"]>;
}

Type Parameters