Type Alias $TTSMessageEmbedPayload<ExtArgs>

$TTSMessageEmbedPayload<ExtArgs>: {
    composites: {};
    name: "TTSMessageEmbed";
    objects: {
        fields: $TTSEmbedFieldPayload<ExtArgs>[];
        ttsCustomMessage: $TTSCustomMessagePayload<ExtArgs> | null;
    };
    scalars: GetPayloadResult<{
        author: string | null;
        authorIcon: string | null;
        color: string | null;
        dbId: string;
        description: string;
        footer: string | null;
        footerIcon: string | null;
        image: string | null;
        thumbnail: string | null;
        title: string | null;
        ttsCustomMessageId: string;
        url: string | null;
    }, ExtArgs["result"]["tTSMessageEmbed"]>;
}

Type Parameters