#### [Abblix\.Oidc\.Server](https://www.abblix.com/en/docs/api/abblix-oidc-server 'index')
### [Abblix\.Oidc\.Server\.Model](https://www.abblix.com/en/docs/api/abblix-oidc-server/Abblix.Oidc.Server.Model 'Abblix\.Oidc\.Server\.Model')

## Address Class

Represents a physical address, providing various components typically used in postal addresses\.

```csharp
public record Address : System.IEquatable<Abblix.Oidc.Server.Model.Address>
```

Inheritance [System\.Object](https://learn.microsoft.com/en-us/dotnet/api/system.object 'System\.Object') → Address

Implements [System\.IEquatable&lt;](https://learn.microsoft.com/en-us/dotnet/api/system.iequatable-1 'System\.IEquatable\`1')[Address](https://www.abblix.com/en/docs/api/abblix-oidc-server/Abblix.Oidc.Server.Model.Address 'Abblix\.Oidc\.Server\.Model\.Address')[&gt;](https://learn.microsoft.com/en-us/dotnet/api/system.iequatable-1 'System\.IEquatable\`1')
### Properties

## Address\.Country Property {#Abblix.Oidc.Server.Model.Address.Country}

Country name component\.

```csharp
public string? Country { get; set; }
```

#### Property Value
[System\.String](https://learn.microsoft.com/en-us/dotnet/api/system.string 'System\.String')

## Address\.Formatted Property {#Abblix.Oidc.Server.Model.Address.Formatted}

Full mailing address, formatted for display or use on a mailing label\.
This field MAY contain multiple lines, separated by newlines\.
Newlines can be represented either as a carriage return/line feed pair \("\\r\\n"\)
or as a single line feed character \("\\n"\)\.

```csharp
public string? Formatted { get; set; }
```

#### Property Value
[System\.String](https://learn.microsoft.com/en-us/dotnet/api/system.string 'System\.String')

## Address\.Locality Property {#Abblix.Oidc.Server.Model.Address.Locality}

City or locality component\.

```csharp
public string? Locality { get; set; }
```

#### Property Value
[System\.String](https://learn.microsoft.com/en-us/dotnet/api/system.string 'System\.String')

## Address\.PostalCode Property {#Abblix.Oidc.Server.Model.Address.PostalCode}

Zip code or postal code component\.

```csharp
public string? PostalCode { get; set; }
```

#### Property Value
[System\.String](https://learn.microsoft.com/en-us/dotnet/api/system.string 'System\.String')

## Address\.Region Property {#Abblix.Oidc.Server.Model.Address.Region}

State, province, prefecture, or region component\.

```csharp
public string? Region { get; set; }
```

#### Property Value
[System\.String](https://learn.microsoft.com/en-us/dotnet/api/system.string 'System\.String')

## Address\.StreetAddress Property {#Abblix.Oidc.Server.Model.Address.StreetAddress}

Full street address component, which MAY include house number, street name, Post Office Box,
and multi\-line extended street address information\.
This field MAY contain multiple lines, separated by newlines\.
Newlines can be represented either as a carriage return/line feed pair \("\\r\\n"\)
or as a single line feed character \("\\n"\)\.

```csharp
public string? StreetAddress { get; set; }
```

#### Property Value
[System\.String](https://learn.microsoft.com/en-us/dotnet/api/system.string 'System\.String')
