-
Notifications
You must be signed in to change notification settings - Fork 4
/
mock.ts
4053 lines (4053 loc) · 141 KB
/
mock.ts
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
[
{
"title": "Handmade Wooden Mouse",
"content": "Libero omnis aut odio quia est. Reprehenderit sed quam ut est eum ullam facere et. Dolorem et voluptatem molestiae vero et. Minus vero sed et quia. Doloribus quisquam cum corporis molestiae.",
"location": {
"lat": 40.706877,
"lng": -74.011265,
"formattedAddress": "52623 Donnie Roads",
"zipcode": "68225-1064",
"city": "Nestorview",
"state_long": "Washington",
"state_short": "WY",
"country_long": "Tanzania",
"country_short": "VN"
},
"slug": "amet-rem-tempora",
"status": "publish",
"image": {
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-1.jpg",
"thumb_url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-1_thumb.jpg"
},
"price": "223.00",
"isNegotiable": false,
"propertyType": "Villa",
"condition": "Poor",
"rating": 3,
"ratingCount": 1,
"contactNumber": "1-114-147-7099",
"termsAndCondition": "Qui sit omnis rerum rerum natus cumque earum qui. Optio facilis doloremque. Corrupti est est aperiam molestias animi animi minima neque. Enim numquam et consectetur dicta error doloribus molestiae quibusdam. Quia est est.",
"amenities": [
{
"guestRoom": 8
},
{
"bedRoom": 6
},
{
"wifiAvailability": true
},
{
"parkingAvailability": true
},
{
"poolAvailability": true
},
{
"airCondition": false
},
{
"extraBedFacility": false
}
],
"gallery": [
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-2_thumb.jpg"
},
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-3_thumb.jpg"
},
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-4_thumb.jpg"
}
],
"categories": [
{
"slug": "Practical",
"name": "Tasty",
"image": {
"id": 22552,
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-5.jpg"
}
},
{
"slug": "Handmade",
"name": "Generic",
"image": {
"id": 77761,
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-6.jpg"
}
}
]
},
{
"title": "Awesome Cotton Table",
"content": "Sint aliquam voluptates nam. Exercitationem at ipsam. Ducimus natus ipsa nulla dolores aliquid. Occaecati minus dolores suscipit iste voluptatibus numquam qui tempore.",
"location": {
"lat": 40.7168,
"lng": -74.0465,
"formattedAddress": "28740 Purdy Rue",
"zipcode": "26632",
"city": "East Lonshire",
"state_long": "Michigan",
"state_short": "ME",
"country_long": "Saint Helena",
"country_short": "TK"
},
"slug": "dolore-rerum-voluptates",
"status": "publish",
"image": {
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-7.jpg",
"thumb_url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-7_thumb.jpg"
},
"price": "768.00",
"isNegotiable": true,
"propertyType": "Hotel",
"condition": "Poor",
"rating": 2,
"ratingCount": 1,
"contactNumber": "688.399.4392",
"termsAndCondition": "Veritatis assumenda id placeat sit repellendus sit doloremque dolorem ut. Reprehenderit iure dolores id numquam rerum ut suscipit. Voluptas veritatis consequuntur eligendi quisquam ullam vitae ipsam excepturi vel. Ut sit id necessitatibus odit accusamus eum assumenda eum.",
"amenities": [
{
"guestRoom": 2
},
{
"bedRoom": 8
},
{
"wifiAvailability": false
},
{
"parkingAvailability": true
},
{
"poolAvailability": true
},
{
"airCondition": true
},
{
"extraBedFacility": false
}
],
"gallery": [
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-8_thumb.jpg"
},
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-10_thumb.jpg"
},
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-9_thumb.jpg"
}
],
"categories": [
{
"slug": "Intelligent",
"name": "Handmade",
"image": {
"id": 19167,
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-11.jpg"
}
},
{
"slug": "Awesome",
"name": "Fantastic",
"image": {
"id": 16428,
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-12.jpg"
}
}
]
},
{
"title": "Incredible Granite Chicken",
"content": "Totam voluptatum iusto autem est sapiente eius. Autem qui incidunt beatae harum iusto dolorem numquam voluptates qui. Repellendus aut deserunt ipsum ad excepturi velit tempore ut reiciendis. Ducimus officia animi voluptatem sequi. Ut enim sequi delectus adipisci nemo praesentium illo. Rerum ut ab eum.",
"location": {
"lat": 40.7405,
"lng": -73.9878,
"formattedAddress": "453 Beth Passage",
"zipcode": "78170",
"city": "Lorenhaven",
"state_long": "Oregon",
"state_short": "AK",
"country_long": "Djibouti",
"country_short": "SK"
},
"slug": "nulla-ullam-officia",
"status": "draft",
"image": {
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-13.jpg",
"thumb_url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-13_thumb.jpg"
},
"price": "191.00",
"isNegotiable": false,
"propertyType": "Villa",
"condition": "Average",
"rating": 4.5,
"ratingCount": 14,
"contactNumber": "890-827-6932",
"termsAndCondition": "Ipsam nostrum nesciunt enim quia ipsum aut id et accusamus. Cumque explicabo enim enim sunt. Ratione repellendus quia vel non est. Pariatur in eligendi dolores qui impedit quis architecto. Perferendis quis veritatis natus labore eligendi dolorem esse sit.",
"amenities": [
{
"guestRoom": 2
},
{
"bedRoom": 2
},
{
"wifiAvailability": false
},
{
"parkingAvailability": false
},
{
"poolAvailability": false
},
{
"airCondition": false
},
{
"extraBedFacility": true
}
],
"gallery": [
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-14_thumb.jpg"
},
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-15_thumb.jpg"
},
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-16_thumb.jpg"
}
],
"categories": [
{
"slug": "Generic",
"name": "Incredible",
"image": {
"id": 48920,
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-17.jpg"
}
},
{
"slug": "Intelligent",
"name": "Generic",
"image": {
"id": 63044,
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-18.jpg"
}
}
]
},
{
"title": "Unbranded Frozen Gloves",
"content": "Voluptates commodi nihil voluptatem ea. Id aut ea aliquam perspiciatis quo voluptatum sapiente quas. Esse nobis dolores.",
"location": {
"lat": 40.7673,
"lng": -74.0462,
"formattedAddress": "8196 Bins Road",
"zipcode": "43464",
"city": "Braulioburgh",
"state_long": "California",
"state_short": "MT",
"country_long": "Austria",
"country_short": "CL"
},
"slug": "minus-dolores-quia",
"status": "publish",
"image": {
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-19.jpg",
"thumb_url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-19_thumb.jpg"
},
"price": "662.00",
"isNegotiable": true,
"propertyType": "Hotel",
"condition": "Terrible",
"rating": 4.76,
"ratingCount": 12,
"contactNumber": "(301) 450-0248 x4505",
"termsAndCondition": "Eum nostrum expedita culpa atque. Et quidem pariatur nisi qui dicta blanditiis in quo repudiandae. Molestias fugit aut qui. Vero quia distinctio consequuntur voluptatem.",
"amenities": [
{
"guestRoom": 3
},
{
"bedRoom": 4
},
{
"wifiAvailability": false
},
{
"parkingAvailability": false
},
{
"poolAvailability": false
},
{
"airCondition": true
},
{
"extraBedFacility": true
}
],
"gallery": [
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-20_thumb.jpg"
},
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-1_thumb.jpg"
},
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-2_thumb.jpg"
}
],
"categories": [
{
"slug": "Ergonomic",
"name": "Tasty",
"image": {
"id": 61717,
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-3.jpg"
}
},
{
"slug": "Unbranded",
"name": "Refined",
"image": {
"id": 38977,
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-4.jpg"
}
}
]
},
{
"title": "Rustic Cotton Chicken",
"content": "Quam cum nihil a quod nam assumenda repellat qui. Suscipit iste facilis aut dolore voluptatum iure. Neque eius numquam rerum occaecati. Totam ratione animi voluptas ex. Laborum modi eius neque inventore rerum.",
"location": {
"lat": 40.9003,
"lng": -74.5117,
"formattedAddress": "80766 Pearlie Roads",
"zipcode": "85895-0513",
"city": "East Jamie",
"state_long": "Oklahoma",
"state_short": "OR",
"country_long": "Palestinian Territory",
"country_short": "ZM"
},
"slug": "repellat-excepturi-nobis",
"status": "draft",
"image": {
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-5.jpg",
"thumb_url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-5_thumb.jpg"
},
"price": "888.00",
"isNegotiable": false,
"propertyType": "Hotel",
"condition": "Poor",
"rating": 2.8,
"ratingCount": 2,
"contactNumber": "055-387-6388",
"termsAndCondition": "Est vitae et consequuntur cum. Ut nesciunt ut est nulla odit ducimus itaque amet illum. Accusantium ab voluptatem enim occaecati veniam qui perferendis iste nihil.",
"amenities": [
{
"guestRoom": 8
},
{
"bedRoom": 3
},
{
"wifiAvailability": true
},
{
"parkingAvailability": true
},
{
"poolAvailability": true
},
{
"airCondition": false
},
{
"extraBedFacility": false
}
],
"gallery": [
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-6_thumb.jpg"
},
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-7_thumb.jpg"
},
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-8_thumb.jpg"
}
],
"categories": [
{
"slug": "Small",
"name": "Refined",
"image": {
"id": 96094,
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-9.jpg"
}
},
{
"slug": "Ergonomic",
"name": "Incredible",
"image": {
"id": 62679,
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-10.jpg"
}
}
]
},
{
"title": "Small Metal Ball",
"content": "Dolores tempora distinctio. Excepturi reprehenderit blanditiis quibusdam reprehenderit non quo atque sunt. Sint sed sit ut et doloremque amet reprehenderit.",
"location": {
"lat": 40.8214,
"lng": -75.2052,
"formattedAddress": "8424 Padberg Flats",
"zipcode": "63836-1545",
"city": "Uptonmouth",
"state_long": "Virginia",
"state_short": "NJ",
"country_long": "Qatar",
"country_short": "GT"
},
"slug": "earum-provident-adipisci",
"status": "draft",
"image": {
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-11.jpg",
"thumb_url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-11_thumb.jpg"
},
"price": "316.00",
"isNegotiable": true,
"propertyType": "Hotel",
"condition": "Good",
"rating": 2.5,
"ratingCount": 12,
"contactNumber": "(352) 594-5474 x93019",
"termsAndCondition": "Tenetur labore praesentium totam. Nihil deserunt laboriosam sit mollitia aperiam sed distinctio facere est. Dignissimos expedita fugit occaecati ut quia vitae. Ad quas consequatur. Velit in nobis fuga nulla nihil aut quasi facere veniam.",
"amenities": [
{
"guestRoom": 7
},
{
"bedRoom": 1
},
{
"wifiAvailability": false
},
{
"parkingAvailability": true
},
{
"poolAvailability": true
},
{
"airCondition": false
},
{
"extraBedFacility": true
}
],
"gallery": [
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-12_thumb.jpg"
},
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-13_thumb.jpg"
},
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-14_thumb.jpg"
}
],
"categories": [
{
"slug": "Intelligent",
"name": "Generic",
"image": {
"id": 58361,
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-15.jpg"
}
},
{
"slug": "Handmade",
"name": "Unbranded",
"image": {
"id": 37088,
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-16.jpg"
}
}
]
},
{
"title": "Small Soft Ball",
"content": "Id ea quasi magnam aspernatur omnis. Inventore possimus aut autem iure ut eum. Quia fuga hic similique voluptas officiis esse. Veritatis voluptatibus qui ut. Voluptatem enim sit assumenda rerum. Ad ut enim necessitatibus totam quia cumque asperiores laborum.",
"location": {
"lat": 40.8453,
"lng": -76.0512,
"formattedAddress": "43299 Murazik Extension",
"zipcode": "87445",
"city": "Loraineberg",
"state_long": "Nebraska",
"state_short": "NJ",
"country_long": "Central African Republic",
"country_short": "NG"
},
"slug": "numquam-distinctio-eius",
"status": "publish",
"image": {
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-17.jpg",
"thumb_url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-17_thumb.jpg"
},
"price": "245.00",
"isNegotiable": false,
"propertyType": "Hotel",
"condition": "Good",
"rating": 3.5,
"ratingCount": 11,
"contactNumber": "1-619-861-6069 x3877",
"termsAndCondition": "In minima sequi consequatur suscipit quo nihil quasi sint. Provident ducimus officia dolorem excepturi recusandae soluta provident. Facere quis ipsum quia nihil ullam laborum. Omnis modi harum adipisci. Ea quos autem.",
"amenities": [
{
"guestRoom": 7
},
{
"bedRoom": 4
},
{
"wifiAvailability": true
},
{
"parkingAvailability": false
},
{
"poolAvailability": false
},
{
"airCondition": false
},
{
"extraBedFacility": true
}
],
"gallery": [
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-18_thumb.jpg"
},
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-19_thumb.jpg"
},
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-20_thumb.jpg"
}
],
"categories": [
{
"slug": "Awesome",
"name": "Tasty",
"image": {
"id": 75607,
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-1.jpg"
}
},
{
"slug": "Incredible",
"name": "Practical",
"image": {
"id": 53293,
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-2.jpg"
}
}
]
},
{
"title": "Incredible Wooden Ball",
"content": "Labore voluptatem laborum quod est. Nihil voluptates et praesentium quis. Culpa est ut voluptatem molestiae sint non veritatis suscipit ab. Quia accusamus laudantium aut eaque minus architecto voluptatem vero maxime. Libero minima aperiam provident rerum autem voluptatem veniam est quos.",
"location": {
"lat": 40.4451,
"lng": -79.9184,
"formattedAddress": "73311 Freida Point",
"zipcode": "27499-3830",
"city": "Vincetown",
"state_long": "Maine",
"state_short": "PA",
"country_long": "Belarus",
"country_short": "BQ"
},
"slug": "nobis-et-et",
"status": "draft",
"image": {
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-3.jpg",
"thumb_url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-3_thumb.jpg"
},
"price": "662.00",
"isNegotiable": false,
"propertyType": "Villa",
"condition": "Average",
"rating": 3.9,
"ratingCount": 8,
"contactNumber": "(484) 092-0621 x11827",
"termsAndCondition": "Id voluptates architecto nobis voluptatem quam est porro assumenda. Unde est quae aspernatur fugit esse doloremque. Necessitatibus odit nesciunt laborum distinctio amet. Architecto quam esse. Est est dignissimos quam dolores culpa consequatur. Nemo qui vel ullam velit dignissimos aspernatur vitae dolorum.",
"amenities": [
{
"guestRoom": 3
},
{
"bedRoom": 6
},
{
"wifiAvailability": false
},
{
"parkingAvailability": false
},
{
"poolAvailability": true
},
{
"airCondition": false
},
{
"extraBedFacility": true
}
],
"gallery": [
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-4_thumb.jpg"
},
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-5_thumb.jpg"
},
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-6_thumb.jpg"
}
],
"categories": [
{
"slug": "Tasty",
"name": "Intelligent",
"image": {
"id": 56187,
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-7.jpg"
}
},
{
"slug": "Tasty",
"name": "Incredible",
"image": {
"id": 87999,
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-8.jpg"
}
}
]
},
{
"title": "Handcrafted Wooden Towels",
"content": "Natus provident voluptatum quibusdam minima non officiis beatae. Nobis est architecto sequi laboriosam id maiores harum et. Quo dolores consequuntur nostrum ullam sapiente asperiores itaque dolores. Et nobis voluptatem dolores corrupti accusantium. Magni voluptas quis inventore.",
"location": {
"lat": 44.0543,
"lng": -71.393,
"formattedAddress": "303 Volkman Lakes",
"zipcode": "85094-6329",
"city": "Lake Taylorstad",
"state_long": "West Virginia",
"state_short": "IA",
"country_long": "Botswana",
"country_short": "DO"
},
"slug": "eum-voluptas-tempore",
"status": "draft",
"image": {
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-9.jpg",
"thumb_url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-9_thumb.jpg"
},
"price": "170.00",
"isNegotiable": false,
"propertyType": "Villa",
"condition": "Average",
"rating": 4.5,
"ratingCount": 5,
"contactNumber": "150.663.2821",
"termsAndCondition": "Eum quos voluptas quasi saepe cum minus tenetur. Rem odio consequuntur molestiae at incidunt. Iure commodi dolorum sequi voluptate. Ut in repudiandae minus qui atque maxime. Ea architecto unde facilis nam ut asperiores officiis.",
"amenities": [
{
"guestRoom": 6
},
{
"bedRoom": 6
},
{
"wifiAvailability": true
},
{
"parkingAvailability": true
},
{
"poolAvailability": false
},
{
"airCondition": true
},
{
"extraBedFacility": true
}
],
"gallery": [
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-10_thumb.jpg"
},
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-11_thumb.jpg"
},
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-12_thumb.jpg"
}
],
"categories": [
{
"slug": "Sleek",
"name": "Small",
"image": {
"id": 84182,
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-13.jpg"
}
},
{
"slug": "Sleek",
"name": "Licensed",
"image": {
"id": 63767,
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-14.jpg"
}
}
]
},
{
"title": "Generic Metal Shoes",
"content": "Adipisci illum fugiat. Tempore est fugiat. Facere veritatis assumenda rem dolor.",
"location": {
"lat": 43.0992,
"lng": -78.9296,
"formattedAddress": "368 Fadel Isle",
"zipcode": "58291-9076",
"city": "Kilbackland",
"state_long": "Wisconsin",
"state_short": "WV",
"country_long": "Denmark",
"country_short": "GH"
},
"slug": "eligendi-ex-ut",
"status": "publish",
"image": {
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-15.jpg",
"thumb_url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-15_thumb.jpg"
},
"price": "195.00",
"isNegotiable": true,
"propertyType": "Hotel",
"condition": "Excellent",
"rating": 5,
"ratingCount": 8,
"contactNumber": "492.701.7429 x567",
"termsAndCondition": "Dolorem sunt iusto ea et velit vel non. Voluptatem aut odio id ut ex et sed. Dolorem quia fuga nulla. Impedit et dolorem et numquam dicta et perferendis sed voluptatem. Minus architecto nesciunt dolorem explicabo architecto exercitationem velit. Voluptate assumenda voluptatum aliquid nihil accusantium ut omnis.",
"amenities": [
{
"guestRoom": 6
},
{
"bedRoom": 8
},
{
"wifiAvailability": true
},
{
"parkingAvailability": true
},
{
"poolAvailability": false
},
{
"airCondition": false
},
{
"extraBedFacility": true
}
],
"gallery": [
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-16_thumb.jpg"
},
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-17_thumb.jpg"
},
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-18_thumb.jpg"
}
],
"categories": [
{
"slug": "Practical",
"name": "Small",
"image": {
"id": 53415,
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-19.jpg"
}
},
{
"slug": "Refined",
"name": "Awesome",
"image": {
"id": 81374,
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-20.jpg"
}
}
]
},
{
"title": "Small Metal Shirt",
"content": "Nisi expedita iste aliquid natus nulla eos. Eos officiis nihil. Error facilis sit sed reiciendis voluptatibus dolorem amet. Nobis quia ea. Ipsam enim blanditiis qui.",
"location": {
"lat": 41.1272,
"lng": -74.4692,
"formattedAddress": "21752 Kraig Pike",
"zipcode": "52086-8165",
"city": "Lake Millie",
"state_long": "New Hampshire",
"state_short": "MT",
"country_long": "Liechtenstein",
"country_short": "CW"
},
"slug": "ipsum-libero-in",
"status": "draft",
"image": {
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-1.jpg",
"thumb_url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-1_thumb.jpg"
},
"price": "410.00",
"isNegotiable": true,
"propertyType": "Hotel",
"condition": "Poor",
"rating": 2.5,
"ratingCount": 11,
"contactNumber": "1-062-144-6412 x477",
"termsAndCondition": "Alias deleniti perspiciatis cupiditate non aliquid et. Voluptatem eligendi et tempore. Ut dolores qui repellat ut.",
"amenities": [
{
"guestRoom": 1
},
{
"bedRoom": 6
},
{
"wifiAvailability": true
},
{
"parkingAvailability": true
},
{
"poolAvailability": false
},
{
"airCondition": false
},
{
"extraBedFacility": false
}
],
"gallery": [
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-2_thumb.jpg"
},
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-3_thumb.jpg"
},
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-4_thumb.jpg"
}
],
"categories": [
{
"slug": "Refined",
"name": "Small",
"image": {
"id": 10185,
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-5.jpg"
}
},
{
"slug": "Rustic",
"name": "Practical",
"image": {
"id": 67182,
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-6.jpg"
}
}
]
},
{
"title": "Unbranded Concrete Towels",
"content": "Optio sequi corrupti ullam molestias. Sequi ipsam autem et aut voluptas velit cupiditate deleniti maiores. Quo exercitationem enim harum tenetur impedit omnis velit est. Quo magnam molestias enim sit sint omnis est. Vel harum qui mollitia optio nihil cumque molestias voluptas. Nihil dolorum similique ratione nihil velit.",
"location": {
"lat": 41.0941,
"lng": -73.81,
"formattedAddress": "398 Sydnee Unions",
"zipcode": "93251",
"city": "Hahnhaven",
"state_long": "Arizona",
"state_short": "MN",
"country_long": "Russian Federation",
"country_short": "DK"
},
"slug": "mollitia-laudantium-magnam",
"status": "publish",
"image": {
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-7.jpg",
"thumb_url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-7_thumb.jpg"
},
"price": "377.00",
"isNegotiable": true,
"propertyType": "Villa",
"condition": "Excellent",
"rating": 3.9,
"ratingCount": 5,
"contactNumber": "(324) 731-4990 x405",
"termsAndCondition": "Nam est suscipit voluptas quam dolore. Omnis et distinctio et labore ex et dolorem laborum. Unde consequatur sit ut est rerum qui impedit iure est. Molestiae eum dolores delectus placeat aut.",
"amenities": [
{
"guestRoom": 1
},
{
"bedRoom": 2
},
{
"wifiAvailability": true
},
{
"parkingAvailability": false
},
{
"poolAvailability": true
},
{
"airCondition": false
},
{
"extraBedFacility": true
}
],
"gallery": [
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-8_thumb.jpg"
},
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-9_thumb.jpg"
},
{
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-10_thumb.jpg"
}
],
"categories": [
{
"slug": "Licensed",
"name": "Unbranded",
"image": {
"id": 58629,
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-11.jpg"
}
},
{
"slug": "Incredible",
"name": "Sleek",
"image": {
"id": 4891,
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-12.jpg"
}
}
]
},
{
"title": "Incredible Cotton Hat",
"content": "Veritatis ea sed nulla voluptas qui itaque adipisci. Iusto laboriosam voluptatem molestiae quis. Dolorem reiciendis est.",
"location": {
"lat": 40.8785,
"lng": -72.7553,
"formattedAddress": "95573 Jess Drive",
"zipcode": "47683-5802",
"city": "Halvorsonview",
"state_long": "Georgia",
"state_short": "ME",
"country_long": "Togo",
"country_short": "CC"
},
"slug": "sunt-perspiciatis-autem",
"status": "publish",
"image": {
"url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-13.jpg",
"thumb_url": "http://s3.amazonaws.com/redqteam.com/tripfinder-images/hotel-13_thumb.jpg"
},
"price": "30.00",
"isNegotiable": true,
"propertyType": "Hotel",
"condition": "Average",
"rating": 1.5,
"ratingCount": 8,
"contactNumber": "1-086-577-2962 x19809",