Class PricingAddress
A class for an input object address
Inheritance
System.Object
PricingAddress
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Simplic.Logistics.Pricing
Assembly: Simplic.Logistics.Pricing.dll
Syntax
public class PricingAddress
Properties
| Improve this Doc View SourceCity
Gets or sets the city
Declaration
public string City { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ContactId
Gets or sets the actual contact id
Declaration
public long ContactId { get; set; }
Property Value
Type | Description |
---|---|
System.Int64 |
CountryIso
Gets or sets the country iso
Declaration
public string CountryIso { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Id
Gets or sets the id
Declaration
public Guid Id { get; set; }
Property Value
Type | Description |
---|---|
System.Guid |
Latitude
Gets or sets the latitude
Declaration
public double Latitude { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Longitude
Gets or sets the longitude
Declaration
public double Longitude { get; set; }
Property Value
Type | Description |
---|---|
System.Double |
Name
Gets or sets the name
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Street
Gets or sets the street
Declaration
public string Street { get; set; }
Property Value
Type | Description |
---|---|
System.String |
ZipCode
Gets or sets the zipcode
Declaration
public string ZipCode { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Zones
Gets or sets a list of zones, which are assigned to the actual address
Declaration
public IDictionary<string, string> Zones { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.IDictionary<System.String, System.String> |