Interface IApiAddress
Represents an address.
Namespace: PAccess.PartnerAgents.Api.Contracts
Assembly: PAccess.PartnerAgents.Api.Contracts.dll
Syntax
public interface IApiAddress
Properties
View SourceCity
Gets or sets the city or town.
Declaration
string City { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Country
Gets or sets the country. This must be in ISO 3166-1 alpha-2 format.
Declaration
string Country { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
County
Gets or sets the county or region.
Declaration
string County { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
HouseNameNumber
Gets or sets the house name or number.
Declaration
string HouseNameNumber { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Locality
Gets or sets the locality or district.
Declaration
string Locality { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Postcode
Gets or sets the postcode.
Declaration
string Postcode { get; set; }
Property Value
| Type | Description |
|---|---|
| string |
Street
Gets or sets the street name.
Declaration
string Street { get; set; }
Property Value
| Type | Description |
|---|---|
| string |