EmailMessageV1Schema constructor

EmailMessageV1Schema()

Implementation

EmailMessageV1Schema() : super() {
  withOptionalProperty('from', TypeCode.String);
  withOptionalProperty('cc', TypeCode.String);
  withOptionalProperty('bcc', TypeCode.String);
  withOptionalProperty('to', TypeCode.String);
  withOptionalProperty('reply_to', TypeCode.String);
  withOptionalProperty('subject', null);
  withOptionalProperty('text', null);
  withOptionalProperty('html', null);
}