UpdateInboxReplierOptions constructor

UpdateInboxReplierOptions({
  1. required String inboxId,
  2. String? name,
  3. required UpdateInboxReplierOptionsFieldEnum field,
  4. required String match,
  5. String? replyTo,
  6. String? subject,
  7. String? from,
  8. String? charset,
  9. bool? isHTML,
  10. bool? ignoreReplyTo,
  11. String? body,
  12. String? templateId,
  13. Map<String, Object>? templateVariables = const {},
})

Returns a new UpdateInboxReplierOptions instance.

Implementation

UpdateInboxReplierOptions({
  required this.inboxId,
  this.name,
  required this.field,
  required this.match,
  this.replyTo,
  this.subject,
  this.from,
  this.charset,
  this.isHTML,
  this.ignoreReplyTo,
  this.body,
  this.templateId,
  this.templateVariables = const {},
});