public void RetrieveAllUsersData()
 {
     CloudGoods.RetrieveAllUserDataValues((r) =>
     {
         RetrieveAllUserResponse.text = "";
         foreach (KeyValuePair <string, string> data in r)
         {
             RetrieveAllUserResponse.text += data.Key.ToRichColor(Color.white) + ":" + (data.Value != null ? data.Value : "Null") + "\n";
         }
     }, User);
 }