PickupLocations
Top level object returned in a pickup locations search.
type PickupLocations = {
__typename?: 'PickupLocations'; /** An array of pickup locations that match the specific search request. */
items?: Maybe<Array<Maybe<PickupLocation>>>; /** An object that includes the page_info and currentPage values specified in the query. */
page_info?: Maybe<SearchResultPageInfo>; /** The number of products returned. */
total_count?: Maybe<Scalars['Int']['output']>;
};