Interface UpdateContentBlockBody

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

Hierarchy

Properties

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