This repository has been archived by the owner on May 27, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgtfs-realtime.pb.h
6584 lines (6035 loc) · 265 KB
/
gtfs-realtime.pb.h
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
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: gtfs-realtime.proto
#ifndef PROTOBUF_INCLUDED_gtfs_2drealtime_2eproto
#define PROTOBUF_INCLUDED_gtfs_2drealtime_2eproto
#include <limits>
#include <string>
#include <google/protobuf/port_def.inc>
#if PROTOBUF_VERSION < 3007000
#error This file was generated by a newer version of protoc which is
#error incompatible with your Protocol Buffer headers. Please update
#error your headers.
#endif
#if 3007000 < PROTOBUF_MIN_PROTOC_VERSION
#error This file was generated by an older version of protoc which is
#error incompatible with your Protocol Buffer headers. Please
#error regenerate this file with a newer version of protoc.
#endif
#include <google/protobuf/port_undef.inc>
#include <google/protobuf/io/coded_stream.h>
#include <google/protobuf/arena.h>
#include <google/protobuf/arenastring.h>
#include <google/protobuf/generated_message_table_driven.h>
#include <google/protobuf/generated_message_util.h>
#include <google/protobuf/inlined_string_field.h>
#include <google/protobuf/metadata.h>
#include <google/protobuf/message.h>
#include <google/protobuf/repeated_field.h> // IWYU pragma: export
#include <google/protobuf/extension_set.h> // IWYU pragma: export
#include <google/protobuf/generated_enum_reflection.h>
#include <google/protobuf/unknown_field_set.h>
// @@protoc_insertion_point(includes)
#include <google/protobuf/port_def.inc>
#define PROTOBUF_INTERNAL_EXPORT_gtfs_2drealtime_2eproto
// Internal implementation detail -- do not use these members.
struct TableStruct_gtfs_2drealtime_2eproto {
static const ::google::protobuf::internal::ParseTableField entries[]
PROTOBUF_SECTION_VARIABLE(protodesc_cold);
static const ::google::protobuf::internal::AuxillaryParseTableField aux[]
PROTOBUF_SECTION_VARIABLE(protodesc_cold);
static const ::google::protobuf::internal::ParseTable schema[17]
PROTOBUF_SECTION_VARIABLE(protodesc_cold);
static const ::google::protobuf::internal::FieldMetadata field_metadata[];
static const ::google::protobuf::internal::SerializationTable serialization_table[];
static const ::google::protobuf::uint32 offsets[];
};
void AddDescriptors_gtfs_2drealtime_2eproto();
namespace transit_realtime {
class Alert;
class AlertDefaultTypeInternal;
extern AlertDefaultTypeInternal _Alert_default_instance_;
class EntitySelector;
class EntitySelectorDefaultTypeInternal;
extern EntitySelectorDefaultTypeInternal _EntitySelector_default_instance_;
class FeedEntity;
class FeedEntityDefaultTypeInternal;
extern FeedEntityDefaultTypeInternal _FeedEntity_default_instance_;
class FeedHeader;
class FeedHeaderDefaultTypeInternal;
extern FeedHeaderDefaultTypeInternal _FeedHeader_default_instance_;
class FeedMessage;
class FeedMessageDefaultTypeInternal;
extern FeedMessageDefaultTypeInternal _FeedMessage_default_instance_;
class Position;
class PositionDefaultTypeInternal;
extern PositionDefaultTypeInternal _Position_default_instance_;
class TimeRange;
class TimeRangeDefaultTypeInternal;
extern TimeRangeDefaultTypeInternal _TimeRange_default_instance_;
class TranslatedString;
class TranslatedStringDefaultTypeInternal;
extern TranslatedStringDefaultTypeInternal _TranslatedString_default_instance_;
class TranslatedString_Translation;
class TranslatedString_TranslationDefaultTypeInternal;
extern TranslatedString_TranslationDefaultTypeInternal _TranslatedString_Translation_default_instance_;
class TripDescriptor;
class TripDescriptorDefaultTypeInternal;
extern TripDescriptorDefaultTypeInternal _TripDescriptor_default_instance_;
class TripUpdate;
class TripUpdateDefaultTypeInternal;
extern TripUpdateDefaultTypeInternal _TripUpdate_default_instance_;
class TripUpdate_StopTimeEvent;
class TripUpdate_StopTimeEventDefaultTypeInternal;
extern TripUpdate_StopTimeEventDefaultTypeInternal _TripUpdate_StopTimeEvent_default_instance_;
class TripUpdate_StopTimeUpdate;
class TripUpdate_StopTimeUpdateDefaultTypeInternal;
extern TripUpdate_StopTimeUpdateDefaultTypeInternal _TripUpdate_StopTimeUpdate_default_instance_;
class TripUpdate_TripProperties;
class TripUpdate_TripPropertiesDefaultTypeInternal;
extern TripUpdate_TripPropertiesDefaultTypeInternal _TripUpdate_TripProperties_default_instance_;
class VehicleDescriptor;
class VehicleDescriptorDefaultTypeInternal;
extern VehicleDescriptorDefaultTypeInternal _VehicleDescriptor_default_instance_;
class VehiclePosition;
class VehiclePositionDefaultTypeInternal;
extern VehiclePositionDefaultTypeInternal _VehiclePosition_default_instance_;
class VehiclePosition_CarriageDetails;
class VehiclePosition_CarriageDetailsDefaultTypeInternal;
extern VehiclePosition_CarriageDetailsDefaultTypeInternal _VehiclePosition_CarriageDetails_default_instance_;
} // namespace transit_realtime
namespace google {
namespace protobuf {
template<> ::transit_realtime::Alert* Arena::CreateMaybeMessage<::transit_realtime::Alert>(Arena*);
template<> ::transit_realtime::EntitySelector* Arena::CreateMaybeMessage<::transit_realtime::EntitySelector>(Arena*);
template<> ::transit_realtime::FeedEntity* Arena::CreateMaybeMessage<::transit_realtime::FeedEntity>(Arena*);
template<> ::transit_realtime::FeedHeader* Arena::CreateMaybeMessage<::transit_realtime::FeedHeader>(Arena*);
template<> ::transit_realtime::FeedMessage* Arena::CreateMaybeMessage<::transit_realtime::FeedMessage>(Arena*);
template<> ::transit_realtime::Position* Arena::CreateMaybeMessage<::transit_realtime::Position>(Arena*);
template<> ::transit_realtime::TimeRange* Arena::CreateMaybeMessage<::transit_realtime::TimeRange>(Arena*);
template<> ::transit_realtime::TranslatedString* Arena::CreateMaybeMessage<::transit_realtime::TranslatedString>(Arena*);
template<> ::transit_realtime::TranslatedString_Translation* Arena::CreateMaybeMessage<::transit_realtime::TranslatedString_Translation>(Arena*);
template<> ::transit_realtime::TripDescriptor* Arena::CreateMaybeMessage<::transit_realtime::TripDescriptor>(Arena*);
template<> ::transit_realtime::TripUpdate* Arena::CreateMaybeMessage<::transit_realtime::TripUpdate>(Arena*);
template<> ::transit_realtime::TripUpdate_StopTimeEvent* Arena::CreateMaybeMessage<::transit_realtime::TripUpdate_StopTimeEvent>(Arena*);
template<> ::transit_realtime::TripUpdate_StopTimeUpdate* Arena::CreateMaybeMessage<::transit_realtime::TripUpdate_StopTimeUpdate>(Arena*);
template<> ::transit_realtime::TripUpdate_TripProperties* Arena::CreateMaybeMessage<::transit_realtime::TripUpdate_TripProperties>(Arena*);
template<> ::transit_realtime::VehicleDescriptor* Arena::CreateMaybeMessage<::transit_realtime::VehicleDescriptor>(Arena*);
template<> ::transit_realtime::VehiclePosition* Arena::CreateMaybeMessage<::transit_realtime::VehiclePosition>(Arena*);
template<> ::transit_realtime::VehiclePosition_CarriageDetails* Arena::CreateMaybeMessage<::transit_realtime::VehiclePosition_CarriageDetails>(Arena*);
} // namespace protobuf
} // namespace google
namespace transit_realtime {
enum FeedHeader_Incrementality {
FeedHeader_Incrementality_FULL_DATASET = 0,
FeedHeader_Incrementality_DIFFERENTIAL = 1
};
bool FeedHeader_Incrementality_IsValid(int value);
const FeedHeader_Incrementality FeedHeader_Incrementality_Incrementality_MIN = FeedHeader_Incrementality_FULL_DATASET;
const FeedHeader_Incrementality FeedHeader_Incrementality_Incrementality_MAX = FeedHeader_Incrementality_DIFFERENTIAL;
const int FeedHeader_Incrementality_Incrementality_ARRAYSIZE = FeedHeader_Incrementality_Incrementality_MAX + 1;
const ::google::protobuf::EnumDescriptor* FeedHeader_Incrementality_descriptor();
inline const ::std::string& FeedHeader_Incrementality_Name(FeedHeader_Incrementality value) {
return ::google::protobuf::internal::NameOfEnum(
FeedHeader_Incrementality_descriptor(), value);
}
inline bool FeedHeader_Incrementality_Parse(
const ::std::string& name, FeedHeader_Incrementality* value) {
return ::google::protobuf::internal::ParseNamedEnum<FeedHeader_Incrementality>(
FeedHeader_Incrementality_descriptor(), name, value);
}
enum TripUpdate_StopTimeUpdate_ScheduleRelationship {
TripUpdate_StopTimeUpdate_ScheduleRelationship_SCHEDULED = 0,
TripUpdate_StopTimeUpdate_ScheduleRelationship_SKIPPED = 1,
TripUpdate_StopTimeUpdate_ScheduleRelationship_NO_DATA = 2,
TripUpdate_StopTimeUpdate_ScheduleRelationship_UNSCHEDULED = 3
};
bool TripUpdate_StopTimeUpdate_ScheduleRelationship_IsValid(int value);
const TripUpdate_StopTimeUpdate_ScheduleRelationship TripUpdate_StopTimeUpdate_ScheduleRelationship_ScheduleRelationship_MIN = TripUpdate_StopTimeUpdate_ScheduleRelationship_SCHEDULED;
const TripUpdate_StopTimeUpdate_ScheduleRelationship TripUpdate_StopTimeUpdate_ScheduleRelationship_ScheduleRelationship_MAX = TripUpdate_StopTimeUpdate_ScheduleRelationship_UNSCHEDULED;
const int TripUpdate_StopTimeUpdate_ScheduleRelationship_ScheduleRelationship_ARRAYSIZE = TripUpdate_StopTimeUpdate_ScheduleRelationship_ScheduleRelationship_MAX + 1;
const ::google::protobuf::EnumDescriptor* TripUpdate_StopTimeUpdate_ScheduleRelationship_descriptor();
inline const ::std::string& TripUpdate_StopTimeUpdate_ScheduleRelationship_Name(TripUpdate_StopTimeUpdate_ScheduleRelationship value) {
return ::google::protobuf::internal::NameOfEnum(
TripUpdate_StopTimeUpdate_ScheduleRelationship_descriptor(), value);
}
inline bool TripUpdate_StopTimeUpdate_ScheduleRelationship_Parse(
const ::std::string& name, TripUpdate_StopTimeUpdate_ScheduleRelationship* value) {
return ::google::protobuf::internal::ParseNamedEnum<TripUpdate_StopTimeUpdate_ScheduleRelationship>(
TripUpdate_StopTimeUpdate_ScheduleRelationship_descriptor(), name, value);
}
enum VehiclePosition_VehicleStopStatus {
VehiclePosition_VehicleStopStatus_INCOMING_AT = 0,
VehiclePosition_VehicleStopStatus_STOPPED_AT = 1,
VehiclePosition_VehicleStopStatus_IN_TRANSIT_TO = 2
};
bool VehiclePosition_VehicleStopStatus_IsValid(int value);
const VehiclePosition_VehicleStopStatus VehiclePosition_VehicleStopStatus_VehicleStopStatus_MIN = VehiclePosition_VehicleStopStatus_INCOMING_AT;
const VehiclePosition_VehicleStopStatus VehiclePosition_VehicleStopStatus_VehicleStopStatus_MAX = VehiclePosition_VehicleStopStatus_IN_TRANSIT_TO;
const int VehiclePosition_VehicleStopStatus_VehicleStopStatus_ARRAYSIZE = VehiclePosition_VehicleStopStatus_VehicleStopStatus_MAX + 1;
const ::google::protobuf::EnumDescriptor* VehiclePosition_VehicleStopStatus_descriptor();
inline const ::std::string& VehiclePosition_VehicleStopStatus_Name(VehiclePosition_VehicleStopStatus value) {
return ::google::protobuf::internal::NameOfEnum(
VehiclePosition_VehicleStopStatus_descriptor(), value);
}
inline bool VehiclePosition_VehicleStopStatus_Parse(
const ::std::string& name, VehiclePosition_VehicleStopStatus* value) {
return ::google::protobuf::internal::ParseNamedEnum<VehiclePosition_VehicleStopStatus>(
VehiclePosition_VehicleStopStatus_descriptor(), name, value);
}
enum VehiclePosition_CongestionLevel {
VehiclePosition_CongestionLevel_UNKNOWN_CONGESTION_LEVEL = 0,
VehiclePosition_CongestionLevel_RUNNING_SMOOTHLY = 1,
VehiclePosition_CongestionLevel_STOP_AND_GO = 2,
VehiclePosition_CongestionLevel_CONGESTION = 3,
VehiclePosition_CongestionLevel_SEVERE_CONGESTION = 4
};
bool VehiclePosition_CongestionLevel_IsValid(int value);
const VehiclePosition_CongestionLevel VehiclePosition_CongestionLevel_CongestionLevel_MIN = VehiclePosition_CongestionLevel_UNKNOWN_CONGESTION_LEVEL;
const VehiclePosition_CongestionLevel VehiclePosition_CongestionLevel_CongestionLevel_MAX = VehiclePosition_CongestionLevel_SEVERE_CONGESTION;
const int VehiclePosition_CongestionLevel_CongestionLevel_ARRAYSIZE = VehiclePosition_CongestionLevel_CongestionLevel_MAX + 1;
const ::google::protobuf::EnumDescriptor* VehiclePosition_CongestionLevel_descriptor();
inline const ::std::string& VehiclePosition_CongestionLevel_Name(VehiclePosition_CongestionLevel value) {
return ::google::protobuf::internal::NameOfEnum(
VehiclePosition_CongestionLevel_descriptor(), value);
}
inline bool VehiclePosition_CongestionLevel_Parse(
const ::std::string& name, VehiclePosition_CongestionLevel* value) {
return ::google::protobuf::internal::ParseNamedEnum<VehiclePosition_CongestionLevel>(
VehiclePosition_CongestionLevel_descriptor(), name, value);
}
enum VehiclePosition_OccupancyStatus {
VehiclePosition_OccupancyStatus_EMPTY = 0,
VehiclePosition_OccupancyStatus_MANY_SEATS_AVAILABLE = 1,
VehiclePosition_OccupancyStatus_FEW_SEATS_AVAILABLE = 2,
VehiclePosition_OccupancyStatus_STANDING_ROOM_ONLY = 3,
VehiclePosition_OccupancyStatus_CRUSHED_STANDING_ROOM_ONLY = 4,
VehiclePosition_OccupancyStatus_FULL = 5,
VehiclePosition_OccupancyStatus_NOT_ACCEPTING_PASSENGERS = 6,
VehiclePosition_OccupancyStatus_NO_DATA_AVAILABLE = 7,
VehiclePosition_OccupancyStatus_NOT_BOARDABLE = 8
};
bool VehiclePosition_OccupancyStatus_IsValid(int value);
const VehiclePosition_OccupancyStatus VehiclePosition_OccupancyStatus_OccupancyStatus_MIN = VehiclePosition_OccupancyStatus_EMPTY;
const VehiclePosition_OccupancyStatus VehiclePosition_OccupancyStatus_OccupancyStatus_MAX = VehiclePosition_OccupancyStatus_NOT_BOARDABLE;
const int VehiclePosition_OccupancyStatus_OccupancyStatus_ARRAYSIZE = VehiclePosition_OccupancyStatus_OccupancyStatus_MAX + 1;
const ::google::protobuf::EnumDescriptor* VehiclePosition_OccupancyStatus_descriptor();
inline const ::std::string& VehiclePosition_OccupancyStatus_Name(VehiclePosition_OccupancyStatus value) {
return ::google::protobuf::internal::NameOfEnum(
VehiclePosition_OccupancyStatus_descriptor(), value);
}
inline bool VehiclePosition_OccupancyStatus_Parse(
const ::std::string& name, VehiclePosition_OccupancyStatus* value) {
return ::google::protobuf::internal::ParseNamedEnum<VehiclePosition_OccupancyStatus>(
VehiclePosition_OccupancyStatus_descriptor(), name, value);
}
enum Alert_Cause {
Alert_Cause_UNKNOWN_CAUSE = 1,
Alert_Cause_OTHER_CAUSE = 2,
Alert_Cause_TECHNICAL_PROBLEM = 3,
Alert_Cause_STRIKE = 4,
Alert_Cause_DEMONSTRATION = 5,
Alert_Cause_ACCIDENT = 6,
Alert_Cause_HOLIDAY = 7,
Alert_Cause_WEATHER = 8,
Alert_Cause_MAINTENANCE = 9,
Alert_Cause_CONSTRUCTION = 10,
Alert_Cause_POLICE_ACTIVITY = 11,
Alert_Cause_MEDICAL_EMERGENCY = 12
};
bool Alert_Cause_IsValid(int value);
const Alert_Cause Alert_Cause_Cause_MIN = Alert_Cause_UNKNOWN_CAUSE;
const Alert_Cause Alert_Cause_Cause_MAX = Alert_Cause_MEDICAL_EMERGENCY;
const int Alert_Cause_Cause_ARRAYSIZE = Alert_Cause_Cause_MAX + 1;
const ::google::protobuf::EnumDescriptor* Alert_Cause_descriptor();
inline const ::std::string& Alert_Cause_Name(Alert_Cause value) {
return ::google::protobuf::internal::NameOfEnum(
Alert_Cause_descriptor(), value);
}
inline bool Alert_Cause_Parse(
const ::std::string& name, Alert_Cause* value) {
return ::google::protobuf::internal::ParseNamedEnum<Alert_Cause>(
Alert_Cause_descriptor(), name, value);
}
enum Alert_Effect {
Alert_Effect_NO_SERVICE = 1,
Alert_Effect_REDUCED_SERVICE = 2,
Alert_Effect_SIGNIFICANT_DELAYS = 3,
Alert_Effect_DETOUR = 4,
Alert_Effect_ADDITIONAL_SERVICE = 5,
Alert_Effect_MODIFIED_SERVICE = 6,
Alert_Effect_OTHER_EFFECT = 7,
Alert_Effect_UNKNOWN_EFFECT = 8,
Alert_Effect_STOP_MOVED = 9,
Alert_Effect_NO_EFFECT = 10,
Alert_Effect_ACCESSIBILITY_ISSUE = 11
};
bool Alert_Effect_IsValid(int value);
const Alert_Effect Alert_Effect_Effect_MIN = Alert_Effect_NO_SERVICE;
const Alert_Effect Alert_Effect_Effect_MAX = Alert_Effect_ACCESSIBILITY_ISSUE;
const int Alert_Effect_Effect_ARRAYSIZE = Alert_Effect_Effect_MAX + 1;
const ::google::protobuf::EnumDescriptor* Alert_Effect_descriptor();
inline const ::std::string& Alert_Effect_Name(Alert_Effect value) {
return ::google::protobuf::internal::NameOfEnum(
Alert_Effect_descriptor(), value);
}
inline bool Alert_Effect_Parse(
const ::std::string& name, Alert_Effect* value) {
return ::google::protobuf::internal::ParseNamedEnum<Alert_Effect>(
Alert_Effect_descriptor(), name, value);
}
enum Alert_SeverityLevel {
Alert_SeverityLevel_UNKNOWN_SEVERITY = 1,
Alert_SeverityLevel_INFO = 2,
Alert_SeverityLevel_WARNING = 3,
Alert_SeverityLevel_SEVERE = 4
};
bool Alert_SeverityLevel_IsValid(int value);
const Alert_SeverityLevel Alert_SeverityLevel_SeverityLevel_MIN = Alert_SeverityLevel_UNKNOWN_SEVERITY;
const Alert_SeverityLevel Alert_SeverityLevel_SeverityLevel_MAX = Alert_SeverityLevel_SEVERE;
const int Alert_SeverityLevel_SeverityLevel_ARRAYSIZE = Alert_SeverityLevel_SeverityLevel_MAX + 1;
const ::google::protobuf::EnumDescriptor* Alert_SeverityLevel_descriptor();
inline const ::std::string& Alert_SeverityLevel_Name(Alert_SeverityLevel value) {
return ::google::protobuf::internal::NameOfEnum(
Alert_SeverityLevel_descriptor(), value);
}
inline bool Alert_SeverityLevel_Parse(
const ::std::string& name, Alert_SeverityLevel* value) {
return ::google::protobuf::internal::ParseNamedEnum<Alert_SeverityLevel>(
Alert_SeverityLevel_descriptor(), name, value);
}
enum TripDescriptor_ScheduleRelationship {
TripDescriptor_ScheduleRelationship_SCHEDULED = 0,
TripDescriptor_ScheduleRelationship_ADDED = 1,
TripDescriptor_ScheduleRelationship_UNSCHEDULED = 2,
TripDescriptor_ScheduleRelationship_CANCELED = 3,
TripDescriptor_ScheduleRelationship_REPLACEMENT PROTOBUF_DEPRECATED = 5,
TripDescriptor_ScheduleRelationship_DUPLICATED = 6
};
bool TripDescriptor_ScheduleRelationship_IsValid(int value);
const TripDescriptor_ScheduleRelationship TripDescriptor_ScheduleRelationship_ScheduleRelationship_MIN = TripDescriptor_ScheduleRelationship_SCHEDULED;
const TripDescriptor_ScheduleRelationship TripDescriptor_ScheduleRelationship_ScheduleRelationship_MAX = TripDescriptor_ScheduleRelationship_DUPLICATED;
const int TripDescriptor_ScheduleRelationship_ScheduleRelationship_ARRAYSIZE = TripDescriptor_ScheduleRelationship_ScheduleRelationship_MAX + 1;
const ::google::protobuf::EnumDescriptor* TripDescriptor_ScheduleRelationship_descriptor();
inline const ::std::string& TripDescriptor_ScheduleRelationship_Name(TripDescriptor_ScheduleRelationship value) {
return ::google::protobuf::internal::NameOfEnum(
TripDescriptor_ScheduleRelationship_descriptor(), value);
}
inline bool TripDescriptor_ScheduleRelationship_Parse(
const ::std::string& name, TripDescriptor_ScheduleRelationship* value) {
return ::google::protobuf::internal::ParseNamedEnum<TripDescriptor_ScheduleRelationship>(
TripDescriptor_ScheduleRelationship_descriptor(), name, value);
}
// ===================================================================
class FeedMessage final :
public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:transit_realtime.FeedMessage) */ {
public:
FeedMessage();
virtual ~FeedMessage();
FeedMessage(const FeedMessage& from);
inline FeedMessage& operator=(const FeedMessage& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
FeedMessage(FeedMessage&& from) noexcept
: FeedMessage() {
*this = ::std::move(from);
}
inline FeedMessage& operator=(FeedMessage&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _internal_metadata_.unknown_fields();
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return _internal_metadata_.mutable_unknown_fields();
}
static const ::google::protobuf::Descriptor* descriptor() {
return default_instance().GetDescriptor();
}
static const FeedMessage& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const FeedMessage* internal_default_instance() {
return reinterpret_cast<const FeedMessage*>(
&_FeedMessage_default_instance_);
}
static constexpr int kIndexInFileMessages =
0;
void Swap(FeedMessage* other);
friend void swap(FeedMessage& a, FeedMessage& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline FeedMessage* New() const final {
return CreateMaybeMessage<FeedMessage>(nullptr);
}
FeedMessage* New(::google::protobuf::Arena* arena) const final {
return CreateMaybeMessage<FeedMessage>(arena);
}
void CopyFrom(const ::google::protobuf::Message& from) final;
void MergeFrom(const ::google::protobuf::Message& from) final;
void CopyFrom(const FeedMessage& from);
void MergeFrom(const FeedMessage& from);
PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
size_t ByteSizeLong() const final;
#if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
static const char* _InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx);
::google::protobuf::internal::ParseFunc _ParseFunc() const final { return _InternalParse; }
#else
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) final;
#endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const final;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const final;
int GetCachedSize() const final { return _cached_size_.Get(); }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const final;
void InternalSwap(FeedMessage* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return nullptr;
}
inline void* MaybeArenaPtr() const {
return nullptr;
}
public:
::google::protobuf::Metadata GetMetadata() const final;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// repeated .transit_realtime.FeedEntity entity = 2;
int entity_size() const;
void clear_entity();
static const int kEntityFieldNumber = 2;
::transit_realtime::FeedEntity* mutable_entity(int index);
::google::protobuf::RepeatedPtrField< ::transit_realtime::FeedEntity >*
mutable_entity();
const ::transit_realtime::FeedEntity& entity(int index) const;
::transit_realtime::FeedEntity* add_entity();
const ::google::protobuf::RepeatedPtrField< ::transit_realtime::FeedEntity >&
entity() const;
// required .transit_realtime.FeedHeader header = 1;
bool has_header() const;
void clear_header();
static const int kHeaderFieldNumber = 1;
const ::transit_realtime::FeedHeader& header() const;
::transit_realtime::FeedHeader* release_header();
::transit_realtime::FeedHeader* mutable_header();
void set_allocated_header(::transit_realtime::FeedHeader* header);
GOOGLE_PROTOBUF_EXTENSION_ACCESSORS(FeedMessage)
// @@protoc_insertion_point(class_scope:transit_realtime.FeedMessage)
private:
class HasBitSetters;
::google::protobuf::internal::ExtensionSet _extensions_;
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::internal::HasBits<1> _has_bits_;
mutable ::google::protobuf::internal::CachedSize _cached_size_;
::google::protobuf::RepeatedPtrField< ::transit_realtime::FeedEntity > entity_;
::transit_realtime::FeedHeader* header_;
friend struct ::TableStruct_gtfs_2drealtime_2eproto;
};
// -------------------------------------------------------------------
class FeedHeader final :
public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:transit_realtime.FeedHeader) */ {
public:
FeedHeader();
virtual ~FeedHeader();
FeedHeader(const FeedHeader& from);
inline FeedHeader& operator=(const FeedHeader& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
FeedHeader(FeedHeader&& from) noexcept
: FeedHeader() {
*this = ::std::move(from);
}
inline FeedHeader& operator=(FeedHeader&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _internal_metadata_.unknown_fields();
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return _internal_metadata_.mutable_unknown_fields();
}
static const ::google::protobuf::Descriptor* descriptor() {
return default_instance().GetDescriptor();
}
static const FeedHeader& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const FeedHeader* internal_default_instance() {
return reinterpret_cast<const FeedHeader*>(
&_FeedHeader_default_instance_);
}
static constexpr int kIndexInFileMessages =
1;
void Swap(FeedHeader* other);
friend void swap(FeedHeader& a, FeedHeader& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline FeedHeader* New() const final {
return CreateMaybeMessage<FeedHeader>(nullptr);
}
FeedHeader* New(::google::protobuf::Arena* arena) const final {
return CreateMaybeMessage<FeedHeader>(arena);
}
void CopyFrom(const ::google::protobuf::Message& from) final;
void MergeFrom(const ::google::protobuf::Message& from) final;
void CopyFrom(const FeedHeader& from);
void MergeFrom(const FeedHeader& from);
PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
size_t ByteSizeLong() const final;
#if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
static const char* _InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx);
::google::protobuf::internal::ParseFunc _ParseFunc() const final { return _InternalParse; }
#else
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) final;
#endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const final;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const final;
int GetCachedSize() const final { return _cached_size_.Get(); }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const final;
void InternalSwap(FeedHeader* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return nullptr;
}
inline void* MaybeArenaPtr() const {
return nullptr;
}
public:
::google::protobuf::Metadata GetMetadata() const final;
// nested types ----------------------------------------------------
typedef FeedHeader_Incrementality Incrementality;
static const Incrementality FULL_DATASET =
FeedHeader_Incrementality_FULL_DATASET;
static const Incrementality DIFFERENTIAL =
FeedHeader_Incrementality_DIFFERENTIAL;
static inline bool Incrementality_IsValid(int value) {
return FeedHeader_Incrementality_IsValid(value);
}
static const Incrementality Incrementality_MIN =
FeedHeader_Incrementality_Incrementality_MIN;
static const Incrementality Incrementality_MAX =
FeedHeader_Incrementality_Incrementality_MAX;
static const int Incrementality_ARRAYSIZE =
FeedHeader_Incrementality_Incrementality_ARRAYSIZE;
static inline const ::google::protobuf::EnumDescriptor*
Incrementality_descriptor() {
return FeedHeader_Incrementality_descriptor();
}
static inline const ::std::string& Incrementality_Name(Incrementality value) {
return FeedHeader_Incrementality_Name(value);
}
static inline bool Incrementality_Parse(const ::std::string& name,
Incrementality* value) {
return FeedHeader_Incrementality_Parse(name, value);
}
// accessors -------------------------------------------------------
// required string gtfs_realtime_version = 1;
bool has_gtfs_realtime_version() const;
void clear_gtfs_realtime_version();
static const int kGtfsRealtimeVersionFieldNumber = 1;
const ::std::string& gtfs_realtime_version() const;
void set_gtfs_realtime_version(const ::std::string& value);
#if LANG_CXX11
void set_gtfs_realtime_version(::std::string&& value);
#endif
void set_gtfs_realtime_version(const char* value);
void set_gtfs_realtime_version(const char* value, size_t size);
::std::string* mutable_gtfs_realtime_version();
::std::string* release_gtfs_realtime_version();
void set_allocated_gtfs_realtime_version(::std::string* gtfs_realtime_version);
// optional uint64 timestamp = 3;
bool has_timestamp() const;
void clear_timestamp();
static const int kTimestampFieldNumber = 3;
::google::protobuf::uint64 timestamp() const;
void set_timestamp(::google::protobuf::uint64 value);
// optional .transit_realtime.FeedHeader.Incrementality incrementality = 2 [default = FULL_DATASET];
bool has_incrementality() const;
void clear_incrementality();
static const int kIncrementalityFieldNumber = 2;
::transit_realtime::FeedHeader_Incrementality incrementality() const;
void set_incrementality(::transit_realtime::FeedHeader_Incrementality value);
GOOGLE_PROTOBUF_EXTENSION_ACCESSORS(FeedHeader)
// @@protoc_insertion_point(class_scope:transit_realtime.FeedHeader)
private:
class HasBitSetters;
::google::protobuf::internal::ExtensionSet _extensions_;
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::internal::HasBits<1> _has_bits_;
mutable ::google::protobuf::internal::CachedSize _cached_size_;
::google::protobuf::internal::ArenaStringPtr gtfs_realtime_version_;
::google::protobuf::uint64 timestamp_;
int incrementality_;
friend struct ::TableStruct_gtfs_2drealtime_2eproto;
};
// -------------------------------------------------------------------
class FeedEntity final :
public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:transit_realtime.FeedEntity) */ {
public:
FeedEntity();
virtual ~FeedEntity();
FeedEntity(const FeedEntity& from);
inline FeedEntity& operator=(const FeedEntity& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
FeedEntity(FeedEntity&& from) noexcept
: FeedEntity() {
*this = ::std::move(from);
}
inline FeedEntity& operator=(FeedEntity&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _internal_metadata_.unknown_fields();
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return _internal_metadata_.mutable_unknown_fields();
}
static const ::google::protobuf::Descriptor* descriptor() {
return default_instance().GetDescriptor();
}
static const FeedEntity& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const FeedEntity* internal_default_instance() {
return reinterpret_cast<const FeedEntity*>(
&_FeedEntity_default_instance_);
}
static constexpr int kIndexInFileMessages =
2;
void Swap(FeedEntity* other);
friend void swap(FeedEntity& a, FeedEntity& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline FeedEntity* New() const final {
return CreateMaybeMessage<FeedEntity>(nullptr);
}
FeedEntity* New(::google::protobuf::Arena* arena) const final {
return CreateMaybeMessage<FeedEntity>(arena);
}
void CopyFrom(const ::google::protobuf::Message& from) final;
void MergeFrom(const ::google::protobuf::Message& from) final;
void CopyFrom(const FeedEntity& from);
void MergeFrom(const FeedEntity& from);
PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
size_t ByteSizeLong() const final;
#if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
static const char* _InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx);
::google::protobuf::internal::ParseFunc _ParseFunc() const final { return _InternalParse; }
#else
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) final;
#endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const final;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const final;
int GetCachedSize() const final { return _cached_size_.Get(); }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const final;
void InternalSwap(FeedEntity* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return nullptr;
}
inline void* MaybeArenaPtr() const {
return nullptr;
}
public:
::google::protobuf::Metadata GetMetadata() const final;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// required string id = 1;
bool has_id() const;
void clear_id();
static const int kIdFieldNumber = 1;
const ::std::string& id() const;
void set_id(const ::std::string& value);
#if LANG_CXX11
void set_id(::std::string&& value);
#endif
void set_id(const char* value);
void set_id(const char* value, size_t size);
::std::string* mutable_id();
::std::string* release_id();
void set_allocated_id(::std::string* id);
// optional .transit_realtime.TripUpdate trip_update = 3;
bool has_trip_update() const;
void clear_trip_update();
static const int kTripUpdateFieldNumber = 3;
const ::transit_realtime::TripUpdate& trip_update() const;
::transit_realtime::TripUpdate* release_trip_update();
::transit_realtime::TripUpdate* mutable_trip_update();
void set_allocated_trip_update(::transit_realtime::TripUpdate* trip_update);
// optional .transit_realtime.VehiclePosition vehicle = 4;
bool has_vehicle() const;
void clear_vehicle();
static const int kVehicleFieldNumber = 4;
const ::transit_realtime::VehiclePosition& vehicle() const;
::transit_realtime::VehiclePosition* release_vehicle();
::transit_realtime::VehiclePosition* mutable_vehicle();
void set_allocated_vehicle(::transit_realtime::VehiclePosition* vehicle);
// optional .transit_realtime.Alert alert = 5;
bool has_alert() const;
void clear_alert();
static const int kAlertFieldNumber = 5;
const ::transit_realtime::Alert& alert() const;
::transit_realtime::Alert* release_alert();
::transit_realtime::Alert* mutable_alert();
void set_allocated_alert(::transit_realtime::Alert* alert);
// optional bool is_deleted = 2 [default = false];
bool has_is_deleted() const;
void clear_is_deleted();
static const int kIsDeletedFieldNumber = 2;
bool is_deleted() const;
void set_is_deleted(bool value);
GOOGLE_PROTOBUF_EXTENSION_ACCESSORS(FeedEntity)
// @@protoc_insertion_point(class_scope:transit_realtime.FeedEntity)
private:
class HasBitSetters;
::google::protobuf::internal::ExtensionSet _extensions_;
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::internal::HasBits<1> _has_bits_;
mutable ::google::protobuf::internal::CachedSize _cached_size_;
::google::protobuf::internal::ArenaStringPtr id_;
::transit_realtime::TripUpdate* trip_update_;
::transit_realtime::VehiclePosition* vehicle_;
::transit_realtime::Alert* alert_;
bool is_deleted_;
friend struct ::TableStruct_gtfs_2drealtime_2eproto;
};
// -------------------------------------------------------------------
class TripUpdate_StopTimeEvent final :
public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:transit_realtime.TripUpdate.StopTimeEvent) */ {
public:
TripUpdate_StopTimeEvent();
virtual ~TripUpdate_StopTimeEvent();
TripUpdate_StopTimeEvent(const TripUpdate_StopTimeEvent& from);
inline TripUpdate_StopTimeEvent& operator=(const TripUpdate_StopTimeEvent& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
TripUpdate_StopTimeEvent(TripUpdate_StopTimeEvent&& from) noexcept
: TripUpdate_StopTimeEvent() {
*this = ::std::move(from);
}
inline TripUpdate_StopTimeEvent& operator=(TripUpdate_StopTimeEvent&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _internal_metadata_.unknown_fields();
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return _internal_metadata_.mutable_unknown_fields();
}
static const ::google::protobuf::Descriptor* descriptor() {
return default_instance().GetDescriptor();
}
static const TripUpdate_StopTimeEvent& default_instance();
static void InitAsDefaultInstance(); // FOR INTERNAL USE ONLY
static inline const TripUpdate_StopTimeEvent* internal_default_instance() {
return reinterpret_cast<const TripUpdate_StopTimeEvent*>(
&_TripUpdate_StopTimeEvent_default_instance_);
}
static constexpr int kIndexInFileMessages =
3;
void Swap(TripUpdate_StopTimeEvent* other);
friend void swap(TripUpdate_StopTimeEvent& a, TripUpdate_StopTimeEvent& b) {
a.Swap(&b);
}
// implements Message ----------------------------------------------
inline TripUpdate_StopTimeEvent* New() const final {
return CreateMaybeMessage<TripUpdate_StopTimeEvent>(nullptr);
}
TripUpdate_StopTimeEvent* New(::google::protobuf::Arena* arena) const final {
return CreateMaybeMessage<TripUpdate_StopTimeEvent>(arena);
}
void CopyFrom(const ::google::protobuf::Message& from) final;
void MergeFrom(const ::google::protobuf::Message& from) final;
void CopyFrom(const TripUpdate_StopTimeEvent& from);
void MergeFrom(const TripUpdate_StopTimeEvent& from);
PROTOBUF_ATTRIBUTE_REINITIALIZES void Clear() final;
bool IsInitialized() const final;
size_t ByteSizeLong() const final;
#if GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
static const char* _InternalParse(const char* begin, const char* end, void* object, ::google::protobuf::internal::ParseContext* ctx);
::google::protobuf::internal::ParseFunc _ParseFunc() const final { return _InternalParse; }
#else
bool MergePartialFromCodedStream(
::google::protobuf::io::CodedInputStream* input) final;
#endif // GOOGLE_PROTOBUF_ENABLE_EXPERIMENTAL_PARSER
void SerializeWithCachedSizes(
::google::protobuf::io::CodedOutputStream* output) const final;
::google::protobuf::uint8* InternalSerializeWithCachedSizesToArray(
::google::protobuf::uint8* target) const final;
int GetCachedSize() const final { return _cached_size_.Get(); }
private:
void SharedCtor();
void SharedDtor();
void SetCachedSize(int size) const final;
void InternalSwap(TripUpdate_StopTimeEvent* other);
private:
inline ::google::protobuf::Arena* GetArenaNoVirtual() const {
return nullptr;
}
inline void* MaybeArenaPtr() const {
return nullptr;
}
public:
::google::protobuf::Metadata GetMetadata() const final;
// nested types ----------------------------------------------------
// accessors -------------------------------------------------------
// optional int64 time = 2;
bool has_time() const;
void clear_time();
static const int kTimeFieldNumber = 2;
::google::protobuf::int64 time() const;
void set_time(::google::protobuf::int64 value);
// optional int32 delay = 1;
bool has_delay() const;
void clear_delay();
static const int kDelayFieldNumber = 1;
::google::protobuf::int32 delay() const;
void set_delay(::google::protobuf::int32 value);
// optional int32 uncertainty = 3;
bool has_uncertainty() const;
void clear_uncertainty();
static const int kUncertaintyFieldNumber = 3;
::google::protobuf::int32 uncertainty() const;
void set_uncertainty(::google::protobuf::int32 value);
GOOGLE_PROTOBUF_EXTENSION_ACCESSORS(TripUpdate_StopTimeEvent)
// @@protoc_insertion_point(class_scope:transit_realtime.TripUpdate.StopTimeEvent)
private:
class HasBitSetters;
::google::protobuf::internal::ExtensionSet _extensions_;
::google::protobuf::internal::InternalMetadataWithArena _internal_metadata_;
::google::protobuf::internal::HasBits<1> _has_bits_;
mutable ::google::protobuf::internal::CachedSize _cached_size_;
::google::protobuf::int64 time_;
::google::protobuf::int32 delay_;
::google::protobuf::int32 uncertainty_;
friend struct ::TableStruct_gtfs_2drealtime_2eproto;
};
// -------------------------------------------------------------------
class TripUpdate_StopTimeUpdate final :
public ::google::protobuf::Message /* @@protoc_insertion_point(class_definition:transit_realtime.TripUpdate.StopTimeUpdate) */ {
public:
TripUpdate_StopTimeUpdate();
virtual ~TripUpdate_StopTimeUpdate();
TripUpdate_StopTimeUpdate(const TripUpdate_StopTimeUpdate& from);
inline TripUpdate_StopTimeUpdate& operator=(const TripUpdate_StopTimeUpdate& from) {
CopyFrom(from);
return *this;
}
#if LANG_CXX11
TripUpdate_StopTimeUpdate(TripUpdate_StopTimeUpdate&& from) noexcept
: TripUpdate_StopTimeUpdate() {
*this = ::std::move(from);
}
inline TripUpdate_StopTimeUpdate& operator=(TripUpdate_StopTimeUpdate&& from) noexcept {
if (GetArenaNoVirtual() == from.GetArenaNoVirtual()) {
if (this != &from) InternalSwap(&from);
} else {
CopyFrom(from);
}
return *this;
}
#endif
inline const ::google::protobuf::UnknownFieldSet& unknown_fields() const {
return _internal_metadata_.unknown_fields();
}
inline ::google::protobuf::UnknownFieldSet* mutable_unknown_fields() {
return _internal_metadata_.mutable_unknown_fields();
}
static const ::google::protobuf::Descriptor* descriptor() {
return default_instance().GetDescriptor();
}
static const TripUpdate_StopTimeUpdate& default_instance();