Interface ContentTypeTemplateProps

interface ContentTypeTemplateProps {
    basedOn?: {
        contentType: Link<"ContentType">;
        environment: Link<"Environment">;
        space: Link<"Space">;
    };
    description: string;
    displayField: string;
    fields: ContentFields<KeyValueMap>[];
    hints?: Hint[];
    id: string;
    metadata?: ContentTypeMetadata;
    name: string;
}

Hierarchy

Properties

basedOn?: {
    contentType: Link<"ContentType">;
    environment: Link<"Environment">;
    space: Link<"Space">;
}
description: string
displayField: string

Field used as the main display field for Entries

All the fields contained in this Content Type

hints?: Hint[]
id: string
name: string