UNPKG

pip-services-email-node

Version:
13 lines (11 loc) 469 B
import { ObjectSchema } from 'pip-services3-commons-node'; import { TypeCode } from 'pip-services3-commons-node'; export class EmailRecipientV1Schema extends ObjectSchema { public constructor() { super(); this.withRequiredProperty('id', TypeCode.String); this.withOptionalProperty('name', TypeCode.String); this.withOptionalProperty('email', TypeCode.String); this.withOptionalProperty('language', TypeCode.String); } }