We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents bb824fa + a7fb911 commit b2a201bCopy full SHA for b2a201b
src/NetCoreForce.Client/Models/PicklistValue.cs
@@ -25,9 +25,11 @@ public class PickListValue
25
[JsonProperty(PropertyName = "label")]
26
public string Label { get; set; }
27
28
- // TODO: validate type of validFor field
29
- // [JsonProperty(PropertyName = "validFor")]
30
- // public string ValidFor { get; set; }
+ /// <summary>
+ /// Valid for property
+ /// </summary>
31
+ [JsonProperty(PropertyName = "validFor")]
32
+ public byte[] ValidFor { get; set; }
33
34
/// <summary>
35
/// Picklist item value
@@ -36,4 +38,4 @@ public class PickListValue
36
38
[JsonProperty(PropertyName = "value")]
37
39
public string Value { get; set; }
40
}
-}
41
+}
0 commit comments