flamingo.me/flamingo-commerce/v3@v3.11.0/cart/interfaces/graphql/dto/paymentSelection.go (about) 1 package dto 2 3 import ( 4 "flamingo.me/flamingo-commerce/v3/cart/domain/cart" 5 "flamingo.me/flamingo-commerce/v3/price/domain" 6 ) 7 8 // PaymentSelectionSplit is a GraphQL specific representation of `cart.PaymentSplit` 9 type PaymentSelectionSplit struct { 10 Qualifier cart.SplitQualifier 11 Charge domain.Charge 12 }