UNPKG

pip-services-email-node

Version:
17 lines (15 loc) 673 B
import { ObjectSchema } from 'pip-services3-commons-node'; import { TypeCode } from 'pip-services3-commons-node'; export class EmailMessageV1Schema extends ObjectSchema { public constructor() { super(); this.withOptionalProperty('from', TypeCode.String); this.withOptionalProperty('cc', TypeCode.String); this.withOptionalProperty('bcc', TypeCode.String); this.withOptionalProperty('to', TypeCode.String); this.withOptionalProperty('reply_to', TypeCode.String); this.withOptionalProperty('subject', null); this.withOptionalProperty('text', null); this.withOptionalProperty('html', null); } }