ekyc

Electronic KYC process with uploading ID document using OAuth 2.1 (experimental)
Log | Files | Refs | README | LICENSE

id_info.ts (232B)


      1 export class IDInfo {
      2   constructor(
      3     readonly firstName: string,
      4     readonly lastName: string,
      5     readonly birthDate: Date,
      6     readonly sex: string,
      7     readonly nationality: string,
      8     readonly country: string,
      9   ) {
     10   }
     11 }