event_serializer v2.0.3 EventSerializer.Helpers.MapBuilder

This module converts a list of tuples into a map with string keys.

Link to this section Summary

Functions

Given a list of tuples like this

Link to this section Functions

Given a list of tuples like this

[ {“location”, [

 {"user_id", 342343}

] ]

It converts to

%{

"location" => %{
  "user_id" => 342343
}

}