Skip to content

Commit

Permalink
fix: correct CalculatedFormula property type from bool to string
Browse files Browse the repository at this point in the history
  • Loading branch information
anthonyreilly committed Mar 7, 2024
1 parent 073c3b0 commit 5dd39d8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/NetCoreForce.Client/Models/SObjectFieldMetadata.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ public class SObjectFieldMetadata
public bool Calculated { get; set; }

[JsonProperty(PropertyName = "calculatedFormula")]
public bool CalculatedFormula { get; set; }
public string CalculatedFormula { get; set; }

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

0 comments on commit 5dd39d8

Please sign in to comment.