-
Notifications
You must be signed in to change notification settings - Fork 3
/
codebeautify.json
16712 lines (16712 loc) · 368 KB
/
codebeautify.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"data": [
{
"conversation_id": 0,
"conversation": [
{
"text": "Hi",
"timestamp": "1457530369844",
"side": "Customer",
"sentiment": 0
},
{
"text": "Welcome to droom.in How may I assist you today?",
"timestamp": "1457530390882",
"side": "Agent",
"sentiment": 0
},
{
"text": "Actually i want purchase a used bike ....",
"timestamp": "1457530409712",
"side": "Customer",
"sentiment": 0
},
{
"text": "Okay",
"timestamp": "1457530416069",
"side": "Agent",
"sentiment": 0
},
{
"text": "So i need ... a help",
"timestamp": "1457530435791",
"side": "Customer",
"sentiment": 0
},
{
"text": "May I know which vehicle you are looking for?",
"timestamp": "1457530465684",
"side": "Agent",
"sentiment": 0
},
{
"text": "2 wheeler",
"timestamp": "1457530496188",
"side": "Customer",
"sentiment": 0
},
{
"text": "Also",
"timestamp": "1457530514704",
"side": "Agent",
"sentiment": 0
},
{
"text": "Made by hero",
"timestamp": "1457530578884",
"side": "Customer",
"sentiment": 0
},
{
"text": "Okay.",
"timestamp": "1457530591612",
"side": "Agent",
"sentiment": 0
},
{
"text": "We have our assist team who will look for a vehicle and call you back",
"timestamp": "1457530625388",
"side": "Agent",
"sentiment": 0
},
{
"text": "The number - 9000048885",
"timestamp": "1457530694076",
"side": "Agent",
"sentiment": 0
},
{
"text": "Yes.. its a my number",
"timestamp": "1457530721891",
"side": "Customer",
"sentiment": 0
},
{
"text": "So any requrement",
"timestamp": "1457530774532",
"side": "Customer",
"sentiment": 0
},
{
"text": "Yes",
"timestamp": "1457530810867",
"side": "Agent",
"sentiment": 0
},
{
"text": "Ok miss.. Nikita ji ...",
"timestamp": "1457530845342",
"side": "Customer",
"sentiment": 0
},
{
"text": "Yes one thing i want to ask u ?",
"timestamp": "1457530875568",
"side": "Customer",
"sentiment": 0
},
{
"text": "sure",
"timestamp": "1457530901136",
"side": "Agent",
"sentiment": 0
},
{
"text": "Can i sell bike on ur site ..",
"timestamp": "1457530921801",
"side": "Customer",
"sentiment": 0
},
{
"text": "Yes you can",
"timestamp": "1457530944073",
"side": "Agent",
"sentiment": 0
},
{
"text": "Please use the quick sell option on our platform to list your vehicle",
"timestamp": "1457530962787",
"side": "Agent",
"sentiment": 0
},
{
"text": "I have hero honda bike hunk Modle ....",
"timestamp": "1457530971202",
"side": "Customer",
"sentiment": 0
},
{
"text": "droom.in/quicksell",
"timestamp": "1457530971944",
"side": "Agent",
"sentiment": 0
},
{
"text": "Ok ok thanks .....",
"timestamp": "1457530983872",
"side": "Customer",
"sentiment": 0
},
{
"text": "Is there anything else I can help you with?",
"timestamp": "1457531001521",
"side": "Agent",
"sentiment": 0
}
]
},
{
"conversation_id": 1,
"conversation": [
{
"text": "hello",
"timestamp": "1457033370001",
"side": "Customer",
"sentiment": 0
},
{
"text": "who is this?",
"timestamp": "1457033373819",
"side": "Customer",
"sentiment": 0
},
{
"text": "hello",
"timestamp": "1457033384485",
"side": "Agent",
"sentiment": 0
}
]
},
{
"conversation_id": 2,
"conversation": [
{
"text": "hello",
"timestamp": "1457029041314",
"side": "Customer",
"sentiment": 0
},
{
"text": "heyy",
"timestamp": "1457029044596",
"side": "Agent",
"sentiment": 0
}
]
},
{
"conversation_id": 3,
"conversation": [
{
"text": "Welcome to droom.in How may I assist you today?",
"timestamp": "1457503001142",
"side": "Agent",
"sentiment": 0
}
]
},
{
"conversation_id": 4,
"conversation": [
{
"text": "i want to test ride the vehicle",
"timestamp": "1457008018152",
"side": "Customer",
"sentiment": 0
},
{
"text": "hello",
"timestamp": "1457008019214",
"side": "Agent",
"sentiment": 0
},
{
"text": "for that you need to pay the token amount and then you will get the details of the seller and go for the test drive",
"timestamp": "1457008073666",
"side": "Agent",
"sentiment": 0
},
{
"text": "is the token amount refundable if i dont like the vehicle",
"timestamp": "1457008113289",
"side": "Customer",
"sentiment": 0
},
{
"text": "yes if you don't like the vehicle then we'll refund your token amount",
"timestamp": "1457008171497",
"side": "Agent",
"sentiment": 0
}
]
},
{
"conversation_id": 5,
"conversation": [
{
"text": "Welcome to droom.in How may I assist you today?",
"timestamp": "1457428534472",
"side": "Agent",
"sentiment": 0
}
]
},
{
"conversation_id": 6,
"conversation": [
{
"text": "Welcome to droom.in How may I assist you today?",
"timestamp": "1457524729199",
"side": "Agent",
"sentiment": 0
},
{
"text": "Hi..",
"timestamp": "1457524737922",
"side": "Customer",
"sentiment": 0
},
{
"text": "this is priya here from L ittle internet.",
"timestamp": "1457524750638",
"side": "Customer",
"sentiment": 0
},
{
"text": "L ittle is a deal based app as well as website.",
"timestamp": "1457524770878",
"side": "Customer",
"sentiment": 0
},
{
"text": "Little*",
"timestamp": "1457524777043",
"side": "Customer",
"sentiment": 0
},
{
"text": "okay",
"timestamp": "1457524780222",
"side": "Agent",
"sentiment": 0
},
{
"text": "i would like to be connected to someone in the marketing department.",
"timestamp": "1457524800785",
"side": "Customer",
"sentiment": 0
},
{
"text": "please drop mail at [email protected]",
"timestamp": "1457524829112",
"side": "Agent",
"sentiment": 0
},
{
"text": "sure.. and whose name should i send the mail to !",
"timestamp": "1457524864274",
"side": "Customer",
"sentiment": 0
},
{
"text": "you just mail at [email protected]",
"timestamp": "1457524891154",
"side": "Agent",
"sentiment": 0
},
{
"text": "yeah thats okey",
"timestamp": "1457524901888",
"side": "Customer",
"sentiment": 0
},
{
"text": "i'm just asking whom should i address",
"timestamp": "1457524921803",
"side": "Customer",
"sentiment": 0
},
{
"text": "in the mail",
"timestamp": "1457524924669",
"side": "Customer",
"sentiment": 0
},
{
"text": "team",
"timestamp": "1457524945608",
"side": "Agent",
"sentiment": 0
},
{
"text": "you can concern to",
"timestamp": "1457524950364",
"side": "Agent",
"sentiment": 0
},
{
"text": "okey",
"timestamp": "1457524960070",
"side": "Customer",
"sentiment": 0
},
{
"text": "thanks",
"timestamp": "1457524962399",
"side": "Customer",
"sentiment": 0
},
{
"text": "Thank you for choosing droom.in. Have a nice day ahead.",
"timestamp": "1457524970562",
"side": "Agent",
"sentiment": 0
}
]
},
{
"conversation_id": 7,
"conversation": [
{
"text": "Welcome to droom.in How may I assist you today?",
"timestamp": "1457092167364",
"side": "Agent",
"sentiment": 0
},
{
"text": "just saw model Honda dio 2013",
"timestamp": "1457092387471",
"side": "Customer",
"sentiment": 0
}
]
},
{
"conversation_id": 8,
"conversation": [
{
"text": "heyyy",
"timestamp": "1457134621927",
"side": "Customer",
"sentiment": 0
},
{
"text": "hello",
"timestamp": "1457134634589",
"side": "Agent",
"sentiment": 0
}
]
},
{
"conversation_id": 9,
"conversation": [
{
"text": "hello",
"timestamp": "1456918233255",
"side": "Customer",
"sentiment": 0
},
{
"text": "heyy",
"timestamp": "1456918240880",
"side": "Agent",
"sentiment": 0
}
]
},
{
"conversation_id": 10,
"conversation": [
{
"text": "Welcome to droom.in How may I assist you today?",
"timestamp": "1457528866668",
"side": "Agent",
"sentiment": 0
},
{
"text": "i'm looking for a yamaha fzs or fz16 between 25-30k delhi ncr!",
"timestamp": "1457528868785",
"side": "Customer",
"sentiment": 0
}
]
},
{
"conversation_id": 11,
"conversation": [
{
"text": "Welcome to droom.in How may I assist you today?",
"timestamp": "1457326629874",
"side": "Agent",
"sentiment": 0
}
]
},
{
"conversation_id": 12,
"conversation": [
{
"text": "hinn",
"timestamp": "1457361129173",
"side": "Customer",
"sentiment": 0
},
{
"text": "Welcome to droom.in How may I assist you today?",
"timestamp": "1457361158528",
"side": "Agent",
"sentiment": 0
},
{
"text": "Are you still connected?",
"timestamp": "1457361580479",
"side": "Agent",
"sentiment": 0
},
{
"text": "Thank you for choosing droom.in. Have a nice day ahead.",
"timestamp": "1457361632926",
"side": "Agent",
"sentiment": 0
}
]
},
{
"conversation_id": 13,
"conversation": [
{
"text": "Welcome to droom.in How may I assist you today?",
"timestamp": "1457180018091",
"side": "Agent",
"sentiment": 0
},
{
"text": "Hello Pari",
"timestamp": "1457180056818",
"side": "Customer",
"sentiment": 0
},
{
"text": "hi how can i help you",
"timestamp": "1457180082511",
"side": "Agent",
"sentiment": 0
}
]
},
{
"conversation_id": 14,
"conversation": [
{
"text": "Welcome to droom.in How may I assist you today?",
"timestamp": "1457070627606",
"side": "Agent",
"sentiment": 0
},
{
"text": "Thank you'",
"timestamp": "1457070702167",
"side": "Agent",
"sentiment": 0
}
]
},
{
"conversation_id": 15,
"conversation": [
{
"text": "are",
"timestamp": "1457034143660",
"side": "Agent",
"sentiment": 0
},
{
"text": "ye kya ho ra hai",
"timestamp": "1457034148755",
"side": "Agent",
"sentiment": 0
},
{
"text": "areeeee",
"timestamp": "1457034149485",
"side": "Customer",
"sentiment": 0
}
]
},
{
"conversation_id": 16,
"conversation": [
{
"text": "got disconnected",
"timestamp": "1457413771256",
"side": "Customer",
"sentiment": 0
},
{
"text": "http://droom.in/quick-sell-details please fill the form and list your vehicle.:)",
"timestamp": "1457413831472",
"side": "Agent",
"sentiment": 0
},
{
"text": "okay so will it be sold immediately or it will take time as I want sell in urgent due to cash requirement",
"timestamp": "1457413887818",
"side": "Customer",
"sentiment": 0
},
{
"text": "No listing is for free however while listing you can set a date accordingly .",
"timestamp": "1457414006567",
"side": "Agent",
"sentiment": 0
}
]
},
{
"conversation_id": 17,
"conversation": [
{
"text": "hello",
"timestamp": "1457080063968",
"side": "Agent",
"sentiment": 0
},
{
"text": "Welcome to droom.in How may I assist you today?",
"timestamp": "1457080071868",
"side": "Agent",
"sentiment": 0
},
{
"text": "ae hii..",
"timestamp": "1457080076310",
"side": "Customer",
"sentiment": 0
},
{
"text": "where is yours office",
"timestamp": "1457080107594",
"side": "Customer",
"sentiment": 0
},
{
"text": "Our office is in gurgaon",
"timestamp": "1457080125168",
"side": "Agent",
"sentiment": 0
},
{
"text": "any branch in mumbai?",
"timestamp": "1457080142274",
"side": "Customer",
"sentiment": 0
},
{
"text": "Our office is in gurgaon however we are working for all over india",
"timestamp": "1457080196427",
"side": "Agent",
"sentiment": 0
},
{
"text": "ok thanks",
"timestamp": "1457080220816",
"side": "Customer",
"sentiment": 0
}
]
},
{
"conversation_id": 18,
"conversation": [
{
"text": "Hi",
"timestamp": "1457101788591",
"side": "Customer",
"sentiment": 0
},
{
"text": "Hello",
"timestamp": "1457101795492",
"side": "Agent",
"sentiment": 0
},
{
"text": "Hello nitika just now i spoke to you regarding pmt",
"timestamp": "1457101831875",
"side": "Customer",
"sentiment": 0
},
{
"text": "2 marrow what time will you confirm",
"timestamp": "1457101877377",
"side": "Customer",
"sentiment": 0
},
{
"text": "Bank only afternoon 2 o clock is available",
"timestamp": "1457101910467",
"side": "Customer",
"sentiment": 0
}
]
},
{
"conversation_id": 19,
"conversation": [
{
"text": "Welcome to droom.in How may I assist you today?",
"timestamp": "1457426083234",
"side": "Agent",
"sentiment": 0
},
{
"text": "hello i want to know about one bullet500 cc model",
"timestamp": "1457426106328",
"side": "Customer",
"sentiment": 0
},
{
"text": "Sure",
"timestamp": "1457426131131",
"side": "Agent",
"sentiment": 0
},
{
"text": "Can you let me know the link or the DLID mentioned in the description box",
"timestamp": "1457426149556",
"side": "Agent",
"sentiment": 0
},
{
"text": "yes",
"timestamp": "1457426198657",
"side": "Customer",
"sentiment": 0
},
{
"text": "1 mint",
"timestamp": "1457426205387",
"side": "Customer",
"sentiment": 0
},
{
"text": "droom.in/product/royal-enfield-bullet-2010-500cc-b44c011",
"timestamp": "1457426302286",
"side": "Customer",
"sentiment": 0
},
{
"text": "this link one",
"timestamp": "1457426310551",
"side": "Customer",
"sentiment": 0
},
{
"text": "hello ??",
"timestamp": "1457426347038",
"side": "Customer",
"sentiment": 0
},
{
"text": "Yes. I am checking the link. Please give me a moment",
"timestamp": "1457426365323",
"side": "Agent",
"sentiment": 0
},
{
"text": "Please tell me what information do you need/",
"timestamp": "1457426402228",
"side": "Agent",
"sentiment": 0
},
{
"text": "?",
"timestamp": "1457426403458",
"side": "Agent",
"sentiment": 0
},
{
"text": "in the bike photos the model is latest and the seller is telling this model is from 2010",
"timestamp": "1457426489582",
"side": "Customer",
"sentiment": 0
},
{
"text": "and silver colour",
"timestamp": "1457426498089",
"side": "Customer",
"sentiment": 0
},
{
"text": "information are not matching",
"timestamp": "1457426512614",
"side": "Customer",
"sentiment": 0
},
{
"text": "if i buy this bike t",
"timestamp": "1457426540804",
"side": "Customer",
"sentiment": 0
},
{
"text": "??",
"timestamp": "1457426553928",
"side": "Customer",
"sentiment": 0
},
{
"text": "The description and color in the pics are black",
"timestamp": "1457426583359",
"side": "Agent",
"sentiment": 0
},
{
"text": "If this is all fine",
"timestamp": "1457426614449",
"side": "Agent",
"sentiment": 0
},
{
"text": "just a sec.",
"timestamp": "1457426627491",
"side": "Customer",
"sentiment": 0
},
{
"text": "http://droom.in/product/royal-enfield-bullet-2010-500cc-5ae8e41",
"timestamp": "1457426630088",
"side": "Customer",
"sentiment": 0
},
{
"text": "check this one please",
"timestamp": "1457426641287",
"side": "Customer",
"sentiment": 0
},
{
"text": "sure",
"timestamp": "1457426654695",
"side": "Agent",
"sentiment": 0
},
{
"text": "Ya",
"timestamp": "1457426699577",
"side": "Agent",
"sentiment": 0
},
{
"text": "ok. madam",
"timestamp": "1457426720877",
"side": "Customer",
"sentiment": 0
},
{
"text": "but model is also not matching",
"timestamp": "1457426731252",
"side": "Customer",
"sentiment": 0
},
{
"text": "hhm....",
"timestamp": "1457426772868",
"side": "Agent",
"sentiment": 0
},
{
"text": "You can let me know your exact requirement so that we can help in finding one for you",
"timestamp": "1457426808048",
"side": "Agent",
"sentiment": 0
},
{
"text": "this one i like",
"timestamp": "1457426831871",
"side": "Customer",
"sentiment": 0
},
{
"text": "2nd one?",
"timestamp": "1457426858556",
"side": "Agent",
"sentiment": 0
},
{
"text": "yes",
"timestamp": "1457426897652",
"side": "Customer",
"sentiment": 0
},
{
"text": "Hmm. Which place in Gujrat are you from?",
"timestamp": "1457426918942",
"side": "Agent",
"sentiment": 0
},
{
"text": "For finalizing the vehicle",
"timestamp": "1457426973978",
"side": "Agent",
"sentiment": 0
},
{
"text": "The seller may provide you NOC for the transfer",
"timestamp": "1457426984560",
"side": "Agent",
"sentiment": 0
},
{
"text": "We can see if we can find something for you within Gujarat also",
"timestamp": "1457427006291",
"side": "Agent",
"sentiment": 0
},
{
"text": "ok madam",
"timestamp": "1457427031651",
"side": "Customer",
"sentiment": 0
},
{
"text": "Can we reach you in this number - 8866495919 ?",
"timestamp": "1457427056519",
"side": "Agent",
"sentiment": 0
},
{
"text": "yes",
"timestamp": "1457427067295",
"side": "Customer",
"sentiment": 0
},
{
"text": "Ok. I am forwarding your request to our assist team. They will help you find a vehicle as per your requirement and call you back",
"timestamp": "1457427104195",
"side": "Agent",
"sentiment": 0
},
{
"text": "ok.",
"timestamp": "1457427118711",
"side": "Customer",
"sentiment": 0
},
{
"text": "Is there anything else I can help you with?",
"timestamp": "1457427133424",
"side": "Agent",
"sentiment": 0
},
{
"text": "yes",
"timestamp": "1457427186966",
"side": "Customer",
"sentiment": 0
},
{
"text": "You can get the seller information only when you place an order by paying the token fee",
"timestamp": "1457427219861",
"side": "Agent",
"sentiment": 0
},
{
"text": "Which city are you from",
"timestamp": "1457427308383",
"side": "Agent",
"sentiment": 0
},
{
"text": "ok. if i paid the token and i cancel the deal",
"timestamp": "1457427317627",
"side": "Customer",
"sentiment": 0
},
{
"text": "im from vadodara",
"timestamp": "1457427329082",
"side": "Customer",
"sentiment": 0
},
{
"text": "Ok",
"timestamp": "1457427337952",
"side": "Agent",
"sentiment": 0
},
{
"text": "yes",
"timestamp": "1457427356139",
"side": "Agent",
"sentiment": 0
},
{
"text": "As a buyer you are covered under buyer protection which means if you have any issues with the vehicle before taking the delivery",
"timestamp": "1457427361799",
"side": "Agent",
"sentiment": 0
},
{
"text": "ok madam thanks a lot for this quality information",
"timestamp": "1457427450041",
"side": "Customer",
"sentiment": 0
},
{
"text": ":)",
"timestamp": "1457427452142",
"side": "Customer",
"sentiment": 0
},
{
"text": "You are welcome",
"timestamp": "1457427461971",
"side": "Agent",
"sentiment": 0
},
{
"text": "Thank you for choosing droom.in. Have a nice day ahead.",
"timestamp": "1457427466389",
"side": "Agent",
"sentiment": 0
},
{
"text": "Are you still there?",
"timestamp": "1457427653790",
"side": "Agent",
"sentiment": 0
},
{
"text": "thanks you.",
"timestamp": "1457427685793",
"side": "Customer",
"sentiment": 0
}
]
},
{
"conversation_id": 20,
"conversation": [
{
"text": "h",
"timestamp": "1457034322347",
"side": "Agent",
"sentiment": 0
}
]