Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/NetCoreForce.Client/Models/SObjectFieldMetadata.cs
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,9 @@ public class SObjectFieldMetadata
[JsonProperty(PropertyName = "calculatedFormula")]
public string CalculatedFormula { get; set; }

[JsonProperty(PropertyName = "controllerName")]
public string ControllerName { get; set; }

[JsonProperty(PropertyName = "createable")]
public bool Creatable { get; set; }

Expand All @@ -24,6 +27,9 @@ public class SObjectFieldMetadata
[JsonProperty(PropertyName = "defaultValue")]
public string DefaultValue { get; set; }

[JsonProperty(PropertyName = "dependentPicklist")]
public bool DependentPicklist { get; set; }

[JsonProperty(PropertyName = "externalId")]
public string ExternalId { get; set; }

Expand Down