> ## Documentation Index
> Fetch the complete documentation index at: https://docs.superoffice.com/llms.txt
> Use this file to discover all available pages before exploring further.

# SuperOffice.WebApi.Data.Address

# <a id="SuperOffice_WebApi_Data_Address" /> Class Address

Namespace: [SuperOffice.WebApi.Data](SuperOffice.WebApi.Data.md)\
Assembly: SuperOffice.WebApi.dll

Carrier object for Address.
Street and/or Postal address, in both formatted and structured forms. You only need to modify one of the two for the change to be registered.

```csharp theme={null}
public class Address : Carrier
```

#### Inheritance

[object](https://learn.microsoft.com/dotnet/api/system.object) ←
[Carrier](SuperOffice.WebApi.Data.Carrier.md) ←
[Address](SuperOffice.WebApi.Data.Address.md)

#### Inherited Members

[Carrier.TableRight](SuperOffice.WebApi.Data.Carrier.md#SuperOffice_WebApi_Data_Carrier_TableRight),
[Carrier.FieldProperties](SuperOffice.WebApi.Data.Carrier.md#SuperOffice_WebApi_Data_Carrier_FieldProperties),
[object.ToString()](https://learn.microsoft.com/dotnet/api/system.object.tostring),
[object.Equals(object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object\)),
[object.Equals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.equals#system-object-equals\(system-object-system-object\)),
[object.ReferenceEquals(object, object)](https://learn.microsoft.com/dotnet/api/system.object.referenceequals),
[object.GetHashCode()](https://learn.microsoft.com/dotnet/api/system.object.gethashcode),
[object.GetType()](https://learn.microsoft.com/dotnet/api/system.object.gettype),
[object.MemberwiseClone()](https://learn.microsoft.com/dotnet/api/system.object.memberwiseclone)

## Constructors

### <a id="SuperOffice_WebApi_Data_Address__ctor" /> Address()

Default constructor - defaults any enum props to 0.

```csharp theme={null}
public Address()
```

## Properties

### <a id="SuperOffice_WebApi_Data_Address_Formatted" /> Formatted

Read-only formatted address multi-line string. Combines street and postal into one string. e.g.: \<c>"Postboks 123,\nBrugata 123,\n1234 OSLO\n"\</c> or \<c>"Postbox 123,\nBridgelane 123,\nWest Tooting,\nEast Shire ES2 W31\n"\</c>.

```csharp theme={null}
public virtual string Formatted { get; set; }
```

#### Property Value

[string](https://learn.microsoft.com/dotnet/api/system.string)

### <a id="SuperOffice_WebApi_Data_Address_LocalizedAddress" /> LocalizedAddress

LocalizedFieldArray is a list of LocalizedFieldList objects. Used to store localized information such as formatted address data.

```csharp theme={null}
public virtual LocalizedField[][] LocalizedAddress { get; set; }
```

#### Property Value

[LocalizedField](SuperOffice.WebApi.Data.LocalizedField.md)\[]\[]

### <a id="SuperOffice_WebApi_Data_Address_Postal" /> Postal

Postal address (company postal, billing address). LocalizedAddress changes override this property, so you do not have to change both Localized and this.

```csharp theme={null}
public virtual StructuredAddress Postal { get; set; }
```

#### Property Value

[StructuredAddress](SuperOffice.WebApi.Data.StructuredAddress.md)

### <a id="SuperOffice_WebApi_Data_Address_Street" /> Street

Street address (company street, person address, delivery address). LocalizedAddress changes override this property, so you do not have to change both Localized and this.

```csharp theme={null}
public virtual StructuredAddress Street { get; set; }
```

#### Property Value

[StructuredAddress](SuperOffice.WebApi.Data.StructuredAddress.md)

### <a id="SuperOffice_WebApi_Data_Address_Wgs84Latitude" /> Wgs84Latitude

Latitude (that's north/south), decimal degrees, relative to WGS 84 ellipsoid. SuperOffice ASA is at 59.91892. This value needs no further grid reference or other qualifying information.

```csharp theme={null}
public virtual double Wgs84Latitude { get; set; }
```

#### Property Value

[double](https://learn.microsoft.com/dotnet/api/system.double)

### <a id="SuperOffice_WebApi_Data_Address_Wgs84Longitude" /> Wgs84Longitude

Longitude (that's East/west), decimal degrees, relative to WGS 84 ellipsoid. SuperOffice ASA is at 10.73159. This value needs no further grid reference or other qualifying information.

```csharp theme={null}
public virtual double Wgs84Longitude { get; set; }
```

#### Property Value

[double](https://learn.microsoft.com/dotnet/api/system.double)


## Related topics

- [SuperOffice.WebApi.Data.AddressSyncData](/en/api/reference/webapi/SuperOffice.WebApi.Data.AddressSyncData.md)
- [SuperOffice.WebApi.Data.AddressType](/en/api/reference/webapi/SuperOffice.WebApi.Data.AddressType.md)
- [SuperOffice.WebApi.Data.StructuredAddress](/en/api/reference/webapi/SuperOffice.WebApi.Data.StructuredAddress.md)
- [SuperOffice.WebApi.Data.EMailAddress](/en/api/reference/webapi/SuperOffice.WebApi.Data.EMailAddress.md)
- [SuperOffice.WebApi.Data.Person GetAddressRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Person_GetAddressRequest.md)
- [SuperOffice.WebApi.Data.Contact GetAddressRequest](/en/api/reference/webapi/SuperOffice.WebApi.Data.Contact_GetAddressRequest.md)
