Class TranslationWarning
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
Translation
Translation to which the warning belongs to
[JsonProperty("Translation", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Translation { get; set; }
Property Value
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
Variable
Variable which is causing the warning
[JsonProperty("Variable", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Variable { get; set; }