Alokai

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

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

Referenced Types

On this page