import { Currency } from "../enums/Currency.js"; import { Buyer } from "./Buyer.js"; import { Product } from "./Product.js"; export interface Order { extOrderId?: string; notifyUrl?: string; customerIp: string; validityTime?: number; description: string; currencyCode: Currency; totalAmount: number; continueUrl: string; buyer?: Buyer; products: Product[]; }