export interface ShippingMethod { id: number; code: string; name: string; description: string; price: number; estimated_time: string; } export interface Shipment { methods: ShippingMethod[]; } export interface RootObjectShippingMethod { shipments: Shipment[]; }