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.
26 lines (25 loc) • 656 B
TypeScript
import { DeviceExtendedInfo, GeoCoordinates } from "..";
type Device = {
id: number;
type: number;
brand: string;
os: string;
unique_id: string;
installation_id: string;
extended_info: DeviceExtendedInfo;
status: number;
verification_status: number;
is_online: boolean;
encryption_key: string;
application_version: string;
serial_number: string;
source_ip_address: string;
geo_coordinates: GeoCoordinates;
original_source_id: string;
server_date: string;
date_utc: string;
client_date: string;
update_date_utc: string;
client_time_zone: string;
};
export type { Device };