TemplateView

data class TemplateView(val id: String, val name: String, val subject: String? = null, val contentMarkdown: String, val disabled: Boolean, val lang: Language? = null, val lastUpdatedBy: Did, val createdAt: Timestamp, val updatedAt: Timestamp)

Parameters

name

Name of the template.

subject

Content of the template, can contain markdown and variable placeholders.

contentMarkdown

Subject of the message, used in emails.

lang

Message language.

lastUpdatedBy

DID of the user who last updated the template.

Constructors

Link copied to clipboard
constructor(id: String, name: String, subject: String? = null, contentMarkdown: String, disabled: Boolean, lang: Language? = null, lastUpdatedBy: Did, createdAt: Timestamp, updatedAt: Timestamp)

Properties

Link copied to clipboard

Subject of the message, used in emails.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val id: String
Link copied to clipboard
val lang: Language? = null

Message language.

Link copied to clipboard

DID of the user who last updated the template.

Link copied to clipboard

Name of the template.

Link copied to clipboard
val subject: String? = null

Content of the template, can contain markdown and variable placeholders.

Link copied to clipboard