public Dictionary <string, string> ToDictionary() =>
 DictionaryHelper.ToDictionary(this, new DictionaryHelper.Options
 {
     UseCamelCase       = true,
     PropertiesToIgnore = new List <string> {
         "Timestamp", "ETag"
     }
 });
        public Dictionary <string, string> ToDictionary()
        {
            var properties = DictionaryHelper.ToDictionary(this, new DictionaryHelper.Options {
                UseCamelCase = true
            });

            foreach (var property in DynamicProperties)
            {
                properties[property.Key] = property.Value;
            }

            return(properties);
        }
 public Dictionary <string, string> ToDictionary() =>
 DictionaryHelper.ToDictionary(this, new DictionaryHelper.Options {
     UseCamelCase = true
 });