This object is used to update content templates.

interface UpdateContentTemplate {
    body: ContentBodyCreate;
    description?: string;
    labels?: Models.Label[];
    name: string;
    space?: {
        key: string;
    };
    templateId: string;
    templateType: string;
}

Hierarchy (view full)

Properties

description?: string

A description of the template.

labels?: Models.Label[]

Labels for the template.

name: string

The name of the template. Set to the current name if this field is not being updated.

space?: {
    key: string;
}

The key for the space of the template. Required if the template is a space template. Set this to the current space.key.

Type declaration

  • key: string
templateId: string

The ID of the template being updated.

templateType: string

The type of the template. Set to page.

Generated using TypeDoc v0.25.12