Alokai
You are reading the documentation for v7.x and earlier, which is no longer the latest version. Switch to v8.x

PointOfService

Representation of a Point of service PointOfService

export interface PointOfService {
	'address'?: Address;
	'description'?: string;
	'displayName'?: string;
	'distanceKm'?: number;
	'features'?: {
        [key: string]: string;
    };
	'formattedDistance'?: string;
	'geoPoint'?: GeoPoint;
	'mapIcon'?: Image;
	'name'?: string;
	'openingHours'?: OpeningSchedule;
	'pickUpInStoreInstructions'?: string;
	'storeContent'?: string;
	'storeImages'?: Array<Image>;
	'url'?: string;
	'warehouseCodes'?: Array<string>;
}

Properties

NameRequiredTypeDescription
addressOptionalAddress{Address} PointOfService
descriptionOptionalstringDescription of the point of service {string} PointOfService
displayNameOptionalstringDisplay name of the point of service {string} PointOfService
distanceKmOptionalnumberDistance to the point of service as number value {number} PointOfService
featuresOptional{ [key: string]: string; }List of features for a given point of service {{ [key: string]: string; }} PointOfService
formattedDistanceOptionalstringDistance to the point of service as text value {string} PointOfService
geoPointOptionalGeoPoint{GeoPoint} PointOfService
mapIconOptionalImage{Image} PointOfService
nameOptionalstringName of the point of service {string} PointOfService
openingHoursOptionalOpeningSchedule{OpeningSchedule} PointOfService
pickUpInStoreInstructionsOptionalstringInstructions used for picking up an order in store {string} PointOfService
storeContentOptionalstringStore content of given point of service {string} PointOfService
storeImagesOptionalArray<Image>Collection of images associated with a point of service {Array<Image>} PointOfService
urlOptionalstringUrl address of the point of service {string} PointOfService
warehouseCodesOptionalArray<string>{Array<string>} PointOfService

Referenced Types

On this page