interface ProjectTemplateModel {
    archetype?: ProjectArchetype;
    defaultBoardView?: string;
    description?: string;
    liveTemplateProjectIdReference?: number;
    name?: string;
    projectTemplateKey?: ProjectTemplateKey;
    snapshotTemplate?: {
        [key: string]: unknown;
    };
    templateGenerationOptions?: CustomTemplateOptions;
    type?: "SNAPSHOT" | "LIVE";
}

Properties

archetype?: ProjectArchetype
defaultBoardView?: string
description?: string
liveTemplateProjectIdReference?: number
name?: string
projectTemplateKey?: ProjectTemplateKey
snapshotTemplate?: {
    [key: string]: unknown;
}
templateGenerationOptions?: CustomTemplateOptions
type?: "SNAPSHOT" | "LIVE"