UNPKG

signicat-client-ts

Version:

Community TypeScript client for Signicat Authentication REST API with automatic token management

18 lines (17 loc) 327 B
/** * The subject's National Identity Number information. */ export type Nin = { /** * Gets the Value from NIN. */ value?: string | null; /** * Gets the IssuingCountry from NIN. */ issuingCountry?: string | null; /** * Gets the Type from NIN. */ type?: string | null; };