interface ContentBody {
    _expandable?: {
        content?: string;
        embeddedContent?: string;
        mediaToken?: string;
        webresource?: string;
    } & {
        [key: string]: unknown;
    };
    _links?: GenericLinks;
    embeddedContent?: EmbeddedContent[];
    mediaToken?: {
        collectionIds?: string[];
        contentId?: string;
        expiryDateTime?: string;
        fileIds?: string[];
        token?: string;
    } & {
        [key: string]: unknown;
    };
    representation:
        | "raw"
        | "view"
        | "storage"
        | "export_view"
        | "styled_view"
        | "editor"
        | "editor2"
        | "anonymous_export_view"
        | "wiki"
        | "atlas_doc_format";
    value: string;
    webresource?: WebResourceDependencies;
}

Hierarchy

  • Record<string, unknown>
    • ContentBody

Properties

_expandable?: {
    content?: string;
    embeddedContent?: string;
    mediaToken?: string;
    webresource?: string;
} & {
    [key: string]: unknown;
}
_links?: GenericLinks
embeddedContent?: EmbeddedContent[]
mediaToken?: {
    collectionIds?: string[];
    contentId?: string;
    expiryDateTime?: string;
    fileIds?: string[];
    token?: string;
} & {
    [key: string]: unknown;
}
representation:
    | "raw"
    | "view"
    | "storage"
    | "export_view"
    | "styled_view"
    | "editor"
    | "editor2"
    | "anonymous_export_view"
    | "wiki"
    | "atlas_doc_format"
value: string