UpsertTemplateRequest constructor

UpsertTemplateRequest({
  1. String? name,
  2. String? subject,
  3. String? markup,
  4. String? body,
  5. bool? deliveredByClerk,
  6. String? fromEmailName,
  7. String? replyToEmailName,
})

Returns a new UpsertTemplateRequest instance.

Implementation

UpsertTemplateRequest({
  this.name,
  this.subject,
  this.markup,
  this.body,
  this.deliveredByClerk,
  this.fromEmailName,
  this.replyToEmailName,
});