UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

25 lines (24 loc) 623 B
export declare class ContactDetailsDto { email?: string; email_lang?: string; send_notification_emails?: boolean; phone?: string; } export declare class ExpectedDetailsDto { first_name?: string; last_name?: string; date_of_birth?: string; expected_document_types?: string[]; } export declare class MetadataDto { plan?: string; signup_source?: string; } export declare class CreateEkycSessionDto { workflowId: string; callback: string; vendor_data?: string; metadata?: MetadataDto; contact_details?: ContactDetailsDto; expected_details?: ExpectedDetailsDto; }