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.
25 lines (24 loc) • 665 B
TypeScript
import type { IdentificationExtraData, Result } from "..";
import { TicketData } from "../ticket";
type Identification = {
result: Result;
id: number;
is_primary: number;
type: number;
country_of_issue: string;
country_of_residence: string;
number: string;
issue_date: string;
expiry_date: string;
status: number;
verification_status: number;
original_source_id: string;
server_date: string;
date_utc: string;
client_date: string;
update_date_utc: string;
extra_data: IdentificationExtraData;
custom_field: Record<string, unknown>;
ticket: TicketData[];
};
export type { Identification };