/** * Generated by orval v8.8.0 🍺 * Do not edit manually. * OpenAPI spec version: 0.0.0 */ import type { State9b5Enum } from "./state9b5Enum"; export interface ZasilkovnaPacketRead { readonly id: number; readonly created_at: Date; /** * Číslo zásilky v Packetě (vraceno od API od Packety) * @minimum -2147483648 * @maximum 2147483647 * @nullable */ packet_id?: number | null; /** * Čárový kód zásilky od Packety * @nullable */ readonly barcode: string | null; readonly state: State9b5Enum; /** Hmotnost zásilky v gramech */ readonly weight: number; /** Seznam 2 routing stringů pro vrácení zásilky */ readonly return_routing: unknown | null; }