import { IkasCart } from "../cart"; import { IkasLocalizedOrderAddress } from "../order/address/localized"; import { IkasPaymentGateway } from "../payment-gateway"; export type IkasCheckout = { appliedCouponCode?: string | null; selectedPaymentGateway?: IkasPaymentGateway | null; masterPassPaymentGateway?: IkasPaymentGateway | null; billingAddress: IkasLocalizedOrderAddress | null; shippingAddress: IkasLocalizedOrderAddress | null; } & IkasCart;