19 lines
456 B
TypeScript
19 lines
456 B
TypeScript
import type {ShipmentTypeData} from "~/services/dto/shipment-type-data";
|
|
|
|
export interface BovinShipmentData {
|
|
id: number
|
|
nbBovinSend: number | null
|
|
shipment?: string | null
|
|
shipmentType?: ShipmentTypeData | null
|
|
}
|
|
|
|
export type ShipmentBovinePayload = {
|
|
nbBovinSend: number
|
|
shipment: string
|
|
shipmentType: string
|
|
}
|
|
|
|
export type BovinShipmentListResponse =
|
|
| BovinShipmentData[]
|
|
| { 'hydra:member'?: BovinShipmentData[] }
|