PointOfServiceStock
Representation of a Point Of Service Stock PointOfServiceStock
export interface PointOfServiceStock {
'address'?: Address;
'description'?: string;
'displayName'?: string;
'distanceKm'?: number;
'features'?: {
[key: string]: string;
};
'formattedDistance'?: string;
'geoPoint'?: GeoPoint;
'mapIcon'?: Image;
'name'?: string;
'openingHours'?: OpeningSchedule;
'pickUpInStoreInstructions'?: string;
'stockInfo'?: Stock;
'storeContent'?: string;
'storeImages'?: Array<Image>;
'url'?: string;
'warehouseCodes'?: Array<string>;
}Properties
| Name | Required | Type | Description |
|---|---|---|---|
address | Optional | Address | {Address} PointOfServiceStock |
description | Optional | string | Description of the point of service {string} PointOfServiceStock |
displayName | Optional | string | Display name of the point of service {string} PointOfServiceStock |
distanceKm | Optional | number | Distance to the point of service as number value {number} PointOfServiceStock |
features | Optional | { [key: string]: string; } | List of features for a given point of service {{ [key: string]: string; }} PointOfServiceStock |
formattedDistance | Optional | string | Distance to the point of service as text value {string} PointOfServiceStock |
geoPoint | Optional | GeoPoint | {GeoPoint} PointOfServiceStock |
mapIcon | Optional | Image | {Image} PointOfServiceStock |
name | Optional | string | Name of the point of service {string} PointOfServiceStock |
openingHours | Optional | OpeningSchedule | {OpeningSchedule} PointOfServiceStock |
pickUpInStoreInstructions | Optional | string | Instructions used for picking up an order in store {string} PointOfServiceStock |
stockInfo | Optional | Stock | {Stock} PointOfServiceStock |
storeContent | Optional | string | Store content of given point of service {string} PointOfServiceStock |
storeImages | Optional | Array<Image> | Collection of images associated with a point of service {Array<Image>} PointOfServiceStock |
url | Optional | string | Url address of the point of service {string} PointOfServiceStock |
warehouseCodes | Optional | Array<string> | {Array<string>} PointOfServiceStock |