Type Alias ReportTemplateResponse

type ReportTemplateResponse = {
    createdAt?: string | null;
    createdBy?: string | null;
    description?: string | null;
    id?: string | null;
    metadataVersion?: number;
    name?: string | null;
    ownerId?: string | null;
    sourceAppId?: string | null;
    sourceAppName?: string | null;
    type?: "excel" | "pixelPerfect" | "html" | "powerPoint" | "word";
    updatedAt?: string | null;
    updatedBy?: string | null;
}
Index
createdAt?: string | null

The date and time when the template was created.

createdBy?: string | null

The id of the user who created the template.

description?: string | null

Template description

id?: string | null

The template ID

metadataVersion?: number

The template metadata version

name?: string | null

Template name

ownerId?: string | null

The user that this template is scoped to.

sourceAppId?: string | null

The id of the app that this template is using as data source.

sourceAppName?: string | null

The name of the app that this template is using as data source.

type?: "excel" | "pixelPerfect" | "html" | "powerPoint" | "word"

Template type

updatedAt?: string | null

The date and time when the template was last updated.

updatedBy?: string | null

The id of the user who last updated the template.