import { DomainObject } from "./domain-object"; import { VoucherStatus } from "./all.enum"; import { Currency } from "./currency"; import { Customer } from "./customer"; import { Employee } from "./employee"; import { VoucherTransaction } from "./voucher-transaction"; export declare class Voucher extends DomainObject { VoucherId?: string | undefined; AccessToken?: string | undefined; CardNumber?: string | undefined; CurrentBalance?: number | undefined; InitialAmount?: number | undefined; Status?: VoucherStatus | undefined; ExpiryDate?: Date | undefined; IssuedDate?: Date | undefined; IssuedToEmail?: string | undefined; IssuedToName?: string | undefined; IssuedToPhone?: string | undefined; Note?: string | undefined; CustomerId?: string | undefined; Customer?: Customer | undefined; CurrencyId?: string | undefined; Currency?: Currency | undefined; EmployeeId?: string | undefined; Employee?: Employee | undefined; Transactions?: VoucherTransaction[] | undefined; } //# sourceMappingURL=voucher.d.ts.map