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.
12 lines (11 loc) • 393 B
TypeScript
import { IGeoCoordinates } from "./interface";
import { PaymentMethodType, ValidateType, VariantType } from "../constants";
export interface IOrderInterface {
customerInfo: string;
variantId: VariantType;
userNotes: string | null;
accountId: number | null;
paymentMethod: PaymentMethodType | null;
validate: ValidateType;
geoCoordinates?: IGeoCoordinates | null;
}