Class AddressModel
The model representing an Sampling Point's Address, this is a Data Transfer Object (DTO).
public class AddressModel
- Inheritance
-
AddressModel
- Inherited Members
Properties
AddressId
Unique id of the address
[JsonProperty("AddressId", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[StringLength(128)]
public string AddressId { get; set; }
Property Value
AppointmentDate
Appointment Date of the address
[JsonProperty("AppointmentDate", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public DateTimeOffset? AppointmentDate { get; set; }
Property Value
Details
Details of the address
[JsonProperty("Details", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[StringLength(2147483647)]
public string Details { get; set; }
Property Value
SampleData
SampleData variables for Odin
[JsonProperty("SampleData", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public ICollection<AddressSampleDataModel> SampleData { get; set; }