UNPKG

ggez-banking-sdk

Version:

A Node.js package to handle GGEZ Banking API endpoints, Simplify the process of managing CRUD operations with this efficient and easy-to-use package.

18 lines (17 loc) 485 B
interface IIdentificationData { type: number; countryOfIssue: string; countryOfResidence: string; issueDate: string; expiryDate: string; number: string; } interface ICreateIdentificationData extends IIdentificationData { } interface IUpdateIdentificationData extends IIdentificationData { id: number; } interface IDeleteIdentificationData { id: number; } export type { ICreateIdentificationData, IUpdateIdentificationData, IDeleteIdentificationData, };