Files
ISA-Frontend/apps/shared/modals/purchase-options-modal/src/lib/purchase-options-modal.data.ts
Nino Righi 98e963d782 Merged PR 1574: #4160 Hotfix Preselect InStore PurchasingOption Tile
#4160 Hotfix Preselect InStore PurchasingOption Tile
2023-07-06 14:34:42 +00:00

13 lines
428 B
TypeScript

import { ItemDTO } from '@swagger/cat';
import { ShoppingCartItemDTO, BranchDTO } from '@swagger/checkout';
import { ActionType, PurchaseOption } from './store';
export interface PurchaseOptionsModalData {
processId: number;
type: ActionType;
items: Array<ItemDTO | ShoppingCartItemDTO>;
pickupBranch?: BranchDTO;
inStoreBranch?: BranchDTO;
preSelectOption?: { option: PurchaseOption; showOptionOnly?: boolean };
}