18 lines
543 B
TypeScript
18 lines
543 B
TypeScript
/**
|
|
* Generated by orval v8.8.0 🍺
|
|
* Do not edit manually.
|
|
* OpenAPI spec version: 0.0.0
|
|
*/
|
|
import type { ShippingMethodEnum } from "./shippingMethodEnum";
|
|
import type { StateF41Enum } from "./stateF41Enum";
|
|
import type { ZasilkovnaPacket } from "./zasilkovnaPacket";
|
|
|
|
export interface OrderCarrier {
|
|
shipping_method?: ShippingMethodEnum;
|
|
readonly state: StateF41Enum;
|
|
readonly zasilkovna: readonly ZasilkovnaPacket[];
|
|
/** @pattern ^-?\d{0,8}(?:\.\d{0,2})?$ */
|
|
readonly shipping_price: string;
|
|
packeta_address_id?: number;
|
|
}
|