UNPKG

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) 707 B
interface ICreatePhoneData { type?: string; countryCode: string; number: string; } interface IUpdatePhoneData { id: number; number: string; } interface IDeletePhoneData { id: number; } interface IValidatePhoneData { number: string; } interface IVerifyPhoneData { number: string; } interface ISendPhoneOTPData { number: string; authorizationRequestType: number; } interface IConfirmPhoneData { number: string; verificationCode: string; } interface IMakePhonePrimaryData { id: number; } export type { ICreatePhoneData, IUpdatePhoneData, IDeletePhoneData, IValidatePhoneData, IVerifyPhoneData, ISendPhoneOTPData, IConfirmPhoneData, IMakePhonePrimaryData, };