1// Code generated by cmd/lexgen (see Makefile's lexgen); DO NOT EDIT.
2
3package ozone
4
5// schema: tools.ozone.communication.defs
6
7// CommunicationDefs_TemplateView is a "templateView" in the tools.ozone.communication.defs schema.
8type CommunicationDefs_TemplateView struct {
9 // contentMarkdown: Subject of the message, used in emails.
10 ContentMarkdown string `json:"contentMarkdown" cborgen:"contentMarkdown"`
11 CreatedAt string `json:"createdAt" cborgen:"createdAt"`
12 Disabled bool `json:"disabled" cborgen:"disabled"`
13 Id string `json:"id" cborgen:"id"`
14 // lang: Message language.
15 Lang *string `json:"lang,omitempty" cborgen:"lang,omitempty"`
16 // lastUpdatedBy: DID of the user who last updated the template.
17 LastUpdatedBy string `json:"lastUpdatedBy" cborgen:"lastUpdatedBy"`
18 // name: Name of the template.
19 Name string `json:"name" cborgen:"name"`
20 // subject: Content of the template, can contain markdown and variable placeholders.
21 Subject *string `json:"subject,omitempty" cborgen:"subject,omitempty"`
22 UpdatedAt string `json:"updatedAt" cborgen:"updatedAt"`
23}