AutoRefreshFields and PickListValidation settings
I am pretty sure I got this from an example somewhere:
- var config = new SDKConfig.Builder().AutoRefreshFields(false).PickListValidation(false).Build();
- new SDKInitializer.Builder()
- .User(user)
- .Environment(environment)
- .Token(token)
- .Store(tokenStore)
- .SDKConfig(config)
- //.ResourcePath(resourcePath)
- .Logger(logger)
- .Initialize();
I assumed, because I have "PickListValidation(false)", that if I update a Contact with a picklist value that does not currently exist in that Picklist, that my new value would be added. But that isn't the case - should it be?
Also, I don't understand what "AutoRefreshFields" does. I am writing an interface from our website to Zoho - what would setting AutoRefreshFields(true) do? In fact, what does AutoRefreshFields(false) mean?!