/*! * Copyright Adaptavist 2022 (c) All rights reserved */ import { LabelV1AsResponse } from "../definitions/LabelV1AsResponse"; import { ContentTemplateBodyAsResponse } from "../definitions/ContentTemplateBodyAsResponse"; import { GenericLinksAsResponse } from "../definitions/GenericLinksAsResponse"; export interface BlueprintTemplateAsResponse { templateId: number; originalTemplate: { pluginKey: string; moduleKey: string; }; referencingBlueprint: string; name: string; description: string; space?: { [x: string]: any; }; labels: Array; templateType: string; editorVersion?: string; body?: ContentTemplateBodyAsResponse; _expandable?: { body?: string; }; _links: GenericLinksAsResponse; } //# sourceMappingURL=BlueprintTemplateAsResponse.d.ts.map