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
13 changes: 13 additions & 0 deletions src/main/java/com/force/api/DescribeSObject.java
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,11 @@ public static class Field {
private Boolean externalId;
private Boolean idLookup;
private Boolean filterable;

private Integer precision;
private Integer scale;


// soapType;
private Boolean createable;
private Boolean deprecatedAndHidden;
Expand Down Expand Up @@ -217,6 +222,14 @@ public Boolean isFilterable() {
return filterable;
}

public Integer getPrecision() {
return precision;
}

public Integer getScale() {
return scale;
}

public Boolean isCreateable() {
return createable;
}
Expand Down