Access point details

AccessPoint

interface AccessPoint {
    accessibilityAttributes?: AccessibilityAttributes;
    accessPointId?: string;
    address?: Address;
    assistanceType?: AccessPointAssistanceTypeEnum;
    exceptionOperatingHours?: ExceptionOperatingHours[];
    name?: string;
    score?: string;
    standardOperatingHours?: {
        [key: string]: OperatingHours;
    };
    timezone?: string;
    type?: AccessPointType;
}

Properties

accessibilityAttributes?: AccessibilityAttributes

AccessPoint

accessPointId?: string

Unique identifier for the access point

AccessPoint

address?: Address

AccessPoint

AccessPoint

exceptionOperatingHours?: ExceptionOperatingHours[]

AccessPoint

name?: string

Name of entity (store/hub etc) where this access point is located

AccessPoint

score?: string

The score of access point, based on proximity to postal code and sorting preference. This can be used to sort access point results on shipper's end.

AccessPoint

standardOperatingHours?: {
    [key: string]: OperatingHours;
}

Map of day of the week to operating hours of that day

AccessPoint

timezone?: string

Timezone of access point

AccessPoint

AccessPoint