UNPKG

signicat-client-ts

Version:

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

54 lines (53 loc) 1.26 kB
/** * The session's prefilled input information (it is required at least one value). */ export type PrefilledInput = { /** * The National Identity Number of the prefilled input. */ nin?: string | null; /** * The issuing country of the National Identity Number. */ ninIssuingCountry?: string | null; /** * The mobile number of the prefilled input. */ mobile?: string | null; /** * The email of the prefilled input. */ email?: string | null; /** * The user name of the prefilled input. */ userName?: string | null; /** * The date of birth of the prefilled input. */ dateOfBirth?: string | null; /** * The device ID. */ deviceId?: string | null; /** * The first name of the prefilled input. */ firstName?: string | null; /** * The last name of the prefilled input. */ lastName?: string | null; /** * The bank account number of the prefilled input. */ bankAccountNumber?: string | null; /** * The organisation of the prefilled input. */ organisation?: string | null; /** * MitID app type for mobile devices. */ mitidAppType?: string | null; };