Class Address
Represents the postal address of a location.
Inheritance
System.Object
Address
Namespace: Algenta.Colectica.Model.Ddi
Assembly: Algenta.Colectica.Model.Ddi.dll
Syntax
public class Address : object
Properties
AddressType
Gets the type of address (e.g., home, office, etc.). The value may come from a controlled vocabulary.
Declaration
public CodeValue AddressType { get; set; }
Property Value
Type | Description |
---|---|
CodeValue |
City
Gets or sets the city.
Declaration
public string City { get; set; }
Property Value
Type | Description |
---|---|
System.String | The city. |
Country
The country
Declaration
public string Country { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Line
Gets or sets the street address.
Declaration
public string Line { get; set; }
Property Value
Type | Description |
---|---|
System.String | The line. |
Postal
Gets or sets the postal code.
Declaration
public string Postal { get; set; }
Property Value
Type | Description |
---|---|
System.String | The postal code. |
State
Gets or sets the state.
Declaration
public string State { get; set; }
Property Value
Type | Description |
---|---|
System.String | The state. |