@idfy/sdk
Version:
Node.js SDK for Idfy REST API
17 lines (16 loc) • 546 B
TypeScript
import { Email } from './Email';
import { SMS } from './SMS';
export interface SignRequest {
/**
* Determines if you want to include the unsigned main document as an attachment to the email notification.
*/
includeOriginalFile?: boolean;
/**
* A list of custom email texts to use for the notification. Default texts will be used if not specified.
*/
email?: Email[];
/**
* A list of custom SMS texts to use for the notification. Default texts will be used if not specified.
*/
sms?: SMS[];
}