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.
31 lines (30 loc) • 742 B
TypeScript
interface ICreateDeviceData {
deviceVerificationStatus: number;
installationID: string;
authenticationType?: number;
code?: string;
}
interface IUpdateDeviceData {
id: number;
deviceStatus?: number;
deviceVerificationStatus?: number;
deviceIsOnline?: boolean;
token?: string;
userId?: number;
}
interface IDeleteDeviceData {
id: number;
}
interface IVerifyDeviceData {
id: number;
authenticationType: number;
}
interface IConfirmDeviceData {
id: number;
code: string;
authenticationType: number;
}
interface ILogoutDeviceData {
id: number;
}
export type { ICreateDeviceData, IUpdateDeviceData, IDeleteDeviceData, IVerifyDeviceData, IConfirmDeviceData, ILogoutDeviceData, };