Table of Contents

Class Address

Namespace
RetailForce.Fiscalisation.Configuration
Assembly
RetailForce.Fiscalisation.Model.dll

Address object.

public class Address
Inheritance
Address
Derived
Inherited Members

Properties

City

The city of the address.

[Required]
public string City { get; set; }

Property Value

string

Community

The community of the address.

[JsonProperty(DefaultValueHandling = DefaultValueHandling.Ignore)]
public string? Community { get; set; }

Property Value

string

Remarks

In several countries (for instance Slovenia) you have to add the community to the address.

CountryCode

Countrycode according ISO 3166 alpha-3

[Required]
public string CountryCode { get; set; }

Property Value

string

FullStreet

returns the combination of street and street number

[JsonIgnore]
public string FullStreet { get; }

Property Value

string

PostalCode

The postal code of the address.

[Required]
public string PostalCode { get; set; }

Property Value

string

Street

The street (without street number).

[Required]
public string Street { get; set; }

Property Value

string

StreetNumber

The street number (without street name).

[Required]
public string StreetNumber { get; set; }

Property Value

string

Methods

FromAdress(Address)

public static Address FromAdress(Address objectInheritsAddress)

Parameters

objectInheritsAddress Address

Returns

Address