import { Price } from '../order/Price';
import { VoucherValidity } from './common/VoucherValidity';
/** Cloud credit */
export interface Credit {
    /** Available credit */
    available_credit: Price;
    /** Credit bill id */
    bill?: string;
    /** Credit description */
    description?: string;
    /** Credit id */
    id: number;
    /** Use credits on following products */
    products?: string[];
    /** Total credit */
    total_credit: Price;
    /** Used credit */
    used_credit: Price;
    /** Credit validity */
    validity?: VoucherValidity;
    /** Voucher code */
    voucher?: string;
}
//# sourceMappingURL=Credit.d.ts.map