-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathAddress.cs
38 lines (33 loc) · 1.08 KB
/
Address.cs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright © 2023 Textkernel BV. All rights reserved.
// This file is provided for use by, or on behalf of, Textkernel licensees
// within the terms of their license of Textkernel products or Textkernel customers
// within the Terms of Service pertaining to the Textkernel SaaS products.
namespace Textkernel.Tx.Models.API.Geocoding
{
/// <summary>
/// An address used to geocode a document
/// </summary>
public class Address
{
/// <summary>
/// The 2-letter ISO 3166 country code
/// </summary>
public string CountryCode { get; set; }
/// <summary>
/// The Postal or Zip code
/// </summary>
public string PostalCode { get; set; }
/// <summary>
/// The Region/District/State
/// </summary>
public string Region { get; set; }
/// <summary>
/// The City/Municipality/Town
/// </summary>
public string Municipality { get; set; }
/// <summary>
/// Street address
/// </summary>
public string AddressLine { get; set; }
}
}