Table of Contents

Class ScreenerChildCreateRequestModel

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

Request model describing the details for a new screener child survey.

public class ScreenerChildCreateRequestModel
Inheritance
ScreenerChildCreateRequestModel
Inherited Members

Properties

Category

The category of the survey

[JsonProperty("Category", Required = Required.DisallowNull, NullValueHandling = NullValueHandling.Ignore)]
public ScreenerChildCategory Category { get; set; }

Property Value

ScreenerChildCategory

ClientName

Gets or sets the name of the client, e.g. Coca Cola.

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

Property Value

string

Description

The description of the survey

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

Property Value

string

SurveyName

The name of the new survey

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

Property Value

string