import { QuoteDataAddressInterface } from './quoteDataAddressInterface'; import { QuoteDataPaymentInterface } from './quoteDataPaymentInterface'; export interface CheckoutGuestPaymentInformationManagementV1SavePaymentInformationPostBody { email: string; paymentMethod: QuoteDataPaymentInterface; billingAddress?: QuoteDataAddressInterface; }