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) • 592 B
TypeScript
type Relationship = {
id: number;
entity: number;
entity_id: number;
entity_name: string;
entity_email: string;
entity_phone: string;
on_entity: number;
on_entity_id: number;
on_entity_name: string;
on_entity_email: string;
on_entity_phone: string;
type: number;
status: number;
verification_status: number;
order: number;
original_source_id: string;
server_date: string;
date_utc: string;
client_date: string;
update_date_utc: string;
custom_field: Record<string, unknown>;
};
export type { Relationship };