import { CheckoutDataShippingInformationExtensionInterface } from './checkoutDataShippingInformationExtensionInterface'; import { FrameworkAttributeInterface } from './frameworkAttributeInterface'; import { QuoteDataAddressInterface } from './quoteDataAddressInterface'; export interface CheckoutDataShippingInformationInterface { shippingAddress: QuoteDataAddressInterface; billingAddress?: QuoteDataAddressInterface; shippingMethodCode: string; shippingCarrierCode: string; extensionAttributes?: CheckoutDataShippingInformationExtensionInterface; customAttributes?: Array; }