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
| Name | Required | Type | Description |
|---|---|---|---|
address | Optional | Address | {Address} PointOfService |
description | Optional | string | Description of the point of service {string} PointOfService |
displayName | Optional | string | Display name of the point of service {string} PointOfService |
distanceKm | Optional | number | Distance to the point of service as number value {number} PointOfService |
features | Optional | { [key: string]: string; } | List of features for a given point of service {{ [key: string]: string; }} PointOfService |
formattedDistance | Optional | string | Distance to the point of service as text value {string} PointOfService |
geoPoint | Optional | GeoPoint | {GeoPoint} PointOfService |
mapIcon | Optional | Image | {Image} PointOfService |
name | Optional | string | Name of the point of service {string} PointOfService |
openingHours | Optional | OpeningSchedule | {OpeningSchedule} PointOfService |
pickUpInStoreInstructions | Optional | string | Instructions used for picking up an order in store {string} PointOfService |
storeContent | Optional | string | Store content of given point of service {string} PointOfService |
storeImages | Optional | Array<Image> | Collection of images associated with a point of service {Array<Image>} PointOfService |
url | Optional | string | Url address of the point of service {string} PointOfService |
warehouseCodes | Optional | Array<string> | {Array<string>} PointOfService |