Table of Contents

Class SurveyResponseCodeModelForPatch

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

Entity class for Survey response code (only used for patch endpoint)

public class SurveyResponseCodeModelForPatch
Inheritance
SurveyResponseCodeModelForPatch
Inherited Members

Properties

AllowAppointment

Determines if the Response code is meant for an appointment or not (IsIntermediate - true or false)

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

Property Value

bool?

Description

Description of ResponseCode

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

Property Value

string

IsDefinite

Determines if the Response code is a definitive or not (IsFinal - true or false)

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

Property Value

bool?

IsSelectable

Determines if response code is visible on dropdown list for Capi Client

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

Property Value

bool?

RelocationUrl

Relocation url of the response code

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

Property Value

string