Item Field Data Types - LiquidAnalytics/ld-api-examples GitHub Wiki
Data type | Java Type | ObjectiveC Type | SQL Type |
---|---|---|---|
int | int | NSNumber wrapping value.intValue | INTEGER |
decimal | double | NSDecimalNumber | FLOAT |
boolean | boolean | NSNumber wrapping value.boolValue | BOOLEAN |
date | java.util.Date | NSDate | TIMESTAMP without timezone |
string,name,phone,email,url,refnum | String | NSString | citext |
list | JsonArray | Either NSArray or NSDictionary of values depending on the JSON in the field’s value | Varies, Depending on ListElementType |
dimension | String | NSString | VARCHAR |
block | JsonObject | Varies, Depending on Block schema |