Table of Contents

Class AddressModel

Namespace
Nfield.SDK
Assembly
Nfield.Public.SDK.dll

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

string

AppointmentDate

Appointment Date of the address

[JsonProperty("AppointmentDate", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public DateTimeOffset? AppointmentDate { get; set; }

Property Value

DateTimeOffset?

Details

Details of the address

[JsonProperty("Details", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[StringLength(2147483647)]
public string Details { get; set; }

Property Value

string

SampleData

SampleData variables for Odin

[JsonProperty("SampleData", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public ICollection<AddressSampleDataModel> SampleData { get; set; }

Property Value

ICollection<AddressSampleDataModel>