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.
17 lines (16 loc) • 383 B
TypeScript
type GroupUser = {
id: number;
user_id: number;
role: number;
membership_status: number;
name: string;
email_address: string;
phone_number: string;
country_code: string;
original_source_id: string;
server_date: string;
date_utc: string;
update_date_utc: string;
custom_field: Record<string, unknown>;
};
export type { GroupUser };