What kind of object is the output of firebase data? Here is the code to output it (from documentation):
myRootRef.observeEventType(.Value, withBlock: {
snapshot in
println("\(snapshot.value)")
})
Here is the output:
{
a = {
FirstName = "";
LastName = "";
};
b = {
FirstName = "";
LastName = "";
};
c = {
FirstName = "";
LastName = "";
};
}
What object is that? (Array
, Dictionary
, String
?)