import { CheckoutDataTotalsInformationExtensionInterface } from './checkoutDataTotalsInformationExtensionInterface'; import { FrameworkAttributeInterface } from './frameworkAttributeInterface'; import { QuoteDataAddressInterface } from './quoteDataAddressInterface'; export interface CheckoutDataTotalsInformationInterface { address: QuoteDataAddressInterface; shippingMethodCode?: string; shippingCarrierCode?: string; extensionAttributes?: CheckoutDataTotalsInformationExtensionInterface; customAttributes?: Array; }