Class SamplingPointResponseModel
The model representing an SamplingPoint.
public class SamplingPointResponseModel : SamplingPointBaseModel
- Inheritance
-
SamplingPointResponseModel
- Inherited Members
Properties
Kind
Indicates the Kind of the sampling point. The only accepted values are "Regular" and "Spare".
If the value is null then we assign this as "Regular" to be backward compatible
[JsonProperty("Kind", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public SamplingPointKind? Kind { get; set; }
Property Value
SamplingPointId
Gets or sets the sampling point unique identifier.
[JsonProperty("SamplingPointId", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[StringLength(128)]
public string SamplingPointId { get; set; }