PickupLocationSortInput
PickupLocationSortInput specifies attribute to use for sorting search results and indicates whether the results are sorted in ascending or descending order.
type PickupLocationSortInput = {
city?: InputMaybe<SortEnum>; /** Name of the contact person. */
contact_name?: InputMaybe<SortEnum>; /** Id of the country in two letters. */
country_id?: InputMaybe<SortEnum>; /** Description of the pickup location. */
description?: InputMaybe<SortEnum>; /** Distance to the address, requested by distance filter. Applicable only with distance filter. If distance sort order is present, all other sort orders will be ignored. */
distance?: InputMaybe<SortEnum>; /** Contact email of the pickup location. */
email?: InputMaybe<SortEnum>; /** Contact fax of the pickup location. */
fax?: InputMaybe<SortEnum>; /** Geographic latitude where pickup location is placed. */
latitude?: InputMaybe<SortEnum>; /** Geographic longitude where pickup location is placed. */
longitude?: InputMaybe<SortEnum>; /** The pickup location name. Customer use this to identify the pickup location. */
name?: InputMaybe<SortEnum>; /** Contact phone number of the pickup location. */
phone?: InputMaybe<SortEnum>; /** A code assigned to pickup location to identify the source. */
pickup_location_code?: InputMaybe<SortEnum>; /** Postcode where pickup location is placed. */
postcode?: InputMaybe<SortEnum>; /** Name of the region. */
region?: InputMaybe<SortEnum>; /** Id of the region. */
region_id?: InputMaybe<SortEnum>; /** Street where pickup location is placed. */
street?: InputMaybe<SortEnum>;
};