@idfy/sdk
Version:
Node.js SDK for Idfy REST API
18 lines (17 loc) • 593 B
TypeScript
import { SignerOverrides } from './SignerOverrides';
export interface ManualReminder {
/**
* Set what kind of reminders to send
*/
notificationSetting: ManualReminder.NotificationSettingEnum;
/**
* Optional: Define the signers that should receive this reminder (if not signed).
* Dictionary with signer id as key, you can ovveride the signer email/phone as value
*/
signers?: {
[key: string]: SignerOverrides;
};
}
export declare namespace ManualReminder {
type NotificationSettingEnum = 'off' | 'sendSms' | 'sendEmail' | 'sendBoth';
}