interface CustomEntry {
    attachments: CustomEntryAttachment[];
    components: Component[];
    entryType: "custom";
    externalId: null | string;
    title: string;
    type: null | string;
    [k: string]: unknown;
}

Indexable

[k: string]: unknown

Properties

attachments: CustomEntryAttachment[]
components: Component[]
entryType: "custom"
externalId: null | string
title: string
type: null | string

Generated using TypeDoc