Interface IModel

interface IModel {
    meta: Meta;
    addChildrenToStore(): void;
    getClass(): string;
    getParent(): undefined | IModel;
    getType(): string;
    getUrl(): string;
    id(): string;
    parse(json: Record<string, unknown>): boolean;
    reload(reloadAll?: boolean): Promise<boolean>;
    removeChild(child: IModel): void;
    setParent(parent?: IModel): void;
    toJSON(customKeys?: string[]): JSONObject;
}

Hierarchy (View Summary)

Properties

meta: Meta

Methods