-
Notifications
You must be signed in to change notification settings - Fork 0
/
R.generated.swift
2019 lines (1673 loc) · 132 KB
/
R.generated.swift
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
//
// This is a generated file, do not edit!
// Generated by R.swift, see https://github.com/mac-cain13/R.swift
//
import Foundation
import Rswift
import SideMenu
import UIKit
/// This `R` struct is generated and contains references to static resources.
struct R: Rswift.Validatable {
fileprivate static let applicationLocale = hostingBundle.preferredLocalizations.first.flatMap(Locale.init) ?? Locale.current
fileprivate static let hostingBundle = Bundle(for: R.Class.self)
static func validate() throws {
try intern.validate()
}
/// This `R.file` struct is generated, and contains static references to 2 files.
struct file {
/// Resource file `GoogleMapStyle.json`.
static let googleMapStyleJson = Rswift.FileResource(bundle: R.hostingBundle, name: "GoogleMapStyle", pathExtension: "json")
/// Resource file `GoogleMapStyle.night.json`.
static let googleMapStyleNightJson = Rswift.FileResource(bundle: R.hostingBundle, name: "GoogleMapStyle.night", pathExtension: "json")
/// `bundle.url(forResource: "GoogleMapStyle", withExtension: "json")`
static func googleMapStyleJson(_: Void = ()) -> Foundation.URL? {
let fileResource = R.file.googleMapStyleJson
return fileResource.bundle.url(forResource: fileResource)
}
/// `bundle.url(forResource: "GoogleMapStyle.night", withExtension: "json")`
static func googleMapStyleNightJson(_: Void = ()) -> Foundation.URL? {
let fileResource = R.file.googleMapStyleNightJson
return fileResource.bundle.url(forResource: fileResource)
}
fileprivate init() {}
}
/// This `R.image` struct is generated, and contains static references to 87 images.
struct image {
/// Image `Launch`.
static let launch = Rswift.ImageResource(bundle: R.hostingBundle, name: "Launch")
/// Image `boy-1`.
static let boy1 = Rswift.ImageResource(bundle: R.hostingBundle, name: "boy-1")
/// Image `boy-2`.
static let boy2 = Rswift.ImageResource(bundle: R.hostingBundle, name: "boy-2")
/// Image `btn-arrow-next-red`.
static let btnArrowNextRed = Rswift.ImageResource(bundle: R.hostingBundle, name: "btn-arrow-next-red")
/// Image `btn-arrow-next`.
static let btnArrowNext = Rswift.ImageResource(bundle: R.hostingBundle, name: "btn-arrow-next")
/// Image `btn-backspace-outline-red`.
static let btnBackspaceOutlineRed = Rswift.ImageResource(bundle: R.hostingBundle, name: "btn-backspace-outline-red")
/// Image `btn-center`.
static let btnCenter = Rswift.ImageResource(bundle: R.hostingBundle, name: "btn-center")
/// Image `btn-refresh`.
static let btnRefresh = Rswift.ImageResource(bundle: R.hostingBundle, name: "btn-refresh")
/// Image `btn-report-issue`.
static let btnReportIssue = Rswift.ImageResource(bundle: R.hostingBundle, name: "btn-report-issue")
/// Image `btn-ring`.
static let btnRing = Rswift.ImageResource(bundle: R.hostingBundle, name: "btn-ring")
/// Image `cluster-pin-100`.
static let clusterPin100 = Rswift.ImageResource(bundle: R.hostingBundle, name: "cluster-pin-100")
/// Image `cluster-pin-10`.
static let clusterPin10 = Rswift.ImageResource(bundle: R.hostingBundle, name: "cluster-pin-10")
/// Image `cluster-pin-20`.
static let clusterPin20 = Rswift.ImageResource(bundle: R.hostingBundle, name: "cluster-pin-20")
/// Image `cluster-pin-50`.
static let clusterPin50 = Rswift.ImageResource(bundle: R.hostingBundle, name: "cluster-pin-50")
/// Image `girl-1`.
static let girl1 = Rswift.ImageResource(bundle: R.hostingBundle, name: "girl-1")
/// Image `girl-2`.
static let girl2 = Rswift.ImageResource(bundle: R.hostingBundle, name: "girl-2")
/// Image `how-to-ride-1`.
static let howToRide1 = Rswift.ImageResource(bundle: R.hostingBundle, name: "how-to-ride-1")
/// Image `how-to-ride-2`.
static let howToRide2 = Rswift.ImageResource(bundle: R.hostingBundle, name: "how-to-ride-2")
/// Image `how-to-ride-3`.
static let howToRide3 = Rswift.ImageResource(bundle: R.hostingBundle, name: "how-to-ride-3")
/// Image `how-to-ride-4`.
static let howToRide4 = Rswift.ImageResource(bundle: R.hostingBundle, name: "how-to-ride-4")
/// Image `how-to-ride-5`.
static let howToRide5 = Rswift.ImageResource(bundle: R.hostingBundle, name: "how-to-ride-5")
/// Image `how-to-ride-6`.
static let howToRide6 = Rswift.ImageResource(bundle: R.hostingBundle, name: "how-to-ride-6")
/// Image `how-to-ride-7`.
static let howToRide7 = Rswift.ImageResource(bundle: R.hostingBundle, name: "how-to-ride-7")
/// Image `how-to-ride-8`.
static let howToRide8 = Rswift.ImageResource(bundle: R.hostingBundle, name: "how-to-ride-8")
/// Image `ic-arrow-right-dark-gray-16`.
static let icArrowRightDarkGray16 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-arrow-right-dark-gray-16")
/// Image `ic-back-dark-gray-16`.
static let icBackDarkGray16 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-back-dark-gray-16")
/// Image `ic-balance-dark-gray-16`.
static let icBalanceDarkGray16 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-balance-dark-gray-16")
/// Image `ic-battery-0-dark-gray-24`.
static let icBattery0DarkGray24 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-battery-0-dark-gray-24")
/// Image `ic-battery-100-dark-gray-24`.
static let icBattery100DarkGray24 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-battery-100-dark-gray-24")
/// Image `ic-battery-25-dark-gray-24`.
static let icBattery25DarkGray24 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-battery-25-dark-gray-24")
/// Image `ic-battery-50-dark-gray-24`.
static let icBattery50DarkGray24 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-battery-50-dark-gray-24")
/// Image `ic-battery-75-dark-gray-24`.
static let icBattery75DarkGray24 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-battery-75-dark-gray-24")
/// Image `ic-chat-dark-gray-16`.
static let icChatDarkGray16 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-chat-dark-gray-16")
/// Image `ic-clock-dark-gray-24`.
static let icClockDarkGray24 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-clock-dark-gray-24")
/// Image `ic-close-dark-gray-16`.
static let icCloseDarkGray16 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-close-dark-gray-16")
/// Image `ic-dollar-dark-gray-16`.
static let icDollarDarkGray16 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-dollar-dark-gray-16")
/// Image `ic-dollar-dark-gray-24`.
static let icDollarDarkGray24 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-dollar-dark-gray-24")
/// Image `ic-edit-white-16`.
static let icEditWhite16 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-edit-white-16")
/// Image `ic-guide-dark-gray-16`.
static let icGuideDarkGray16 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-guide-dark-gray-16")
/// Image `ic-hand-dark-gray-16`.
static let icHandDarkGray16 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-hand-dark-gray-16")
/// Image `ic-help-dark-gray-16`.
static let icHelpDarkGray16 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-help-dark-gray-16")
/// Image `ic-hide-dark-gray-16`.
static let icHideDarkGray16 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-hide-dark-gray-16")
/// Image `ic-history-dark-gray-16`.
static let icHistoryDarkGray16 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-history-dark-gray-16")
/// Image `ic-instagram-dark-gray-16`.
static let icInstagramDarkGray16 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-instagram-dark-gray-16")
/// Image `ic-location-dark-gray-24`.
static let icLocationDarkGray24 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-location-dark-gray-24")
/// Image `ic-location-final-red-32`.
static let icLocationFinalRed32 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-location-final-red-32")
/// Image `ic-location-red-32`.
static let icLocationRed32 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-location-red-32")
/// Image `ic-mastercard-dark-gray-16`.
static let icMastercardDarkGray16 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-mastercard-dark-gray-16")
/// Image `ic-mobile-dark-gray-16`.
static let icMobileDarkGray16 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-mobile-dark-gray-16")
/// Image `ic-payment-history-dark-gray-16`.
static let icPaymentHistoryDarkGray16 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-payment-history-dark-gray-16")
/// Image `ic-plus-red-16`.
static let icPlusRed16 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-plus-red-16")
/// Image `ic-rating-empty-red-32`.
static let icRatingEmptyRed32 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-rating-empty-red-32")
/// Image `ic-rating-red-32`.
static let icRatingRed32 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-rating-red-32")
/// Image `ic-report-issue-dark-gray-16`.
static let icReportIssueDarkGray16 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-report-issue-dark-gray-16")
/// Image `ic-show-dark-gray-16`.
static let icShowDarkGray16 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-show-dark-gray-16")
/// Image `ic-terms-dark-gray-16`.
static let icTermsDarkGray16 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-terms-dark-gray-16")
/// Image `ic-torch-off-white`.
static let icTorchOffWhite = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-torch-off-white")
/// Image `ic-torch-on-white`.
static let icTorchOnWhite = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-torch-on-white")
/// Image `ic-user-dark-gray-16`.
static let icUserDarkGray16 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-user-dark-gray-16")
/// Image `ic-wallet-dark-gray-16`.
static let icWalletDarkGray16 = Rswift.ImageResource(bundle: R.hostingBundle, name: "ic-wallet-dark-gray-16")
/// Image `img-damaged`.
static let imgDamaged = Rswift.ImageResource(bundle: R.hostingBundle, name: "img-damaged")
/// Image `img-illegal-parking-issue`.
static let imgIllegalParkingIssue = Rswift.ImageResource(bundle: R.hostingBundle, name: "img-illegal-parking-issue")
/// Image `img-location-services`.
static let imgLocationServices = Rswift.ImageResource(bundle: R.hostingBundle, name: "img-location-services")
/// Image `img-lock-unlock-issue`.
static let imgLockUnlockIssue = Rswift.ImageResource(bundle: R.hostingBundle, name: "img-lock-unlock-issue")
/// Image `img-notifications`.
static let imgNotifications = Rswift.ImageResource(bundle: R.hostingBundle, name: "img-notifications")
/// Image `img-other-issue`.
static let imgOtherIssue = Rswift.ImageResource(bundle: R.hostingBundle, name: "img-other-issue")
/// Image `img-parked-scooter-photo`.
static let imgParkedScooterPhoto = Rswift.ImageResource(bundle: R.hostingBundle, name: "img-parked-scooter-photo")
/// Image `img-ride-history-empty`.
static let imgRideHistoryEmpty = Rswift.ImageResource(bundle: R.hostingBundle, name: "img-ride-history-empty")
/// Image `img-scooter-enter-code`.
static let imgScooterEnterCode = Rswift.ImageResource(bundle: R.hostingBundle, name: "img-scooter-enter-code")
/// Image `img-scooter-model`.
static let imgScooterModel = Rswift.ImageResource(bundle: R.hostingBundle, name: "img-scooter-model")
/// Image `img-scooter-qr-code`.
static let imgScooterQrCode = Rswift.ImageResource(bundle: R.hostingBundle, name: "img-scooter-qr-code")
/// Image `img-sign-in-city`.
static let imgSignInCity = Rswift.ImageResource(bundle: R.hostingBundle, name: "img-sign-in-city")
/// Image `img-success-check`.
static let imgSuccessCheck = Rswift.ImageResource(bundle: R.hostingBundle, name: "img-success-check")
/// Image `img-transparent`.
static let imgTransparent = Rswift.ImageResource(bundle: R.hostingBundle, name: "img-transparent")
/// Image `img-unsafe-parking`.
static let imgUnsafeParking = Rswift.ImageResource(bundle: R.hostingBundle, name: "img-unsafe-parking")
/// Image `img-upload-photo`.
static let imgUploadPhoto = Rswift.ImageResource(bundle: R.hostingBundle, name: "img-upload-photo")
/// Image `man-1`.
static let man1 = Rswift.ImageResource(bundle: R.hostingBundle, name: "man-1")
/// Image `man-2`.
static let man2 = Rswift.ImageResource(bundle: R.hostingBundle, name: "man-2")
/// Image `scooter-pin-green`.
static let scooterPinGreen = Rswift.ImageResource(bundle: R.hostingBundle, name: "scooter-pin-green")
/// Image `scooter-pin-locked-green`.
static let scooterPinLockedGreen = Rswift.ImageResource(bundle: R.hostingBundle, name: "scooter-pin-locked-green")
/// Image `scooter-pin-red`.
static let scooterPinRed = Rswift.ImageResource(bundle: R.hostingBundle, name: "scooter-pin-red")
/// Image `scooter-pin-yellow`.
static let scooterPinYellow = Rswift.ImageResource(bundle: R.hostingBundle, name: "scooter-pin-yellow")
/// Image `social-facebook-dark-gray-35`.
static let socialFacebookDarkGray35 = Rswift.ImageResource(bundle: R.hostingBundle, name: "social-facebook-dark-gray-35")
/// Image `social-instagram-dark-gray-35`.
static let socialInstagramDarkGray35 = Rswift.ImageResource(bundle: R.hostingBundle, name: "social-instagram-dark-gray-35")
/// Image `social-twitter-dark-gray-35`.
static let socialTwitterDarkGray35 = Rswift.ImageResource(bundle: R.hostingBundle, name: "social-twitter-dark-gray-35")
/// Image `woman-1`.
static let woman1 = Rswift.ImageResource(bundle: R.hostingBundle, name: "woman-1")
/// Image `woman-2`.
static let woman2 = Rswift.ImageResource(bundle: R.hostingBundle, name: "woman-2")
/// `UIImage(named: "Launch", bundle: ..., traitCollection: ...)`
static func launch(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.launch, compatibleWith: traitCollection)
}
/// `UIImage(named: "boy-1", bundle: ..., traitCollection: ...)`
static func boy1(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.boy1, compatibleWith: traitCollection)
}
/// `UIImage(named: "boy-2", bundle: ..., traitCollection: ...)`
static func boy2(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.boy2, compatibleWith: traitCollection)
}
/// `UIImage(named: "btn-arrow-next", bundle: ..., traitCollection: ...)`
static func btnArrowNext(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.btnArrowNext, compatibleWith: traitCollection)
}
/// `UIImage(named: "btn-arrow-next-red", bundle: ..., traitCollection: ...)`
static func btnArrowNextRed(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.btnArrowNextRed, compatibleWith: traitCollection)
}
/// `UIImage(named: "btn-backspace-outline-red", bundle: ..., traitCollection: ...)`
static func btnBackspaceOutlineRed(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.btnBackspaceOutlineRed, compatibleWith: traitCollection)
}
/// `UIImage(named: "btn-center", bundle: ..., traitCollection: ...)`
static func btnCenter(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.btnCenter, compatibleWith: traitCollection)
}
/// `UIImage(named: "btn-refresh", bundle: ..., traitCollection: ...)`
static func btnRefresh(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.btnRefresh, compatibleWith: traitCollection)
}
/// `UIImage(named: "btn-report-issue", bundle: ..., traitCollection: ...)`
static func btnReportIssue(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.btnReportIssue, compatibleWith: traitCollection)
}
/// `UIImage(named: "btn-ring", bundle: ..., traitCollection: ...)`
static func btnRing(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.btnRing, compatibleWith: traitCollection)
}
/// `UIImage(named: "cluster-pin-10", bundle: ..., traitCollection: ...)`
static func clusterPin10(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.clusterPin10, compatibleWith: traitCollection)
}
/// `UIImage(named: "cluster-pin-100", bundle: ..., traitCollection: ...)`
static func clusterPin100(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.clusterPin100, compatibleWith: traitCollection)
}
/// `UIImage(named: "cluster-pin-20", bundle: ..., traitCollection: ...)`
static func clusterPin20(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.clusterPin20, compatibleWith: traitCollection)
}
/// `UIImage(named: "cluster-pin-50", bundle: ..., traitCollection: ...)`
static func clusterPin50(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.clusterPin50, compatibleWith: traitCollection)
}
/// `UIImage(named: "girl-1", bundle: ..., traitCollection: ...)`
static func girl1(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.girl1, compatibleWith: traitCollection)
}
/// `UIImage(named: "girl-2", bundle: ..., traitCollection: ...)`
static func girl2(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.girl2, compatibleWith: traitCollection)
}
/// `UIImage(named: "how-to-ride-1", bundle: ..., traitCollection: ...)`
static func howToRide1(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.howToRide1, compatibleWith: traitCollection)
}
/// `UIImage(named: "how-to-ride-2", bundle: ..., traitCollection: ...)`
static func howToRide2(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.howToRide2, compatibleWith: traitCollection)
}
/// `UIImage(named: "how-to-ride-3", bundle: ..., traitCollection: ...)`
static func howToRide3(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.howToRide3, compatibleWith: traitCollection)
}
/// `UIImage(named: "how-to-ride-4", bundle: ..., traitCollection: ...)`
static func howToRide4(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.howToRide4, compatibleWith: traitCollection)
}
/// `UIImage(named: "how-to-ride-5", bundle: ..., traitCollection: ...)`
static func howToRide5(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.howToRide5, compatibleWith: traitCollection)
}
/// `UIImage(named: "how-to-ride-6", bundle: ..., traitCollection: ...)`
static func howToRide6(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.howToRide6, compatibleWith: traitCollection)
}
/// `UIImage(named: "how-to-ride-7", bundle: ..., traitCollection: ...)`
static func howToRide7(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.howToRide7, compatibleWith: traitCollection)
}
/// `UIImage(named: "how-to-ride-8", bundle: ..., traitCollection: ...)`
static func howToRide8(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.howToRide8, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-arrow-right-dark-gray-16", bundle: ..., traitCollection: ...)`
static func icArrowRightDarkGray16(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icArrowRightDarkGray16, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-back-dark-gray-16", bundle: ..., traitCollection: ...)`
static func icBackDarkGray16(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icBackDarkGray16, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-balance-dark-gray-16", bundle: ..., traitCollection: ...)`
static func icBalanceDarkGray16(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icBalanceDarkGray16, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-battery-0-dark-gray-24", bundle: ..., traitCollection: ...)`
static func icBattery0DarkGray24(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icBattery0DarkGray24, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-battery-100-dark-gray-24", bundle: ..., traitCollection: ...)`
static func icBattery100DarkGray24(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icBattery100DarkGray24, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-battery-25-dark-gray-24", bundle: ..., traitCollection: ...)`
static func icBattery25DarkGray24(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icBattery25DarkGray24, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-battery-50-dark-gray-24", bundle: ..., traitCollection: ...)`
static func icBattery50DarkGray24(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icBattery50DarkGray24, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-battery-75-dark-gray-24", bundle: ..., traitCollection: ...)`
static func icBattery75DarkGray24(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icBattery75DarkGray24, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-chat-dark-gray-16", bundle: ..., traitCollection: ...)`
static func icChatDarkGray16(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icChatDarkGray16, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-clock-dark-gray-24", bundle: ..., traitCollection: ...)`
static func icClockDarkGray24(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icClockDarkGray24, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-close-dark-gray-16", bundle: ..., traitCollection: ...)`
static func icCloseDarkGray16(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icCloseDarkGray16, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-dollar-dark-gray-16", bundle: ..., traitCollection: ...)`
static func icDollarDarkGray16(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icDollarDarkGray16, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-dollar-dark-gray-24", bundle: ..., traitCollection: ...)`
static func icDollarDarkGray24(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icDollarDarkGray24, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-edit-white-16", bundle: ..., traitCollection: ...)`
static func icEditWhite16(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icEditWhite16, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-guide-dark-gray-16", bundle: ..., traitCollection: ...)`
static func icGuideDarkGray16(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icGuideDarkGray16, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-hand-dark-gray-16", bundle: ..., traitCollection: ...)`
static func icHandDarkGray16(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icHandDarkGray16, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-help-dark-gray-16", bundle: ..., traitCollection: ...)`
static func icHelpDarkGray16(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icHelpDarkGray16, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-hide-dark-gray-16", bundle: ..., traitCollection: ...)`
static func icHideDarkGray16(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icHideDarkGray16, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-history-dark-gray-16", bundle: ..., traitCollection: ...)`
static func icHistoryDarkGray16(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icHistoryDarkGray16, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-instagram-dark-gray-16", bundle: ..., traitCollection: ...)`
static func icInstagramDarkGray16(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icInstagramDarkGray16, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-location-dark-gray-24", bundle: ..., traitCollection: ...)`
static func icLocationDarkGray24(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icLocationDarkGray24, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-location-final-red-32", bundle: ..., traitCollection: ...)`
static func icLocationFinalRed32(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icLocationFinalRed32, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-location-red-32", bundle: ..., traitCollection: ...)`
static func icLocationRed32(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icLocationRed32, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-mastercard-dark-gray-16", bundle: ..., traitCollection: ...)`
static func icMastercardDarkGray16(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icMastercardDarkGray16, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-mobile-dark-gray-16", bundle: ..., traitCollection: ...)`
static func icMobileDarkGray16(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icMobileDarkGray16, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-payment-history-dark-gray-16", bundle: ..., traitCollection: ...)`
static func icPaymentHistoryDarkGray16(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icPaymentHistoryDarkGray16, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-plus-red-16", bundle: ..., traitCollection: ...)`
static func icPlusRed16(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icPlusRed16, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-rating-empty-red-32", bundle: ..., traitCollection: ...)`
static func icRatingEmptyRed32(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icRatingEmptyRed32, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-rating-red-32", bundle: ..., traitCollection: ...)`
static func icRatingRed32(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icRatingRed32, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-report-issue-dark-gray-16", bundle: ..., traitCollection: ...)`
static func icReportIssueDarkGray16(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icReportIssueDarkGray16, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-show-dark-gray-16", bundle: ..., traitCollection: ...)`
static func icShowDarkGray16(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icShowDarkGray16, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-terms-dark-gray-16", bundle: ..., traitCollection: ...)`
static func icTermsDarkGray16(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icTermsDarkGray16, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-torch-off-white", bundle: ..., traitCollection: ...)`
static func icTorchOffWhite(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icTorchOffWhite, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-torch-on-white", bundle: ..., traitCollection: ...)`
static func icTorchOnWhite(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icTorchOnWhite, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-user-dark-gray-16", bundle: ..., traitCollection: ...)`
static func icUserDarkGray16(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icUserDarkGray16, compatibleWith: traitCollection)
}
/// `UIImage(named: "ic-wallet-dark-gray-16", bundle: ..., traitCollection: ...)`
static func icWalletDarkGray16(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.icWalletDarkGray16, compatibleWith: traitCollection)
}
/// `UIImage(named: "img-damaged", bundle: ..., traitCollection: ...)`
static func imgDamaged(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.imgDamaged, compatibleWith: traitCollection)
}
/// `UIImage(named: "img-illegal-parking-issue", bundle: ..., traitCollection: ...)`
static func imgIllegalParkingIssue(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.imgIllegalParkingIssue, compatibleWith: traitCollection)
}
/// `UIImage(named: "img-location-services", bundle: ..., traitCollection: ...)`
static func imgLocationServices(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.imgLocationServices, compatibleWith: traitCollection)
}
/// `UIImage(named: "img-lock-unlock-issue", bundle: ..., traitCollection: ...)`
static func imgLockUnlockIssue(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.imgLockUnlockIssue, compatibleWith: traitCollection)
}
/// `UIImage(named: "img-notifications", bundle: ..., traitCollection: ...)`
static func imgNotifications(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.imgNotifications, compatibleWith: traitCollection)
}
/// `UIImage(named: "img-other-issue", bundle: ..., traitCollection: ...)`
static func imgOtherIssue(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.imgOtherIssue, compatibleWith: traitCollection)
}
/// `UIImage(named: "img-parked-scooter-photo", bundle: ..., traitCollection: ...)`
static func imgParkedScooterPhoto(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.imgParkedScooterPhoto, compatibleWith: traitCollection)
}
/// `UIImage(named: "img-ride-history-empty", bundle: ..., traitCollection: ...)`
static func imgRideHistoryEmpty(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.imgRideHistoryEmpty, compatibleWith: traitCollection)
}
/// `UIImage(named: "img-scooter-enter-code", bundle: ..., traitCollection: ...)`
static func imgScooterEnterCode(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.imgScooterEnterCode, compatibleWith: traitCollection)
}
/// `UIImage(named: "img-scooter-model", bundle: ..., traitCollection: ...)`
static func imgScooterModel(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.imgScooterModel, compatibleWith: traitCollection)
}
/// `UIImage(named: "img-scooter-qr-code", bundle: ..., traitCollection: ...)`
static func imgScooterQrCode(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.imgScooterQrCode, compatibleWith: traitCollection)
}
/// `UIImage(named: "img-sign-in-city", bundle: ..., traitCollection: ...)`
static func imgSignInCity(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.imgSignInCity, compatibleWith: traitCollection)
}
/// `UIImage(named: "img-success-check", bundle: ..., traitCollection: ...)`
static func imgSuccessCheck(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.imgSuccessCheck, compatibleWith: traitCollection)
}
/// `UIImage(named: "img-transparent", bundle: ..., traitCollection: ...)`
static func imgTransparent(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.imgTransparent, compatibleWith: traitCollection)
}
/// `UIImage(named: "img-unsafe-parking", bundle: ..., traitCollection: ...)`
static func imgUnsafeParking(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.imgUnsafeParking, compatibleWith: traitCollection)
}
/// `UIImage(named: "img-upload-photo", bundle: ..., traitCollection: ...)`
static func imgUploadPhoto(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.imgUploadPhoto, compatibleWith: traitCollection)
}
/// `UIImage(named: "man-1", bundle: ..., traitCollection: ...)`
static func man1(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.man1, compatibleWith: traitCollection)
}
/// `UIImage(named: "man-2", bundle: ..., traitCollection: ...)`
static func man2(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.man2, compatibleWith: traitCollection)
}
/// `UIImage(named: "scooter-pin-green", bundle: ..., traitCollection: ...)`
static func scooterPinGreen(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.scooterPinGreen, compatibleWith: traitCollection)
}
/// `UIImage(named: "scooter-pin-locked-green", bundle: ..., traitCollection: ...)`
static func scooterPinLockedGreen(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.scooterPinLockedGreen, compatibleWith: traitCollection)
}
/// `UIImage(named: "scooter-pin-red", bundle: ..., traitCollection: ...)`
static func scooterPinRed(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.scooterPinRed, compatibleWith: traitCollection)
}
/// `UIImage(named: "scooter-pin-yellow", bundle: ..., traitCollection: ...)`
static func scooterPinYellow(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.scooterPinYellow, compatibleWith: traitCollection)
}
/// `UIImage(named: "social-facebook-dark-gray-35", bundle: ..., traitCollection: ...)`
static func socialFacebookDarkGray35(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.socialFacebookDarkGray35, compatibleWith: traitCollection)
}
/// `UIImage(named: "social-instagram-dark-gray-35", bundle: ..., traitCollection: ...)`
static func socialInstagramDarkGray35(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.socialInstagramDarkGray35, compatibleWith: traitCollection)
}
/// `UIImage(named: "social-twitter-dark-gray-35", bundle: ..., traitCollection: ...)`
static func socialTwitterDarkGray35(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.socialTwitterDarkGray35, compatibleWith: traitCollection)
}
/// `UIImage(named: "woman-1", bundle: ..., traitCollection: ...)`
static func woman1(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.woman1, compatibleWith: traitCollection)
}
/// `UIImage(named: "woman-2", bundle: ..., traitCollection: ...)`
static func woman2(compatibleWith traitCollection: UIKit.UITraitCollection? = nil) -> UIKit.UIImage? {
return UIKit.UIImage(resource: R.image.woman2, compatibleWith: traitCollection)
}
fileprivate init() {}
}
/// This `R.nib` struct is generated, and contains static references to 6 nibs.
struct nib {
/// Nib `AvatarSelectionView`.
static let avatarSelectionView = _R.nib._AvatarSelectionView()
/// Nib `DialogViewController`.
static let dialogViewController = _R.nib._DialogViewController()
/// Nib `RidingInfoView`.
static let ridingInfoView = _R.nib._RidingInfoView()
/// Nib `UnlockInfoView`.
static let unlockInfoView = _R.nib._UnlockInfoView()
/// Nib `VehicleInfoView`.
static let vehicleInfoView = _R.nib._VehicleInfoView()
/// Nib `VehicleReservedInfoView`.
static let vehicleReservedInfoView = _R.nib._VehicleReservedInfoView()
/// `UINib(name: "AvatarSelectionView", in: bundle)`
@available(*, deprecated, message: "Use UINib(resource: R.nib.avatarSelectionView) instead")
static func avatarSelectionView(_: Void = ()) -> UIKit.UINib {
return UIKit.UINib(resource: R.nib.avatarSelectionView)
}
/// `UINib(name: "DialogViewController", in: bundle)`
@available(*, deprecated, message: "Use UINib(resource: R.nib.dialogViewController) instead")
static func dialogViewController(_: Void = ()) -> UIKit.UINib {
return UIKit.UINib(resource: R.nib.dialogViewController)
}
/// `UINib(name: "RidingInfoView", in: bundle)`
@available(*, deprecated, message: "Use UINib(resource: R.nib.ridingInfoView) instead")
static func ridingInfoView(_: Void = ()) -> UIKit.UINib {
return UIKit.UINib(resource: R.nib.ridingInfoView)
}
/// `UINib(name: "UnlockInfoView", in: bundle)`
@available(*, deprecated, message: "Use UINib(resource: R.nib.unlockInfoView) instead")
static func unlockInfoView(_: Void = ()) -> UIKit.UINib {
return UIKit.UINib(resource: R.nib.unlockInfoView)
}
/// `UINib(name: "VehicleInfoView", in: bundle)`
@available(*, deprecated, message: "Use UINib(resource: R.nib.vehicleInfoView) instead")
static func vehicleInfoView(_: Void = ()) -> UIKit.UINib {
return UIKit.UINib(resource: R.nib.vehicleInfoView)
}
/// `UINib(name: "VehicleReservedInfoView", in: bundle)`
@available(*, deprecated, message: "Use UINib(resource: R.nib.vehicleReservedInfoView) instead")
static func vehicleReservedInfoView(_: Void = ()) -> UIKit.UINib {
return UIKit.UINib(resource: R.nib.vehicleReservedInfoView)
}
static func avatarSelectionView(owner ownerOrNil: AnyObject?, options optionsOrNil: [UINib.OptionsKey : Any]? = nil) -> UIKit.UIView? {
return R.nib.avatarSelectionView.instantiate(withOwner: ownerOrNil, options: optionsOrNil)[0] as? UIKit.UIView
}
static func dialogViewController(owner ownerOrNil: AnyObject?, options optionsOrNil: [UINib.OptionsKey : Any]? = nil) -> UIKit.UIView? {
return R.nib.dialogViewController.instantiate(withOwner: ownerOrNil, options: optionsOrNil)[0] as? UIKit.UIView
}
static func ridingInfoView(owner ownerOrNil: AnyObject?, options optionsOrNil: [UINib.OptionsKey : Any]? = nil) -> UIKit.UIView? {
return R.nib.ridingInfoView.instantiate(withOwner: ownerOrNil, options: optionsOrNil)[0] as? UIKit.UIView
}
static func unlockInfoView(owner ownerOrNil: AnyObject?, options optionsOrNil: [UINib.OptionsKey : Any]? = nil) -> UIKit.UIView? {
return R.nib.unlockInfoView.instantiate(withOwner: ownerOrNil, options: optionsOrNil)[0] as? UIKit.UIView
}
static func vehicleInfoView(owner ownerOrNil: AnyObject?, options optionsOrNil: [UINib.OptionsKey : Any]? = nil) -> UIKit.UIView? {
return R.nib.vehicleInfoView.instantiate(withOwner: ownerOrNil, options: optionsOrNil)[0] as? UIKit.UIView
}
static func vehicleReservedInfoView(owner ownerOrNil: AnyObject?, options optionsOrNil: [UINib.OptionsKey : Any]? = nil) -> UIKit.UIView? {
return R.nib.vehicleReservedInfoView.instantiate(withOwner: ownerOrNil, options: optionsOrNil)[0] as? UIKit.UIView
}
fileprivate init() {}
}
/// This `R.reuseIdentifier` struct is generated, and contains static references to 6 reuse identifiers.
struct reuseIdentifier {
/// Reuse identifier `HistoryRideCell`.
static let historyRideCell: Rswift.ReuseIdentifier<HistoryRideCell> = Rswift.ReuseIdentifier(identifier: "HistoryRideCell")
/// Reuse identifier `NoPaymentCell`.
static let noPaymentCell: Rswift.ReuseIdentifier<UIKit.UITableViewCell> = Rswift.ReuseIdentifier(identifier: "NoPaymentCell")
/// Reuse identifier `NoRideCell`.
static let noRideCell: Rswift.ReuseIdentifier<UIKit.UITableViewCell> = Rswift.ReuseIdentifier(identifier: "NoRideCell")
/// Reuse identifier `NoTransactionCell`.
static let noTransactionCell: Rswift.ReuseIdentifier<UIKit.UITableViewCell> = Rswift.ReuseIdentifier(identifier: "NoTransactionCell")
/// Reuse identifier `PaymentCell`.
static let paymentCell: Rswift.ReuseIdentifier<PaymentCell> = Rswift.ReuseIdentifier(identifier: "PaymentCell")
/// Reuse identifier `TransactionCell`.
static let transactionCell: Rswift.ReuseIdentifier<TransactionCell> = Rswift.ReuseIdentifier(identifier: "TransactionCell")
fileprivate init() {}
}
/// This `R.segue` struct is generated, and contains static references to 23 view controllers.
struct segue {
/// This struct is generated for `AccountViewController`, and contains static references to 2 segues.
struct accountViewController {
/// Segue identifier `showPhotoShoot`.
static let showPhotoShoot: Rswift.StoryboardSegueIdentifier<UIKit.UIStoryboardSegue, AccountViewController, UIKit.UINavigationController> = Rswift.StoryboardSegueIdentifier(identifier: "showPhotoShoot")
/// Segue identifier `unwindToHome`.
static let unwindToHome: Rswift.StoryboardSegueIdentifier<UIKit.UIStoryboardSegue, AccountViewController, UIKit.UIViewController> = Rswift.StoryboardSegueIdentifier(identifier: "unwindToHome")
/// Optionally returns a typed version of segue `showPhotoShoot`.
/// Returns nil if either the segue identifier, the source, destination, or segue types don't match.
/// For use inside `prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?)`.
static func showPhotoShoot(segue: UIKit.UIStoryboardSegue) -> Rswift.TypedStoryboardSegueInfo<UIKit.UIStoryboardSegue, AccountViewController, UIKit.UINavigationController>? {
return Rswift.TypedStoryboardSegueInfo(segueIdentifier: R.segue.accountViewController.showPhotoShoot, segue: segue)
}
/// Optionally returns a typed version of segue `unwindToHome`.
/// Returns nil if either the segue identifier, the source, destination, or segue types don't match.
/// For use inside `prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?)`.
static func unwindToHome(segue: UIKit.UIStoryboardSegue) -> Rswift.TypedStoryboardSegueInfo<UIKit.UIStoryboardSegue, AccountViewController, UIKit.UIViewController>? {
return Rswift.TypedStoryboardSegueInfo(segueIdentifier: R.segue.accountViewController.unwindToHome, segue: segue)
}
fileprivate init() {}
}
/// This struct is generated for `EmailSignInPasswordViewController`, and contains static references to 1 segues.
struct emailSignInPasswordViewController {
/// Segue identifier `showMain`.
static let showMain: Rswift.StoryboardSegueIdentifier<UIKit.UIStoryboardSegue, EmailSignInPasswordViewController, MainViewController> = Rswift.StoryboardSegueIdentifier(identifier: "showMain")
/// Optionally returns a typed version of segue `showMain`.
/// Returns nil if either the segue identifier, the source, destination, or segue types don't match.
/// For use inside `prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?)`.
static func showMain(segue: UIKit.UIStoryboardSegue) -> Rswift.TypedStoryboardSegueInfo<UIKit.UIStoryboardSegue, EmailSignInPasswordViewController, MainViewController>? {
return Rswift.TypedStoryboardSegueInfo(segueIdentifier: R.segue.emailSignInPasswordViewController.showMain, segue: segue)
}
fileprivate init() {}
}
/// This struct is generated for `EmailSignInViewController`, and contains static references to 1 segues.
struct emailSignInViewController {
/// Segue identifier `showEnterPassword`.
static let showEnterPassword: Rswift.StoryboardSegueIdentifier<UIKit.UIStoryboardSegue, EmailSignInViewController, EmailSignInPasswordViewController> = Rswift.StoryboardSegueIdentifier(identifier: "showEnterPassword")
/// Optionally returns a typed version of segue `showEnterPassword`.
/// Returns nil if either the segue identifier, the source, destination, or segue types don't match.
/// For use inside `prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?)`.
static func showEnterPassword(segue: UIKit.UIStoryboardSegue) -> Rswift.TypedStoryboardSegueInfo<UIKit.UIStoryboardSegue, EmailSignInViewController, EmailSignInPasswordViewController>? {
return Rswift.TypedStoryboardSegueInfo(segueIdentifier: R.segue.emailSignInViewController.showEnterPassword, segue: segue)
}
fileprivate init() {}
}
/// This struct is generated for `HistoryRidesTableViewController`, and contains static references to 1 segues.
struct historyRidesTableViewController {
/// Segue identifier `showHistoryRide`.
static let showHistoryRide: Rswift.StoryboardSegueIdentifier<UIKit.UIStoryboardSegue, HistoryRidesTableViewController, HistoryRideViewController> = Rswift.StoryboardSegueIdentifier(identifier: "showHistoryRide")
/// Optionally returns a typed version of segue `showHistoryRide`.
/// Returns nil if either the segue identifier, the source, destination, or segue types don't match.
/// For use inside `prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?)`.
static func showHistoryRide(segue: UIKit.UIStoryboardSegue) -> Rswift.TypedStoryboardSegueInfo<UIKit.UIStoryboardSegue, HistoryRidesTableViewController, HistoryRideViewController>? {
return Rswift.TypedStoryboardSegueInfo(segueIdentifier: R.segue.historyRidesTableViewController.showHistoryRide, segue: segue)
}
fileprivate init() {}
}
/// This struct is generated for `HowToRideViewController`, and contains static references to 2 segues.
struct howToRideViewController {
/// Segue identifier `embedPageViewController`.
static let embedPageViewController: Rswift.StoryboardSegueIdentifier<UIKit.UIStoryboardSegue, HowToRideViewController, UIKit.UIPageViewController> = Rswift.StoryboardSegueIdentifier(identifier: "embedPageViewController")
/// Segue identifier `unwindToHome`.
static let unwindToHome: Rswift.StoryboardSegueIdentifier<UIKit.UIStoryboardSegue, HowToRideViewController, UIKit.UIViewController> = Rswift.StoryboardSegueIdentifier(identifier: "unwindToHome")
/// Optionally returns a typed version of segue `embedPageViewController`.
/// Returns nil if either the segue identifier, the source, destination, or segue types don't match.
/// For use inside `prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?)`.
static func embedPageViewController(segue: UIKit.UIStoryboardSegue) -> Rswift.TypedStoryboardSegueInfo<UIKit.UIStoryboardSegue, HowToRideViewController, UIKit.UIPageViewController>? {
return Rswift.TypedStoryboardSegueInfo(segueIdentifier: R.segue.howToRideViewController.embedPageViewController, segue: segue)
}
/// Optionally returns a typed version of segue `unwindToHome`.
/// Returns nil if either the segue identifier, the source, destination, or segue types don't match.
/// For use inside `prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?)`.
static func unwindToHome(segue: UIKit.UIStoryboardSegue) -> Rswift.TypedStoryboardSegueInfo<UIKit.UIStoryboardSegue, HowToRideViewController, UIKit.UIViewController>? {
return Rswift.TypedStoryboardSegueInfo(segueIdentifier: R.segue.howToRideViewController.unwindToHome, segue: segue)
}
fileprivate init() {}
}
/// This struct is generated for `IssueFormViewController`, and contains static references to 1 segues.
struct issueFormViewController {
/// Segue identifier `unwindToHome`.
static let unwindToHome: Rswift.StoryboardSegueIdentifier<UIKit.UIStoryboardSegue, IssueFormViewController, UIKit.UIViewController> = Rswift.StoryboardSegueIdentifier(identifier: "unwindToHome")
/// Optionally returns a typed version of segue `unwindToHome`.
/// Returns nil if either the segue identifier, the source, destination, or segue types don't match.
/// For use inside `prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?)`.
static func unwindToHome(segue: UIKit.UIStoryboardSegue) -> Rswift.TypedStoryboardSegueInfo<UIKit.UIStoryboardSegue, IssueFormViewController, UIKit.UIViewController>? {
return Rswift.TypedStoryboardSegueInfo(segueIdentifier: R.segue.issueFormViewController.unwindToHome, segue: segue)
}
fileprivate init() {}
}
/// This struct is generated for `MainViewController`, and contains static references to 10 segues.
struct mainViewController {
/// Segue identifier `showAccount`.
static let showAccount: Rswift.StoryboardSegueIdentifier<UIKit.UIStoryboardSegue, MainViewController, UIKit.UINavigationController> = Rswift.StoryboardSegueIdentifier(identifier: "showAccount")
/// Segue identifier `showHelp`.
static let showHelp: Rswift.StoryboardSegueIdentifier<UIKit.UIStoryboardSegue, MainViewController, UIKit.UINavigationController> = Rswift.StoryboardSegueIdentifier(identifier: "showHelp")
/// Segue identifier `showHistory`.
static let showHistory: Rswift.StoryboardSegueIdentifier<UIKit.UIStoryboardSegue, MainViewController, UIKit.UINavigationController> = Rswift.StoryboardSegueIdentifier(identifier: "showHistory")
/// Segue identifier `showHowToRide`.
static let showHowToRide: Rswift.StoryboardSegueIdentifier<UIKit.UIStoryboardSegue, MainViewController, HowToRideViewController> = Rswift.StoryboardSegueIdentifier(identifier: "showHowToRide")
/// Segue identifier `showNZLandTransportAct`.
static let showNZLandTransportAct: Rswift.StoryboardSegueIdentifier<UIKit.UIStoryboardSegue, MainViewController, NZLandTransportActViewController> = Rswift.StoryboardSegueIdentifier(identifier: "showNZLandTransportAct")
/// Segue identifier `showPhotoShoot`.
static let showPhotoShoot: Rswift.StoryboardSegueIdentifier<UIKit.UIStoryboardSegue, MainViewController, UIKit.UINavigationController> = Rswift.StoryboardSegueIdentifier(identifier: "showPhotoShoot")
/// Segue identifier `showRideFinished`.
static let showRideFinished: Rswift.StoryboardSegueIdentifier<UIKit.UIStoryboardSegue, MainViewController, UIKit.UINavigationController> = Rswift.StoryboardSegueIdentifier(identifier: "showRideFinished")
/// Segue identifier `showRidePaused`.
static let showRidePaused: Rswift.StoryboardSegueIdentifier<UIKit.UIStoryboardSegue, MainViewController, UIKit.UINavigationController> = Rswift.StoryboardSegueIdentifier(identifier: "showRidePaused")
/// Segue identifier `showUnlock`.
static let showUnlock: Rswift.StoryboardSegueIdentifier<UIKit.UIStoryboardSegue, MainViewController, UIKit.UINavigationController> = Rswift.StoryboardSegueIdentifier(identifier: "showUnlock")
/// Segue identifier `showWallet`.
static let showWallet: Rswift.StoryboardSegueIdentifier<UIKit.UIStoryboardSegue, MainViewController, UIKit.UINavigationController> = Rswift.StoryboardSegueIdentifier(identifier: "showWallet")
/// Optionally returns a typed version of segue `showAccount`.
/// Returns nil if either the segue identifier, the source, destination, or segue types don't match.
/// For use inside `prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?)`.
static func showAccount(segue: UIKit.UIStoryboardSegue) -> Rswift.TypedStoryboardSegueInfo<UIKit.UIStoryboardSegue, MainViewController, UIKit.UINavigationController>? {
return Rswift.TypedStoryboardSegueInfo(segueIdentifier: R.segue.mainViewController.showAccount, segue: segue)
}
/// Optionally returns a typed version of segue `showHelp`.
/// Returns nil if either the segue identifier, the source, destination, or segue types don't match.
/// For use inside `prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?)`.
static func showHelp(segue: UIKit.UIStoryboardSegue) -> Rswift.TypedStoryboardSegueInfo<UIKit.UIStoryboardSegue, MainViewController, UIKit.UINavigationController>? {
return Rswift.TypedStoryboardSegueInfo(segueIdentifier: R.segue.mainViewController.showHelp, segue: segue)
}
/// Optionally returns a typed version of segue `showHistory`.
/// Returns nil if either the segue identifier, the source, destination, or segue types don't match.
/// For use inside `prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?)`.
static func showHistory(segue: UIKit.UIStoryboardSegue) -> Rswift.TypedStoryboardSegueInfo<UIKit.UIStoryboardSegue, MainViewController, UIKit.UINavigationController>? {
return Rswift.TypedStoryboardSegueInfo(segueIdentifier: R.segue.mainViewController.showHistory, segue: segue)
}
/// Optionally returns a typed version of segue `showHowToRide`.
/// Returns nil if either the segue identifier, the source, destination, or segue types don't match.
/// For use inside `prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?)`.
static func showHowToRide(segue: UIKit.UIStoryboardSegue) -> Rswift.TypedStoryboardSegueInfo<UIKit.UIStoryboardSegue, MainViewController, HowToRideViewController>? {
return Rswift.TypedStoryboardSegueInfo(segueIdentifier: R.segue.mainViewController.showHowToRide, segue: segue)
}
/// Optionally returns a typed version of segue `showNZLandTransportAct`.
/// Returns nil if either the segue identifier, the source, destination, or segue types don't match.
/// For use inside `prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?)`.
static func showNZLandTransportAct(segue: UIKit.UIStoryboardSegue) -> Rswift.TypedStoryboardSegueInfo<UIKit.UIStoryboardSegue, MainViewController, NZLandTransportActViewController>? {
return Rswift.TypedStoryboardSegueInfo(segueIdentifier: R.segue.mainViewController.showNZLandTransportAct, segue: segue)
}
/// Optionally returns a typed version of segue `showPhotoShoot`.
/// Returns nil if either the segue identifier, the source, destination, or segue types don't match.
/// For use inside `prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?)`.
static func showPhotoShoot(segue: UIKit.UIStoryboardSegue) -> Rswift.TypedStoryboardSegueInfo<UIKit.UIStoryboardSegue, MainViewController, UIKit.UINavigationController>? {
return Rswift.TypedStoryboardSegueInfo(segueIdentifier: R.segue.mainViewController.showPhotoShoot, segue: segue)
}
/// Optionally returns a typed version of segue `showRideFinished`.
/// Returns nil if either the segue identifier, the source, destination, or segue types don't match.
/// For use inside `prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?)`.
static func showRideFinished(segue: UIKit.UIStoryboardSegue) -> Rswift.TypedStoryboardSegueInfo<UIKit.UIStoryboardSegue, MainViewController, UIKit.UINavigationController>? {
return Rswift.TypedStoryboardSegueInfo(segueIdentifier: R.segue.mainViewController.showRideFinished, segue: segue)
}
/// Optionally returns a typed version of segue `showRidePaused`.
/// Returns nil if either the segue identifier, the source, destination, or segue types don't match.
/// For use inside `prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?)`.
static func showRidePaused(segue: UIKit.UIStoryboardSegue) -> Rswift.TypedStoryboardSegueInfo<UIKit.UIStoryboardSegue, MainViewController, UIKit.UINavigationController>? {
return Rswift.TypedStoryboardSegueInfo(segueIdentifier: R.segue.mainViewController.showRidePaused, segue: segue)
}
/// Optionally returns a typed version of segue `showUnlock`.
/// Returns nil if either the segue identifier, the source, destination, or segue types don't match.
/// For use inside `prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?)`.
static func showUnlock(segue: UIKit.UIStoryboardSegue) -> Rswift.TypedStoryboardSegueInfo<UIKit.UIStoryboardSegue, MainViewController, UIKit.UINavigationController>? {
return Rswift.TypedStoryboardSegueInfo(segueIdentifier: R.segue.mainViewController.showUnlock, segue: segue)
}
/// Optionally returns a typed version of segue `showWallet`.
/// Returns nil if either the segue identifier, the source, destination, or segue types don't match.
/// For use inside `prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?)`.
static func showWallet(segue: UIKit.UIStoryboardSegue) -> Rswift.TypedStoryboardSegueInfo<UIKit.UIStoryboardSegue, MainViewController, UIKit.UINavigationController>? {
return Rswift.TypedStoryboardSegueInfo(segueIdentifier: R.segue.mainViewController.showWallet, segue: segue)
}
fileprivate init() {}
}
/// This struct is generated for `ManualUnlockViewController`, and contains static references to 2 segues.
struct manualUnlockViewController {
/// Segue identifier `showTopUp`.
static let showTopUp: Rswift.StoryboardSegueIdentifier<UIKit.UIStoryboardSegue, ManualUnlockViewController, UIKit.UINavigationController> = Rswift.StoryboardSegueIdentifier(identifier: "showTopUp")
/// Segue identifier `unwindToHome`.
static let unwindToHome: Rswift.StoryboardSegueIdentifier<UIStoryboardSegueWithCompletion, ManualUnlockViewController, UIKit.UIViewController> = Rswift.StoryboardSegueIdentifier(identifier: "unwindToHome")
/// Optionally returns a typed version of segue `showTopUp`.
/// Returns nil if either the segue identifier, the source, destination, or segue types don't match.
/// For use inside `prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?)`.
static func showTopUp(segue: UIKit.UIStoryboardSegue) -> Rswift.TypedStoryboardSegueInfo<UIKit.UIStoryboardSegue, ManualUnlockViewController, UIKit.UINavigationController>? {
return Rswift.TypedStoryboardSegueInfo(segueIdentifier: R.segue.manualUnlockViewController.showTopUp, segue: segue)
}
/// Optionally returns a typed version of segue `unwindToHome`.
/// Returns nil if either the segue identifier, the source, destination, or segue types don't match.
/// For use inside `prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?)`.
static func unwindToHome(segue: UIKit.UIStoryboardSegue) -> Rswift.TypedStoryboardSegueInfo<UIStoryboardSegueWithCompletion, ManualUnlockViewController, UIKit.UIViewController>? {
return Rswift.TypedStoryboardSegueInfo(segueIdentifier: R.segue.manualUnlockViewController.unwindToHome, segue: segue)
}
fileprivate init() {}
}
/// This struct is generated for `MobileRequestCodeViewController`, and contains static references to 1 segues.
struct mobileRequestCodeViewController {
/// Segue identifier `showVerifyCode`.
static let showVerifyCode: Rswift.StoryboardSegueIdentifier<UIKit.UIStoryboardSegue, MobileRequestCodeViewController, MobileVerifyCodeViewController> = Rswift.StoryboardSegueIdentifier(identifier: "showVerifyCode")
/// Optionally returns a typed version of segue `showVerifyCode`.
/// Returns nil if either the segue identifier, the source, destination, or segue types don't match.
/// For use inside `prepareForSegue(segue: UIStoryboardSegue, sender: AnyObject?)`.
static func showVerifyCode(segue: UIKit.UIStoryboardSegue) -> Rswift.TypedStoryboardSegueInfo<UIKit.UIStoryboardSegue, MobileRequestCodeViewController, MobileVerifyCodeViewController>? {
return Rswift.TypedStoryboardSegueInfo(segueIdentifier: R.segue.mobileRequestCodeViewController.showVerifyCode, segue: segue)
}
fileprivate init() {}
}
/// This struct is generated for `MobileVerifyCodeViewController`, and contains static references to 2 segues.
struct mobileVerifyCodeViewController {
/// Segue identifier `showMain`.