Table of Contents

Class SurveyBaseModel

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

The basic model representing a Survey, this is a Data Transfer Object (DTO).

public class SurveyBaseModel
Inheritance
SurveyBaseModel
Derived
Inherited Members

Properties

SurveyId

The unique identifier (GUID) of the survey

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

Property Value

string

SurveyName

The display name of the survey used for identification purposes

[JsonProperty("SurveyName", Required = Required.Always)]
[Required]
[StringLength(50, MinimumLength = 1)]
public string SurveyName { get; set; }

Property Value

string