import { Milliseconds, PercentageOutOfOne, PriceInteger } from '..'; export interface Coupon { /** Space-less, uppercase unique coupon name. */ name: CouponName; /** Discount price in USD (int). */ discountPriceUSD?: PriceInteger; /** Discount percentage out of 1. */ discountPercentUSD?: PercentageOutOfOne; /** Start timestamp for coupon. */ validStarting?: Milliseconds; /** Expiration timestamp for coupon. */ validUntil?: Milliseconds; } export declare type CouponName = string;