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.
21 lines (20 loc) • 533 B
TypeScript
interface ICheckForgetPasswordData {
email: string;
phone: string;
}
interface IValidateForgetPasswordData {
additional_security_type: number;
additional_security_value: string;
type: number;
phone?: string;
email?: string;
}
interface IConfirmForgetPasswordData {
password: string;
verification_code: string;
type: number;
user_id: number;
sub_entity: number;
sub_entity_id: number;
}
export { ICheckForgetPasswordData, IValidateForgetPasswordData, IConfirmForgetPasswordData, };