mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
20 lines
435 B
TypeScript
20 lines
435 B
TypeScript
/* tslint:disable */
|
|
import { PriceDTO } from './price-dto';
|
|
export interface AvailabilityRequestDTO {
|
|
availabilityReference?: string;
|
|
branchNumber?: string;
|
|
ean?: string;
|
|
estimatedShipping?: string;
|
|
filialNr?: string;
|
|
itemId?: string;
|
|
name?: string;
|
|
orderCode?: string;
|
|
preBook?: boolean;
|
|
price?: PriceDTO;
|
|
qty: number;
|
|
shopId?: number;
|
|
ssc?: string;
|
|
supplier?: string;
|
|
supplierProductNumber?: string;
|
|
}
|