Type Alias $TWSMessageEmbedPayload<ExtArgs>

$TWSMessageEmbedPayload<ExtArgs>: {
    composites: {};
    name: "TWSMessageEmbed";
    objects: {
        fields: $TWSEmbedFieldPayload<ExtArgs>[];
        twsCustomMessage: $TWSCustomMessagePayload<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;
        twsCustomMessageId: string;
        url: string | null;
    }, ExtArgs["result"]["tWSMessageEmbed"]>;
}

Type Parameters