GitHub

CartDeliveryGroup

import { CartDeliveryGroup } from '@daffodil/driver/shopify'

Information about the options available for one or more line items to be delivered to a specific address.

type CartDeliveryGroup = {
    __typename?: 'CartDeliveryGroup';
    cartLines: BaseCartLineConnection;
    deliveryAddress: MailingAddress;
    deliveryOptions: Array<CartDeliveryOption>;
    groupType: CartDeliveryGroupType;
    id: Scalars['ID']['output'];
    selectedDeliveryOption?: Maybe<CartDeliveryOption>;
}