summaryrefslogtreecommitdiff
path: root/lib/WebService/TFL/Bus/Fields.pm
blob: b3d555f388ef017b2be38041e96a40fb3b95a777 (plain)
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
package WebService::TFL::Bus::Fields; 
use strict;
use warnings;
 
sub stop_return_fields {
    qw(
          StopPointName
          StopID
          StopCode1
          StopCode2
          StopPointType
          Towards
          Bearing
          StopPointIndicator
          StopPointState
          Latitude
          Longitude
  );
}
 
sub prediction_return_fields {
    stop_return_fields(),
    qw(
          VisitNumber
          LineID
          LineName
          DirectionID
          DestinationText
          DestinationName
          VehicleID
          TripID
          RegistrationNumber
          EstimatedTime
          ExpireTime
  ),
}
 
sub flexible_return_fields {
    stop_return_fields,
    qw(
          MessageUUID
          MessageType
          MessagePriority
          MessageText
          StartTime
          ExpireTime
  ),
}
 
sub query_fields {
    qw(
          StopAlso
          Circle
          StopPointName
          StopID
          StopCode1
          StopCode2
          StopPointType
          Towards
          Bearing
          StopPointIndicator
          StopPointState
          VisitNumber
          LineID
          LineName
          DirectionID
          DestinationText
          DestinationName
          VehicleID
          TripID
          RegistrationNumber
          MessageType
          MessagePriority
  );
}
 
1;