export interface ActiveProductsInterface {
    success: boolean,
    data: {
        products: [
            {
                auction_id: number,
                payment_status: string,
                create_ts: string,
                end_time_ts: string,
                ndc: string,
                name: string,
                strength: string,
                package_size: number,
                package_size_um: string,
                allocation: number,
                allocation_type: null,
                supplier_product_id: string,
                quantity: number,
                start_price: number,
                minimum_price: number,
                product_id: number,
                username: string,
                shop_active: number,
                item_expire_date_ts: string | Date,
                adjustedAmount: null,
                credit_id: null,
                hasCredit: string,
                creditAmount: null,
                restricted: string,
                min_purchase_quantity: number,
                creation_date: string,
                ndc_level_alloc_enabled: number,
                is_refrigerated: number,
                is_hazardous: number
            },
        ],
        total: number,
        uniqueEndDates: string[],
        isPrimeSupplier: boolean
    },
}
