@signnow/api-client
Version:
SignNow REST Service Wrapper
18 lines (17 loc) • 487 B
TypeScript
import { Authentication } from './authentication';
export interface Invite {
email: string;
role_id: string;
order: number;
auth_method: string;
language?: string;
first_name?: string;
last_name?: string;
prefill_signature_name?: string;
required_preset_signature_name?: string;
force_new_signature?: number;
redirect_uri?: string;
decline_redirect_uri?: string;
redirect_target?: string;
authentication?: Authentication | null;
}