Interface CreateContentBlockBody

interface CreateContentBlockBody {
    content: string;
    description?: string;
    name: string;
    state?: "active" | "draft";
    tags?: string[];
}

Properties

content: string
description?: string
name: string
state?: "active" | "draft"
tags?: string[]