export type IkasSalesChannel = { id: string; name: string; priceListId: string | null; stockLocations: IkasSalesChannelStockLocation[] | null; paymentGateways: IkasSalesChannelPaymentGateway[] | null; }; export type IkasSalesChannelStockLocation = { id: string; order: number; }; export type IkasSalesChannelPaymentGateway = { id: string; order: number; };