Table of Contents

Class ServicePoint

Namespace
Dynamicweb.Ecommerce.Cart
Assembly
Dynamicweb.Ecommerce.dll

This is used together with a shipping provider. If it extends ISupportServicePoints.

public sealed class ServicePoint
Inheritance
ServicePoint
Inherited Members

Properties

Address

Address line 1 of the service point.

public string Address { get; set; }

Property Value

string

Address2

Address line 2 of the service point.

public string Address2 { get; set; }

Property Value

string

Agent

Carrier code of the service point. Defines which carrier the service point belongs to.

public string Agent { get; set; }

Property Value

string

CarrierCode

Carrier code of the service point. Defines which carrier the service point belongs to.

public string CarrierCode { get; set; }

Property Value

string

City

City of the service point.

public string City { get; set; }

Property Value

string

Country

Country code of the service point.

public string Country { get; set; }

Property Value

string

Distance

Distance in meters between the service point and the requested location.

public double Distance { get; set; }

Property Value

double

Id

ID of the service point.

public string Id { get; set; }

Property Value

string

InDelivery

Whether or not the service point supports drop off of parcels.

public bool InDelivery { get; set; }

Property Value

bool

Latitude

Latitude of the service point. Together with longitude it defines the coordinates of the service point.

public double Latitude { get; set; }

Property Value

double

Longitude

Longitude of the service point. Together with latitude it defines the coordinates of the service point.

public double Longitude { get; set; }

Property Value

double

Name

Name of the location of the service point.

public string Name { get; set; }

Property Value

string

OpeningHours

Opening hours in which parcels can be picked up at the location.

public IReadOnlyCollection<string> OpeningHours { get; set; }

Property Value

IReadOnlyCollection<string>

OutDelivery

Whether or not the service point supports pickup of parcels.

public bool OutDelivery { get; set; }

Property Value

bool

Zipcode

Zip code of the service point.

public string Zipcode { get; set; }

Property Value

string
To top