Class BuyerAddress
Address of the receipt recipient / buyer in a structured form.
Inheritance
System.Object
BuyerAddress
Namespace: anybill.POS.Client.Models.Bill.Head.Buyer.Address
Assembly: anybill.POS.Client.Abstractions.dll
Syntax
public class BuyerAddress
Properties
City
City / place of the receipt recipient / buyer.
Declaration
public string City { get; set; }
Property Value
Type | Description |
---|---|
System.String |
CountryCode
Country code OR country of the receipt recipient / buyer. If the country code is 3 letters long, it is interpreted as ISO 3166 alpha-3. Else the country code is interpreted as normal string.
Declaration
public string CountryCode { get; set; }
Property Value
Type | Description |
---|---|
System.String |
PostalCode
Postal code of the receipt recipient / buyer.
Declaration
public string PostalCode { get; set; }
Property Value
Type | Description |
---|---|
System.String |
Street
Street and house number of the receipt recipient / buyer.
Declaration
public string Street { get; set; }
Property Value
Type | Description |
---|---|
System.String |