Interface SiteInterface

Objects that are stored as resources in the database inherit from this interface.

interface SiteInterface {
    draftId: number;
    id: number;
    name: string;
    parentId: number;
}

Hierarchy (view full)

Properties

Properties

draftId: number

ID of the draft site created from this site.

id: number

Entity id number

name: string

The name of the site.

parentId: number

ID of the published site from which this draft site is created.

Generated using TypeDoc