Type Alias $TSCustomMessagePayload<ExtArgs>

$TSCustomMessagePayload<ExtArgs>: {
    composites: {};
    name: "TSCustomMessage";
    objects: {
        buttons: $TSMessageButtonPayload<ExtArgs>[];
        embed: $TSMessageEmbedPayload<ExtArgs> | null;
        twitchStreamer: $TwitchStreamerPayload<ExtArgs> | null;
        webhook: $TSMessageWebhookPayload<ExtArgs> | null;
    };
    scalars: GetPayloadResult<{
        content: string | null;
        dbId: string;
        twitchStreamerId: string;
        type: StreamerMessageTypeEnum;
    }, ExtArgs["result"]["tSCustomMessage"]>;
}

Type Parameters