CommunicationUpdateTemplateInput constructor
Implementation
@JsonSerializable(includeIfNull: false)
const factory CommunicationUpdateTemplateInput({
/// ID of the template to be updated.
required String id,
/// Name of the template.
String? name,
/// Message language.
String? lang,
/// Content of the template, markdown supported, can contain variable placeholders.
String? contentMarkdown,
/// Subject of the message, used in emails.
String? subject,
/// DID of the user who is updating the template.
String? updatedBy,
bool? disabled,
Map<String, dynamic>? $unknown,
}) = _CommunicationUpdateTemplateInput;