export interface Product { productReference?: string; salesDate?: string; } export interface Customer { applicationName?: string; userName?: string; title?: string; firstName?: string; lastName?: string; city?: string; address?: string; zipPostalCode?: string; phoneNumber?: string; countryCode?: string; } export interface CreateWarrantyRequest { customer: Customer; products: Product[]; fileId?: string; }