TemplateContentsResponse

data class TemplateContentsResponse(val imports: List<ImportFileResponse>, val interpreter: String, val mainTemplate: String, val schema: String, val template: String)

Files that make up the template contents of a template type.

Constructors

Link copied to clipboard
fun TemplateContentsResponse(imports: List<ImportFileResponse>, interpreter: String, mainTemplate: String, schema: String, template: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

Import files referenced by the main template.

Link copied to clipboard

Which interpreter (python or jinja) should be used during expansion.

Link copied to clipboard

The filename of the mainTemplate

Link copied to clipboard

The contents of the template schema.

Link copied to clipboard

The contents of the main template file.