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.

11 lines (10 loc) 313 B
import { PaymentMethodType, ValidateType, VariantType } from "../../../constant"; interface ICreateOrderData { customerInfo: string; variantId: VariantType; userNotes: string; accountId: number; paymentMethod: PaymentMethodType; validate: ValidateType; } export type { ICreateOrderData };