Snippets
Created by
Surinder Bhomra
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 | public class ObjectField
{
[JsonProperty("aggregatable")]
public bool Aggregatable { get; set; }
[JsonProperty("autoNumber")]
public bool AutoNumber { get; set; }
[JsonProperty("byteLength")]
public int ByteLength { get; set; }
[JsonProperty("calculated")]
public bool Calculated { get; set; }
[JsonProperty("calculatedFormula")]
public object CalculatedFormula { get; set; }
[JsonProperty("cascadeDelete")]
public bool CascadeDelete { get; set; }
[JsonProperty("caseSensitive")]
public bool CaseSensitive { get; set; }
[JsonProperty("controllerName")]
public string ControllerName { get; set; }
[JsonProperty("createable")]
public bool Createable { get; set; }
[JsonProperty("custom")]
public bool Custom { get; set; }
[JsonProperty("defaultValue")]
public object DefaultValue { get; set; }
[JsonProperty("defaultValueFormula")]
public object DefaultValueFormula { get; set; }
[JsonProperty("defaultedOnCreate")]
public bool DefaultedOnCreate { get; set; }
[JsonProperty("dependentPicklist")]
public bool DependentPicklist { get; set; }
[JsonProperty("deprecatedAndHidden")]
public bool DeprecatedAndHidden { get; set; }
[JsonProperty("digits")]
public int Digits { get; set; }
[JsonProperty("displayLocationInDecimal")]
public bool DisplayLocationInDecimal { get; set; }
[JsonProperty("encrypted")]
public bool Encrypted { get; set; }
[JsonProperty("externalId")]
public bool ExternalId { get; set; }
[JsonProperty("extraTypeInfo")]
public string ExtraTypeInfo { get; set; }
[JsonProperty("filterable")]
public bool Filterable { get; set; }
[JsonProperty("filteredLookupInfo")]
public object FilteredLookupInfo { get; set; }
[JsonProperty("groupable")]
public bool Groupable { get; set; }
[JsonProperty("highScaleNumber")]
public bool HighScaleNumber { get; set; }
[JsonProperty("htmlFormatted")]
public bool HtmlFormatted { get; set; }
[JsonProperty("idLookup")]
public bool IdLookup { get; set; }
[JsonProperty("inlineHelpText")]
public object InlineHelpText { get; set; }
[JsonProperty("label")]
public string Label { get; set; }
[JsonProperty("length")]
public int Length { get; set; }
[JsonProperty("mask")]
public object Mask { get; set; }
[JsonProperty("maskType")]
public object MaskType { get; set; }
[JsonProperty("name")]
public string Name { get; set; }
[JsonProperty("nameField")]
public bool NameField { get; set; }
[JsonProperty("namePointing")]
public bool NamePointing { get; set; }
[JsonProperty("nillable")]
public bool Nillable { get; set; }
[JsonProperty("permissionable")]
public bool Permissionable { get; set; }
[JsonProperty("picklistValues")]
public List<ObjectFieldPicklistValue> PicklistValues { get; set; }
[JsonProperty("precision")]
public int Precision { get; set; }
[JsonProperty("queryByDistance")]
public bool QueryByDistance { get; set; }
[JsonProperty("referenceTargetField")]
public object ReferenceTargetField { get; set; }
[JsonProperty("referenceTo")]
public List<string> ReferenceTo { get; set; }
[JsonProperty("relationshipName")]
public string RelationshipName { get; set; }
[JsonProperty("relationshipOrder")]
public object RelationshipOrder { get; set; }
[JsonProperty("restrictedDelete")]
public bool RestrictedDelete { get; set; }
[JsonProperty("restrictedPicklist")]
public bool RestrictedPicklist { get; set; }
[JsonProperty("scale")]
public int Scale { get; set; }
[JsonProperty("soapType")]
public string SoapType { get; set; }
[JsonProperty("sortable")]
public bool Sortable { get; set; }
[JsonProperty("type")]
public string Type { get; set; }
[JsonProperty("unique")]
public bool Unique { get; set; }
[JsonProperty("updateable")]
public bool Updateable { get; set; }
[JsonProperty("writeRequiresMasterRead")]
public bool WriteRequiresMasterRead { get; set; }
}
|
Comments (1)
You can clone a snippet to your computer for local editing. Learn more.
Play the entertaining puzzle game Minesweeper. All safe cells are opened by the challenge. If you want to win, don't let the mine go off.