Table of Contents

Class TranslationWarning

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

A warning from a language translation

public class TranslationWarning
Inheritance
TranslationWarning
Inherited Members

Properties

Language

Language of the translation

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

Property Value

string

Translation

Translation to which the warning belongs to

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

Property Value

string

Type

Type of warning. For now we only have 'unknown-variable'

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

Property Value

string

Variable

Variable which is causing the warning

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

Property Value

string