This repository was archived by the owner on Nov 8, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathFlightXML2.rb
More file actions
2143 lines (1772 loc) · 73.5 KB
/
FlightXML2.rb
File metadata and controls
2143 lines (1772 loc) · 73.5 KB
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
require 'xsd/qname'
# {http://flightxml.flightaware.com/soap/FlightXML2}AircraftTypeRequest
class AircraftTypeRequest
@@schema_type = "AircraftTypeRequest"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["type", "SOAP::SOAPString"]]
attr_accessor :type
def initialize(type = nil)
@type = type
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}AircraftTypeResults
class AircraftTypeResults
@@schema_type = "AircraftTypeResults"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["aircraftTypeResult", ["AircraftTypeStruct", XSD::QName.new("http://flightxml.flightaware.com/soap/FlightXML2", "AircraftTypeResult")]]]
def AircraftTypeResult
@aircraftTypeResult
end
def AircraftTypeResult=(value)
@aircraftTypeResult = value
end
def initialize(aircraftTypeResult = nil)
@aircraftTypeResult = aircraftTypeResult
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}AircraftTypeStruct
class AircraftTypeStruct
@@schema_type = "AircraftTypeStruct"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["manufacturer", "SOAP::SOAPString"], ["type", "SOAP::SOAPString"], ["description", "SOAP::SOAPString"]]
attr_accessor :manufacturer
attr_accessor :type
attr_accessor :description
def initialize(manufacturer = nil, type = nil, description = nil)
@manufacturer = manufacturer
@type = type
@description = description
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}AirlineInfoRequest
class AirlineInfoRequest
@@schema_type = "AirlineInfoRequest"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["airlineCode", "SOAP::SOAPString"]]
attr_accessor :airlineCode
def initialize(airlineCode = nil)
@airlineCode = airlineCode
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}AirlineInfoResults
class AirlineInfoResults
@@schema_type = "AirlineInfoResults"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["airlineInfoResult", ["AirlineInfoStruct", XSD::QName.new("http://flightxml.flightaware.com/soap/FlightXML2", "AirlineInfoResult")]]]
def AirlineInfoResult
@airlineInfoResult
end
def AirlineInfoResult=(value)
@airlineInfoResult = value
end
def initialize(airlineInfoResult = nil)
@airlineInfoResult = airlineInfoResult
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}AirlineInfoStruct
class AirlineInfoStruct
@@schema_type = "AirlineInfoStruct"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["name", "SOAP::SOAPString"], ["shortname", "SOAP::SOAPString"], ["callsign", "SOAP::SOAPString"], ["location", "SOAP::SOAPString"], ["country", "SOAP::SOAPString"], ["url", "SOAP::SOAPString"], ["phone", "SOAP::SOAPString"]]
attr_accessor :name
attr_accessor :shortname
attr_accessor :callsign
attr_accessor :location
attr_accessor :country
attr_accessor :url
attr_accessor :phone
def initialize(name = nil, shortname = nil, callsign = nil, location = nil, country = nil, url = nil, phone = nil)
@name = name
@shortname = shortname
@callsign = callsign
@location = location
@country = country
@url = url
@phone = phone
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}AirportInfoRequest
class AirportInfoRequest
@@schema_type = "AirportInfoRequest"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["airportCode", "SOAP::SOAPString"]]
attr_accessor :airportCode
def initialize(airportCode = nil)
@airportCode = airportCode
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}AirportInfoResults
class AirportInfoResults
@@schema_type = "AirportInfoResults"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["airportInfoResult", ["AirportInfoStruct", XSD::QName.new("http://flightxml.flightaware.com/soap/FlightXML2", "AirportInfoResult")]]]
def AirportInfoResult
@airportInfoResult
end
def AirportInfoResult=(value)
@airportInfoResult = value
end
def initialize(airportInfoResult = nil)
@airportInfoResult = airportInfoResult
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}AirportInfoStruct
class AirportInfoStruct
@@schema_type = "AirportInfoStruct"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["name", "SOAP::SOAPString"], ["location", "SOAP::SOAPString"], ["longitude", "SOAP::SOAPFloat"], ["latitude", "SOAP::SOAPFloat"], ["timezone", "SOAP::SOAPString"]]
attr_accessor :name
attr_accessor :location
attr_accessor :longitude
attr_accessor :latitude
attr_accessor :timezone
def initialize(name = nil, location = nil, longitude = nil, latitude = nil, timezone = nil)
@name = name
@location = location
@longitude = longitude
@latitude = latitude
@timezone = timezone
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}AllAirlinesRequest
class AllAirlinesRequest
@@schema_type = "AllAirlinesRequest"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = []
def initialize
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}AllAirlinesResults
class AllAirlinesResults
@@schema_type = "AllAirlinesResults"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["allAirlinesResult", ["ArrayOfString", XSD::QName.new("http://flightxml.flightaware.com/soap/FlightXML2", "AllAirlinesResult")]]]
def AllAirlinesResult
@allAirlinesResult
end
def AllAirlinesResult=(value)
@allAirlinesResult = value
end
def initialize(allAirlinesResult = nil)
@allAirlinesResult = allAirlinesResult
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}AllAirportsRequest
class AllAirportsRequest
@@schema_type = "AllAirportsRequest"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = []
def initialize
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}AllAirportsResults
class AllAirportsResults
@@schema_type = "AllAirportsResults"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["allAirportsResult", ["ArrayOfString", XSD::QName.new("http://flightxml.flightaware.com/soap/FlightXML2", "AllAirportsResult")]]]
def AllAirportsResult
@allAirportsResult
end
def AllAirportsResult=(value)
@allAirportsResult = value
end
def initialize(allAirportsResult = nil)
@allAirportsResult = allAirportsResult
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}ArrayOfCountAirlineOperationsStruct
class ArrayOfCountAirlineOperationsStruct < ::Array
@@schema_type = "CountAirlineOperationsStruct"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["data", ["CountAirlineOperationsStruct[]", XSD::QName.new("http://flightxml.flightaware.com/soap/FlightXML2", "data")]]]
end
# {http://flightxml.flightaware.com/soap/FlightXML2}ArrayOfFlightRouteStruct
class ArrayOfFlightRouteStruct
@@schema_type = "ArrayOfFlightRouteStruct"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["next_offset", "SOAP::SOAPInt"], ["data", "FlightRouteStruct[]"]]
attr_accessor :next_offset
attr_accessor :data
def initialize(next_offset = nil, data = [])
@next_offset = next_offset
@data = data
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}ArrayOfMetarStruct
class ArrayOfMetarStruct
@@schema_type = "ArrayOfMetarStruct"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["next_offset", "SOAP::SOAPInt"], ["metar", "MetarStruct[]"]]
attr_accessor :next_offset
attr_accessor :metar
def initialize(next_offset = nil, metar = [])
@next_offset = next_offset
@metar = metar
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}ArrayOfRoutesBetweenAirportsExStruct
class ArrayOfRoutesBetweenAirportsExStruct
@@schema_type = "ArrayOfRoutesBetweenAirportsExStruct"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["next_offset", "SOAP::SOAPInt"], ["data", "RoutesBetweenAirportsExStruct[]"]]
attr_accessor :next_offset
attr_accessor :data
def initialize(next_offset = nil, data = [])
@next_offset = next_offset
@data = data
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}ArrayOfRoutesBetweenAirportsStruct
class ArrayOfRoutesBetweenAirportsStruct < ::Array
@@schema_type = "RoutesBetweenAirportsStruct"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["data", ["RoutesBetweenAirportsStruct[]", XSD::QName.new("http://flightxml.flightaware.com/soap/FlightXML2", "data")]]]
end
# {http://flightxml.flightaware.com/soap/FlightXML2}ArrayOfString
class ArrayOfString < ::Array
@@schema_type = "string"
@@schema_ns = "http://www.w3.org/2001/XMLSchema"
@@schema_element = [["data", ["SOAP::SOAPString[]", XSD::QName.new("http://flightxml.flightaware.com/soap/FlightXML2", "data")]]]
end
# {http://flightxml.flightaware.com/soap/FlightXML2}ArrayOfTrackExStruct
class ArrayOfTrackExStruct
@@schema_type = "ArrayOfTrackExStruct"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["next_offset", "SOAP::SOAPInt"], ["data", "TrackExStruct[]"]]
attr_accessor :next_offset
attr_accessor :data
def initialize(next_offset = nil, data = [])
@next_offset = next_offset
@data = data
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}ArrayOfTrackStruct
class ArrayOfTrackStruct < ::Array
@@schema_type = "TrackStruct"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["data", ["TrackStruct[]", XSD::QName.new("http://flightxml.flightaware.com/soap/FlightXML2", "data")]]]
end
# {http://flightxml.flightaware.com/soap/FlightXML2}ArrivalFlightStruct
class ArrivalFlightStruct
@@schema_type = "ArrivalFlightStruct"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["ident", "SOAP::SOAPString"], ["aircrafttype", "SOAP::SOAPString"], ["actualdeparturetime", "SOAP::SOAPInt"], ["actualarrivaltime", "SOAP::SOAPInt"], ["origin", "SOAP::SOAPString"], ["destination", "SOAP::SOAPString"], ["originName", "SOAP::SOAPString"], ["originCity", "SOAP::SOAPString"], ["destinationName", "SOAP::SOAPString"], ["destinationCity", "SOAP::SOAPString"]]
attr_accessor :ident
attr_accessor :aircrafttype
attr_accessor :actualdeparturetime
attr_accessor :actualarrivaltime
attr_accessor :origin
attr_accessor :destination
attr_accessor :originName
attr_accessor :originCity
attr_accessor :destinationName
attr_accessor :destinationCity
def initialize(ident = nil, aircrafttype = nil, actualdeparturetime = nil, actualarrivaltime = nil, origin = nil, destination = nil, originName = nil, originCity = nil, destinationName = nil, destinationCity = nil)
@ident = ident
@aircrafttype = aircrafttype
@actualdeparturetime = actualdeparturetime
@actualarrivaltime = actualarrivaltime
@origin = origin
@destination = destination
@originName = originName
@originCity = originCity
@destinationName = destinationName
@destinationCity = destinationCity
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}ArrivalStruct
class ArrivalStruct
@@schema_type = "ArrivalStruct"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["next_offset", "SOAP::SOAPInt"], ["arrivals", "ArrivalFlightStruct[]"]]
attr_accessor :next_offset
attr_accessor :arrivals
def initialize(next_offset = nil, arrivals = [])
@next_offset = next_offset
@arrivals = arrivals
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}ArrivedRequest
class ArrivedRequest
@@schema_type = "ArrivedRequest"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["airport", "SOAP::SOAPString"], ["howMany", "SOAP::SOAPInt"], ["filter", "SOAP::SOAPString"], ["offset", "SOAP::SOAPInt"]]
attr_accessor :airport
attr_accessor :howMany
attr_accessor :filter
attr_accessor :offset
def initialize(airport = nil, howMany = nil, filter = nil, offset = nil)
@airport = airport
@howMany = howMany
@filter = filter
@offset = offset
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}ArrivedResults
class ArrivedResults
@@schema_type = "ArrivedResults"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["arrivedResult", ["ArrivalStruct", XSD::QName.new("http://flightxml.flightaware.com/soap/FlightXML2", "ArrivedResult")]]]
def ArrivedResult
@arrivedResult
end
def ArrivedResult=(value)
@arrivedResult = value
end
def initialize(arrivedResult = nil)
@arrivedResult = arrivedResult
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}BlockIdentCheckRequest
class BlockIdentCheckRequest
@@schema_type = "BlockIdentCheckRequest"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["ident", "SOAP::SOAPString"]]
attr_accessor :ident
def initialize(ident = nil)
@ident = ident
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}BlockIdentCheckResults
class BlockIdentCheckResults
@@schema_type = "BlockIdentCheckResults"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["blockIdentCheckResult", ["SOAP::SOAPInt", XSD::QName.new("http://flightxml.flightaware.com/soap/FlightXML2", "BlockIdentCheckResult")]]]
def BlockIdentCheckResult
@blockIdentCheckResult
end
def BlockIdentCheckResult=(value)
@blockIdentCheckResult = value
end
def initialize(blockIdentCheckResult = nil)
@blockIdentCheckResult = blockIdentCheckResult
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}CountAirlineOperationsStruct
class CountAirlineOperationsStruct
@@schema_type = "CountAirlineOperationsStruct"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["icao", "SOAP::SOAPString"], ["name", "SOAP::SOAPString"], ["enroute", "SOAP::SOAPInt"]]
attr_accessor :icao
attr_accessor :name
attr_accessor :enroute
def initialize(icao = nil, name = nil, enroute = nil)
@icao = icao
@name = name
@enroute = enroute
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}CountAirportOperationsRequest
class CountAirportOperationsRequest
@@schema_type = "CountAirportOperationsRequest"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["airport", "SOAP::SOAPString"]]
attr_accessor :airport
def initialize(airport = nil)
@airport = airport
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}CountAirportOperationsResults
class CountAirportOperationsResults
@@schema_type = "CountAirportOperationsResults"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["countAirportOperationsResult", ["CountAirportOperationsStruct", XSD::QName.new("http://flightxml.flightaware.com/soap/FlightXML2", "CountAirportOperationsResult")]]]
def CountAirportOperationsResult
@countAirportOperationsResult
end
def CountAirportOperationsResult=(value)
@countAirportOperationsResult = value
end
def initialize(countAirportOperationsResult = nil)
@countAirportOperationsResult = countAirportOperationsResult
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}CountAirportOperationsStruct
class CountAirportOperationsStruct
@@schema_type = "CountAirportOperationsStruct"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["enroute", "SOAP::SOAPInt"], ["departed", "SOAP::SOAPInt"], ["scheduled_departures", "SOAP::SOAPInt"], ["scheduled_arrivals", "SOAP::SOAPInt"]]
attr_accessor :enroute
attr_accessor :departed
attr_accessor :scheduled_departures
attr_accessor :scheduled_arrivals
def initialize(enroute = nil, departed = nil, scheduled_departures = nil, scheduled_arrivals = nil)
@enroute = enroute
@departed = departed
@scheduled_departures = scheduled_departures
@scheduled_arrivals = scheduled_arrivals
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}CountAllEnrouteAirlineOperationsRequest
class CountAllEnrouteAirlineOperationsRequest
@@schema_type = "CountAllEnrouteAirlineOperationsRequest"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = []
def initialize
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}CountAllEnrouteAirlineOperationsResults
class CountAllEnrouteAirlineOperationsResults
@@schema_type = "CountAllEnrouteAirlineOperationsResults"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["countAllEnrouteAirlineOperationsResult", ["ArrayOfCountAirlineOperationsStruct", XSD::QName.new("http://flightxml.flightaware.com/soap/FlightXML2", "CountAllEnrouteAirlineOperationsResult")]]]
def CountAllEnrouteAirlineOperationsResult
@countAllEnrouteAirlineOperationsResult
end
def CountAllEnrouteAirlineOperationsResult=(value)
@countAllEnrouteAirlineOperationsResult = value
end
def initialize(countAllEnrouteAirlineOperationsResult = nil)
@countAllEnrouteAirlineOperationsResult = countAllEnrouteAirlineOperationsResult
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}DecodeFlightRouteRequest
class DecodeFlightRouteRequest
@@schema_type = "DecodeFlightRouteRequest"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["faFlightID", "SOAP::SOAPString"]]
attr_accessor :faFlightID
def initialize(faFlightID = nil)
@faFlightID = faFlightID
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}DecodeFlightRouteResults
class DecodeFlightRouteResults
@@schema_type = "DecodeFlightRouteResults"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["decodeFlightRouteResult", ["ArrayOfFlightRouteStruct", XSD::QName.new("http://flightxml.flightaware.com/soap/FlightXML2", "DecodeFlightRouteResult")]]]
def DecodeFlightRouteResult
@decodeFlightRouteResult
end
def DecodeFlightRouteResult=(value)
@decodeFlightRouteResult = value
end
def initialize(decodeFlightRouteResult = nil)
@decodeFlightRouteResult = decodeFlightRouteResult
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}DecodeRouteRequest
class DecodeRouteRequest
@@schema_type = "DecodeRouteRequest"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["origin", "SOAP::SOAPString"], ["route", "SOAP::SOAPString"], ["destination", "SOAP::SOAPString"]]
attr_accessor :origin
attr_accessor :route
attr_accessor :destination
def initialize(origin = nil, route = nil, destination = nil)
@origin = origin
@route = route
@destination = destination
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}DecodeRouteResults
class DecodeRouteResults
@@schema_type = "DecodeRouteResults"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["decodeRouteResult", ["ArrayOfFlightRouteStruct", XSD::QName.new("http://flightxml.flightaware.com/soap/FlightXML2", "DecodeRouteResult")]]]
def DecodeRouteResult
@decodeRouteResult
end
def DecodeRouteResult=(value)
@decodeRouteResult = value
end
def initialize(decodeRouteResult = nil)
@decodeRouteResult = decodeRouteResult
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}DepartedRequest
class DepartedRequest
@@schema_type = "DepartedRequest"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["airport", "SOAP::SOAPString"], ["howMany", "SOAP::SOAPInt"], ["filter", "SOAP::SOAPString"], ["offset", "SOAP::SOAPInt"]]
attr_accessor :airport
attr_accessor :howMany
attr_accessor :filter
attr_accessor :offset
def initialize(airport = nil, howMany = nil, filter = nil, offset = nil)
@airport = airport
@howMany = howMany
@filter = filter
@offset = offset
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}DepartedResults
class DepartedResults
@@schema_type = "DepartedResults"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["departedResult", ["DepartureStruct", XSD::QName.new("http://flightxml.flightaware.com/soap/FlightXML2", "DepartedResult")]]]
def DepartedResult
@departedResult
end
def DepartedResult=(value)
@departedResult = value
end
def initialize(departedResult = nil)
@departedResult = departedResult
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}DepartureFlightStruct
class DepartureFlightStruct
@@schema_type = "DepartureFlightStruct"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["ident", "SOAP::SOAPString"], ["aircrafttype", "SOAP::SOAPString"], ["actualdeparturetime", "SOAP::SOAPInt"], ["estimatedarrivaltime", "SOAP::SOAPInt"], ["actualarrivaltime", "SOAP::SOAPInt"], ["origin", "SOAP::SOAPString"], ["destination", "SOAP::SOAPString"], ["originName", "SOAP::SOAPString"], ["originCity", "SOAP::SOAPString"], ["destinationName", "SOAP::SOAPString"], ["destinationCity", "SOAP::SOAPString"]]
attr_accessor :ident
attr_accessor :aircrafttype
attr_accessor :actualdeparturetime
attr_accessor :estimatedarrivaltime
attr_accessor :actualarrivaltime
attr_accessor :origin
attr_accessor :destination
attr_accessor :originName
attr_accessor :originCity
attr_accessor :destinationName
attr_accessor :destinationCity
def initialize(ident = nil, aircrafttype = nil, actualdeparturetime = nil, estimatedarrivaltime = nil, actualarrivaltime = nil, origin = nil, destination = nil, originName = nil, originCity = nil, destinationName = nil, destinationCity = nil)
@ident = ident
@aircrafttype = aircrafttype
@actualdeparturetime = actualdeparturetime
@estimatedarrivaltime = estimatedarrivaltime
@actualarrivaltime = actualarrivaltime
@origin = origin
@destination = destination
@originName = originName
@originCity = originCity
@destinationName = destinationName
@destinationCity = destinationCity
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}DepartureStruct
class DepartureStruct
@@schema_type = "DepartureStruct"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["next_offset", "SOAP::SOAPInt"], ["departures", "DepartureFlightStruct[]"]]
attr_accessor :next_offset
attr_accessor :departures
def initialize(next_offset = nil, departures = [])
@next_offset = next_offset
@departures = departures
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}EnrouteFlightStruct
class EnrouteFlightStruct
@@schema_type = "EnrouteFlightStruct"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["ident", "SOAP::SOAPString"], ["aircrafttype", "SOAP::SOAPString"], ["actualdeparturetime", "SOAP::SOAPInt"], ["estimatedarrivaltime", "SOAP::SOAPInt"], ["filed_departuretime", "SOAP::SOAPInt"], ["origin", "SOAP::SOAPString"], ["destination", "SOAP::SOAPString"], ["originName", "SOAP::SOAPString"], ["originCity", "SOAP::SOAPString"], ["destinationName", "SOAP::SOAPString"], ["destinationCity", "SOAP::SOAPString"]]
attr_accessor :ident
attr_accessor :aircrafttype
attr_accessor :actualdeparturetime
attr_accessor :estimatedarrivaltime
attr_accessor :filed_departuretime
attr_accessor :origin
attr_accessor :destination
attr_accessor :originName
attr_accessor :originCity
attr_accessor :destinationName
attr_accessor :destinationCity
def initialize(ident = nil, aircrafttype = nil, actualdeparturetime = nil, estimatedarrivaltime = nil, filed_departuretime = nil, origin = nil, destination = nil, originName = nil, originCity = nil, destinationName = nil, destinationCity = nil)
@ident = ident
@aircrafttype = aircrafttype
@actualdeparturetime = actualdeparturetime
@estimatedarrivaltime = estimatedarrivaltime
@filed_departuretime = filed_departuretime
@origin = origin
@destination = destination
@originName = originName
@originCity = originCity
@destinationName = destinationName
@destinationCity = destinationCity
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}EnrouteRequest
class EnrouteRequest
@@schema_type = "EnrouteRequest"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["airport", "SOAP::SOAPString"], ["howMany", "SOAP::SOAPInt"], ["filter", "SOAP::SOAPString"], ["offset", "SOAP::SOAPInt"]]
attr_accessor :airport
attr_accessor :howMany
attr_accessor :filter
attr_accessor :offset
def initialize(airport = nil, howMany = nil, filter = nil, offset = nil)
@airport = airport
@howMany = howMany
@filter = filter
@offset = offset
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}EnrouteResults
class EnrouteResults
@@schema_type = "EnrouteResults"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["enrouteResult", ["EnrouteStruct", XSD::QName.new("http://flightxml.flightaware.com/soap/FlightXML2", "EnrouteResult")]]]
def EnrouteResult
@enrouteResult
end
def EnrouteResult=(value)
@enrouteResult = value
end
def initialize(enrouteResult = nil)
@enrouteResult = enrouteResult
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}EnrouteStruct
class EnrouteStruct
@@schema_type = "EnrouteStruct"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["next_offset", "SOAP::SOAPInt"], ["enroute", "EnrouteFlightStruct[]"]]
attr_accessor :next_offset
attr_accessor :enroute
def initialize(next_offset = nil, enroute = [])
@next_offset = next_offset
@enroute = enroute
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}FleetArrivedRequest
class FleetArrivedRequest
@@schema_type = "FleetArrivedRequest"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["fleet", "SOAP::SOAPString"], ["howMany", "SOAP::SOAPInt"], ["offset", "SOAP::SOAPInt"]]
attr_accessor :fleet
attr_accessor :howMany
attr_accessor :offset
def initialize(fleet = nil, howMany = nil, offset = nil)
@fleet = fleet
@howMany = howMany
@offset = offset
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}FleetArrivedResults
class FleetArrivedResults
@@schema_type = "FleetArrivedResults"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["fleetArrivedResult", ["ArrivalStruct", XSD::QName.new("http://flightxml.flightaware.com/soap/FlightXML2", "FleetArrivedResult")]]]
def FleetArrivedResult
@fleetArrivedResult
end
def FleetArrivedResult=(value)
@fleetArrivedResult = value
end
def initialize(fleetArrivedResult = nil)
@fleetArrivedResult = fleetArrivedResult
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}FleetScheduledRequest
class FleetScheduledRequest
@@schema_type = "FleetScheduledRequest"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["fleet", "SOAP::SOAPString"], ["howMany", "SOAP::SOAPInt"], ["offset", "SOAP::SOAPInt"]]
attr_accessor :fleet
attr_accessor :howMany
attr_accessor :offset
def initialize(fleet = nil, howMany = nil, offset = nil)
@fleet = fleet
@howMany = howMany
@offset = offset
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}FleetScheduledResults
class FleetScheduledResults
@@schema_type = "FleetScheduledResults"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["fleetScheduledResult", ["ScheduledStruct", XSD::QName.new("http://flightxml.flightaware.com/soap/FlightXML2", "FleetScheduledResult")]]]
def FleetScheduledResult
@fleetScheduledResult
end
def FleetScheduledResult=(value)
@fleetScheduledResult = value
end
def initialize(fleetScheduledResult = nil)
@fleetScheduledResult = fleetScheduledResult
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}FlightExStruct
class FlightExStruct
@@schema_type = "FlightExStruct"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["faFlightID", "SOAP::SOAPString"], ["ident", "SOAP::SOAPString"], ["aircrafttype", "SOAP::SOAPString"], ["filed_ete", "SOAP::SOAPString"], ["filed_time", "SOAP::SOAPInt"], ["filed_departuretime", "SOAP::SOAPInt"], ["filed_airspeed_kts", "SOAP::SOAPInt"], ["filed_airspeed_mach", "SOAP::SOAPString"], ["filed_altitude", "SOAP::SOAPInt"], ["route", "SOAP::SOAPString"], ["actualdeparturetime", "SOAP::SOAPInt"], ["estimatedarrivaltime", "SOAP::SOAPInt"], ["actualarrivaltime", "SOAP::SOAPInt"], ["diverted", "SOAP::SOAPString"], ["origin", "SOAP::SOAPString"], ["destination", "SOAP::SOAPString"], ["originName", "SOAP::SOAPString"], ["originCity", "SOAP::SOAPString"], ["destinationName", "SOAP::SOAPString"], ["destinationCity", "SOAP::SOAPString"]]
attr_accessor :faFlightID
attr_accessor :ident
attr_accessor :aircrafttype
attr_accessor :filed_ete
attr_accessor :filed_time
attr_accessor :filed_departuretime
attr_accessor :filed_airspeed_kts
attr_accessor :filed_airspeed_mach
attr_accessor :filed_altitude
attr_accessor :route
attr_accessor :actualdeparturetime
attr_accessor :estimatedarrivaltime
attr_accessor :actualarrivaltime
attr_accessor :diverted
attr_accessor :origin
attr_accessor :destination
attr_accessor :originName
attr_accessor :originCity
attr_accessor :destinationName
attr_accessor :destinationCity
def initialize(faFlightID = nil, ident = nil, aircrafttype = nil, filed_ete = nil, filed_time = nil, filed_departuretime = nil, filed_airspeed_kts = nil, filed_airspeed_mach = nil, filed_altitude = nil, route = nil, actualdeparturetime = nil, estimatedarrivaltime = nil, actualarrivaltime = nil, diverted = nil, origin = nil, destination = nil, originName = nil, originCity = nil, destinationName = nil, destinationCity = nil)
@faFlightID = faFlightID
@ident = ident
@aircrafttype = aircrafttype
@filed_ete = filed_ete
@filed_time = filed_time
@filed_departuretime = filed_departuretime
@filed_airspeed_kts = filed_airspeed_kts
@filed_airspeed_mach = filed_airspeed_mach
@filed_altitude = filed_altitude
@route = route
@actualdeparturetime = actualdeparturetime
@estimatedarrivaltime = estimatedarrivaltime
@actualarrivaltime = actualarrivaltime
@diverted = diverted
@origin = origin
@destination = destination
@originName = originName
@originCity = originCity
@destinationName = destinationName
@destinationCity = destinationCity
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}FlightInfoExRequest
class FlightInfoExRequest
@@schema_type = "FlightInfoExRequest"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["ident", "SOAP::SOAPString"], ["howMany", "SOAP::SOAPInt"], ["offset", "SOAP::SOAPInt"]]
attr_accessor :ident
attr_accessor :howMany
attr_accessor :offset
def initialize(ident = nil, howMany = nil, offset = nil)
@ident = ident
@howMany = howMany
@offset = offset
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}FlightInfoExResults
class FlightInfoExResults
@@schema_type = "FlightInfoExResults"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["flightInfoExResult", ["FlightInfoExStruct", XSD::QName.new("http://flightxml.flightaware.com/soap/FlightXML2", "FlightInfoExResult")]]]
def FlightInfoExResult
@flightInfoExResult
end
def FlightInfoExResult=(value)
@flightInfoExResult = value
end
def initialize(flightInfoExResult = nil)
@flightInfoExResult = flightInfoExResult
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}FlightInfoExStruct
class FlightInfoExStruct
@@schema_type = "FlightInfoExStruct"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["next_offset", "SOAP::SOAPInt"], ["flights", "FlightExStruct[]"]]
attr_accessor :next_offset
attr_accessor :flights
def initialize(next_offset = nil, flights = [])
@next_offset = next_offset
@flights = flights
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}FlightInfoRequest
class FlightInfoRequest
@@schema_type = "FlightInfoRequest"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["ident", "SOAP::SOAPString"], ["howMany", "SOAP::SOAPInt"]]
attr_accessor :ident
attr_accessor :howMany
def initialize(ident = nil, howMany = nil)
@ident = ident
@howMany = howMany
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}FlightInfoResults
class FlightInfoResults
@@schema_type = "FlightInfoResults"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["flightInfoResult", ["FlightInfoStruct", XSD::QName.new("http://flightxml.flightaware.com/soap/FlightXML2", "FlightInfoResult")]]]
def FlightInfoResult
@flightInfoResult
end
def FlightInfoResult=(value)
@flightInfoResult = value
end
def initialize(flightInfoResult = nil)
@flightInfoResult = flightInfoResult
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}FlightInfoStruct
class FlightInfoStruct
@@schema_type = "FlightInfoStruct"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["next_offset", "SOAP::SOAPInt"], ["flights", "FlightStruct[]"]]
attr_accessor :next_offset
attr_accessor :flights
def initialize(next_offset = nil, flights = [])
@next_offset = next_offset
@flights = flights
end
end
# {http://flightxml.flightaware.com/soap/FlightXML2}FlightRouteStruct
class FlightRouteStruct
@@schema_type = "FlightRouteStruct"
@@schema_ns = "http://flightxml.flightaware.com/soap/FlightXML2"
@@schema_element = [["name", "SOAP::SOAPString"], ["type", "SOAP::SOAPString"], ["latitude", "SOAP::SOAPFloat"], ["longitude", "SOAP::SOAPFloat"]]
attr_accessor :name
attr_accessor :type
attr_accessor :latitude
attr_accessor :longitude
def initialize(name = nil, type = nil, latitude = nil, longitude = nil)
@name = name
@type = type
@latitude = latitude
@longitude = longitude
end