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.
18 lines (17 loc) • 366 B
TypeScript
type LotteryTicket = {
id: number;
order_id: number;
ticket_no: string;
pincode: string;
serial_number: string;
issue_no: string;
issue_name: string;
draw_date?: Date;
expiry_date?: Date;
mobile: string;
email: string;
qr: string;
qr_type: number;
usage_instructions: string;
};
export type { LotteryTicket };