-
Notifications
You must be signed in to change notification settings - Fork 390
/
epcisquery.src
1229 lines (787 loc) · 39.9 KB
/
epcisquery.src
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
// Code generated by gowsdl DO NOT EDIT.
package myservice
import (
"context"
"encoding/xml"
"github.com/hooklift/gowsdl/soap"
"time"
)
// against "unused imports"
var _ time.Time
var _ xml.Name
type AnyType struct {
InnerXML string `xml:",innerxml"`
}
type AnyURI string
type NCName string
type Document struct {
//
// The version of the schema corresponding to which the instance conforms.
//
SchemaVersion float64 `xml:"urn:epcglobal:xsd:1 schemaVersion,attr,omitempty" json:"schemaVersion,omitempty"`
//
// The date the message was created. Used for auditing and logging.
//
CreationDate soap.XSDDateTime `xml:"urn:epcglobal:xsd:1 creationDate,attr,omitempty" json:"creationDate,omitempty"`
}
type EPC string
type DocumentIdentification struct {
Standard string `xml:"Standard,omitempty" json:"Standard,omitempty"`
TypeVersion string `xml:"TypeVersion,omitempty" json:"TypeVersion,omitempty"`
InstanceIdentifier string `xml:"InstanceIdentifier,omitempty" json:"InstanceIdentifier,omitempty"`
Type string `xml:"Type,omitempty" json:"Type,omitempty"`
MultipleType bool `xml:"MultipleType,omitempty" json:"MultipleType,omitempty"`
CreationDateAndTime soap.XSDDateTime `xml:"CreationDateAndTime,omitempty" json:"CreationDateAndTime,omitempty"`
}
type Partner struct {
Identifier *PartnerIdentification `xml:"Identifier,omitempty" json:"Identifier,omitempty"`
ContactInformation []*ContactInformation `xml:"ContactInformation,omitempty" json:"ContactInformation,omitempty"`
}
type PartnerIdentification struct {
Value string `xml:",chardata" json:"-,"`
Authority string `xml:"Authority,attr,omitempty" json:"Authority,omitempty"`
}
type ContactInformation struct {
Contact string `xml:"Contact,omitempty" json:"Contact,omitempty"`
EmailAddress string `xml:"EmailAddress,omitempty" json:"EmailAddress,omitempty"`
FaxNumber string `xml:"FaxNumber,omitempty" json:"FaxNumber,omitempty"`
TelephoneNumber string `xml:"TelephoneNumber,omitempty" json:"TelephoneNumber,omitempty"`
ContactTypeIdentifier string `xml:"ContactTypeIdentifier,omitempty" json:"ContactTypeIdentifier,omitempty"`
}
// The MIME type as defined by IANA. Please refer to
// http://www.iana.org/assignments/media-types/ for a list of types.
//
type MimeTypeQualifier string
// ISO 639-2; 1998 representation of Language name. Refer to http://www.loc.gov/standards/iso639-2/iso639jac.html to get the latest version of the standard.
//
type Language string
type Manifest struct {
NumberOfItems int32 `xml:"NumberOfItems,omitempty" json:"NumberOfItems,omitempty"`
ManifestItem []*ManifestItem `xml:"ManifestItem,omitempty" json:"ManifestItem,omitempty"`
}
type ManifestItem struct {
MimeTypeQualifierCode *MimeTypeQualifier `xml:"MimeTypeQualifierCode,omitempty" json:"MimeTypeQualifierCode,omitempty"`
UniformResourceIdentifier AnyURI `xml:"UniformResourceIdentifier,omitempty" json:"UniformResourceIdentifier,omitempty"`
Description string `xml:"Description,omitempty" json:"Description,omitempty"`
LanguageCode *Language `xml:"LanguageCode,omitempty" json:"LanguageCode,omitempty"`
}
type TypeOfServiceTransaction string
const (
TypeOfServiceTransactionRequestingServiceTransaction TypeOfServiceTransaction = "RequestingServiceTransaction"
TypeOfServiceTransactionRespondingServiceTransaction TypeOfServiceTransaction = "RespondingServiceTransaction"
)
type ScopeInformation AnyType
type BusinessScope struct {
Scope []*Scope `xml:"Scope,omitempty" json:"Scope,omitempty"`
}
type Scope struct {
ScopeInformation []*ScopeInformation `xml:"ScopeInformation,omitempty" json:"ScopeInformation,omitempty"`
}
type CorrelationInformation struct {
RequestingDocumentCreationDateTime soap.XSDDateTime `xml:"RequestingDocumentCreationDateTime,omitempty" json:"RequestingDocumentCreationDateTime,omitempty"`
RequestingDocumentInstanceIdentifier string `xml:"RequestingDocumentInstanceIdentifier,omitempty" json:"RequestingDocumentInstanceIdentifier,omitempty"`
ExpectedResponseDateTime soap.XSDDateTime `xml:"ExpectedResponseDateTime,omitempty" json:"ExpectedResponseDateTime,omitempty"`
}
type BusinessService struct {
BusinessServiceName string `xml:"BusinessServiceName,omitempty" json:"BusinessServiceName,omitempty"`
ServiceTransaction *ServiceTransaction `xml:"ServiceTransaction,omitempty" json:"ServiceTransaction,omitempty"`
}
type ServiceTransaction struct {
TypeOfServiceTransaction *TypeOfServiceTransaction `xml:"http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader TypeOfServiceTransaction,attr,omitempty" json:"TypeOfServiceTransaction,omitempty"`
IsNonRepudiationRequired string `xml:"http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader IsNonRepudiationRequired,attr,omitempty" json:"IsNonRepudiationRequired,omitempty"`
IsAuthenticationRequired string `xml:"http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader IsAuthenticationRequired,attr,omitempty" json:"IsAuthenticationRequired,omitempty"`
IsNonRepudiationOfReceiptRequired string `xml:"http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader IsNonRepudiationOfReceiptRequired,attr,omitempty" json:"IsNonRepudiationOfReceiptRequired,omitempty"`
IsIntegrityCheckRequired string `xml:"http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader IsIntegrityCheckRequired,attr,omitempty" json:"IsIntegrityCheckRequired,omitempty"`
IsApplicationErrorResponseRequested string `xml:"http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader IsApplicationErrorResponseRequested,attr,omitempty" json:"IsApplicationErrorResponseRequested,omitempty"`
TimeToAcknowledgeReceipt string `xml:"http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader TimeToAcknowledgeReceipt,attr,omitempty" json:"TimeToAcknowledgeReceipt,omitempty"`
TimeToAcknowledgeAcceptance string `xml:"http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader TimeToAcknowledgeAcceptance,attr,omitempty" json:"TimeToAcknowledgeAcceptance,omitempty"`
TimeToPerform string `xml:"http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader TimeToPerform,attr,omitempty" json:"TimeToPerform,omitempty"`
Recurrence string `xml:"http://www.unece.org/cefact/namespaces/StandardBusinessDocumentHeader Recurrence,attr,omitempty" json:"Recurrence,omitempty"`
}
type StandardBusinessDocumentHeader struct {
HeaderVersion string `xml:"HeaderVersion,omitempty" json:"HeaderVersion,omitempty"`
Sender []*Partner `xml:"Sender,omitempty" json:"Sender,omitempty"`
Receiver []*Partner `xml:"Receiver,omitempty" json:"Receiver,omitempty"`
DocumentIdentification *DocumentIdentification `xml:"DocumentIdentification,omitempty" json:"DocumentIdentification,omitempty"`
Manifest *Manifest `xml:"Manifest,omitempty" json:"Manifest,omitempty"`
BusinessScope *BusinessScope `xml:"BusinessScope,omitempty" json:"BusinessScope,omitempty"`
}
type StandardBusinessDocument struct {
StandardBusinessDocumentHeader *StandardBusinessDocumentHeader `xml:"StandardBusinessDocumentHeader,omitempty" json:"StandardBusinessDocumentHeader,omitempty"`
Items []string `xml:",any" json:"items,omitempty"`
}
type ActionType string
const (
ActionTypeADD ActionType = "ADD"
ActionTypeOBSERVE ActionType = "OBSERVE"
ActionTypeDELETE ActionType = "DELETE"
)
type ParentIDType AnyURI
type BusinessStepIDType AnyURI
type DispositionIDType AnyURI
type EPCClassType AnyURI
type UOMType string
type ReadPointIDType AnyURI
type BusinessLocationIDType AnyURI
type BusinessTransactionIDType AnyURI
type BusinessTransactionTypeIDType AnyURI
type SourceDestIDType AnyURI
type SourceDestTypeIDType AnyURI
type TransformationIDType AnyURI
type EventIDType AnyURI
type ErrorReasonIDType AnyURI
type EPCISDocument EPCISDocumentType
type EPCISDocumentType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 EPCISDocument"`
*Document
EPCISHeader *EPCISHeaderType `xml:"EPCISHeader,omitempty" json:"EPCISHeader,omitempty"`
EPCISBody *EPCISBodyType `xml:"EPCISBody,omitempty" json:"EPCISBody,omitempty"`
Extension *EPCISDocumentExtensionType `xml:"extension,omitempty" json:"extension,omitempty"`
}
type EPCISDocumentExtensionType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 extension"`
Items []string `xml:",any" json:"items,omitempty"`
}
type EPCISHeaderType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 EPCISHeader"`
StandardBusinessDocumentHeader *StandardBusinessDocumentHeader `xml:"StandardBusinessDocumentHeader,omitempty" json:"StandardBusinessDocumentHeader,omitempty"`
Extension *EPCISHeaderExtensionType `xml:"extension,omitempty" json:"extension,omitempty"`
Items []string `xml:",any" json:"items,omitempty"`
}
type EPCISHeaderExtensionType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 extension"`
EPCISMasterData *EPCISMasterDataType `xml:"EPCISMasterData,omitempty" json:"EPCISMasterData,omitempty"`
Extension *EPCISHeaderExtension2Type `xml:"extension,omitempty" json:"extension,omitempty"`
}
type EPCISHeaderExtension2Type struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 extension"`
Items []string `xml:",any" json:"items,omitempty"`
}
type EPCISMasterDataType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 EPCISMasterData"`
VocabularyList *VocabularyListType `xml:"VocabularyList,omitempty" json:"VocabularyList,omitempty"`
Extension *EPCISMasterDataExtensionType `xml:"extension,omitempty" json:"extension,omitempty"`
}
type EPCISMasterDataExtensionType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 extension"`
Items []string `xml:",any" json:"items,omitempty"`
}
type VocabularyListType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 VocabularyList"`
Vocabulary []*VocabularyType `xml:"Vocabulary,omitempty" json:"Vocabulary,omitempty"`
}
type VocabularyType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 Vocabulary"`
VocabularyElementList *VocabularyElementListType `xml:"VocabularyElementList,omitempty" json:"VocabularyElementList,omitempty"`
Extension *VocabularyExtensionType `xml:"extension,omitempty" json:"extension,omitempty"`
Items []string `xml:",any" json:"items,omitempty"`
Type AnyURI `xml:"urn:epcglobal:epcis:xsd:1 type,attr,omitempty" json:"type,omitempty"`
}
type VocabularyElementListType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 VocabularyElementList"`
VocabularyElement []*VocabularyElementType `xml:"VocabularyElement,omitempty" json:"VocabularyElement,omitempty"`
}
type VocabularyElementType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 VocabularyElement"`
Attribute []*AttributeType `xml:"attribute,omitempty" json:"attribute,omitempty"`
Children *IDListType `xml:"children,omitempty" json:"children,omitempty"`
Extension *VocabularyElementExtensionType `xml:"extension,omitempty" json:"extension,omitempty"`
Items []string `xml:",any" json:"items,omitempty"`
Id AnyURI `xml:"urn:epcglobal:epcis:xsd:1 id,attr,omitempty" json:"id,omitempty"`
}
type AttributeType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 attribute"`
AnyType
Id AnyURI `xml:"urn:epcglobal:epcis:xsd:1 id,attr,omitempty" json:"id,omitempty"`
}
type IDListType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 children"`
Id []AnyURI `xml:"id,omitempty" json:"id,omitempty"`
}
type VocabularyExtensionType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 extension"`
Items []string `xml:",any" json:"items,omitempty"`
}
type VocabularyElementExtensionType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 extension"`
Items []string `xml:",any" json:"items,omitempty"`
}
type EPCISBodyType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 EPCISBody"`
EventList *EventListType `xml:"EventList,omitempty" json:"EventList,omitempty"`
Extension *EPCISBodyExtensionType `xml:"extension,omitempty" json:"extension,omitempty"`
Items []string `xml:",any" json:"items,omitempty"`
}
type EPCISBodyExtensionType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 extension"`
Items []string `xml:",any" json:"items,omitempty"`
}
type EventListType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 EventList"`
ObjectEvent []*ObjectEventType `xml:"ObjectEvent,omitempty" json:"ObjectEvent,omitempty"`
AggregationEvent []*AggregationEventType `xml:"AggregationEvent,omitempty" json:"AggregationEvent,omitempty"`
QuantityEvent []*QuantityEventType `xml:"QuantityEvent,omitempty" json:"QuantityEvent,omitempty"`
TransactionEvent []*TransactionEventType `xml:"TransactionEvent,omitempty" json:"TransactionEvent,omitempty"`
Extension *EPCISEventListExtensionType `xml:"extension,omitempty" json:"extension,omitempty"`
}
type EPCISEventListExtensionType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 extension"`
TransformationEvent *TransformationEventType `xml:"TransformationEvent,omitempty" json:"TransformationEvent,omitempty"`
Extension *EPCISEventListExtension2Type `xml:"extension,omitempty" json:"extension,omitempty"`
}
type EPCISEventListExtension2Type struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 extension"`
Items []string `xml:",any" json:"items,omitempty"`
}
type EPCListType struct {
Epc []*EPC `xml:"epc,omitempty" json:"epc,omitempty"`
}
type QuantityElementType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 quantityElement"`
EpcClass *EPCClassType `xml:"epcClass,omitempty" json:"epcClass,omitempty"`
}
type QuantityListType struct {
QuantityElement []*QuantityElementType `xml:"quantityElement,omitempty" json:"quantityElement,omitempty"`
}
type ReadPointType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 readPoint"`
Id *ReadPointIDType `xml:"id,omitempty" json:"id,omitempty"`
Extension *ReadPointExtensionType `xml:"extension,omitempty" json:"extension,omitempty"`
Items []string `xml:",any" json:"items,omitempty"`
}
type ReadPointExtensionType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 extension"`
Items []string `xml:",any" json:"items,omitempty"`
}
type BusinessLocationType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 bizLocation"`
Id *BusinessLocationIDType `xml:"id,omitempty" json:"id,omitempty"`
Extension *BusinessLocationExtensionType `xml:"extension,omitempty" json:"extension,omitempty"`
Items []string `xml:",any" json:"items,omitempty"`
}
type BusinessLocationExtensionType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 extension"`
Items []string `xml:",any" json:"items,omitempty"`
}
type BusinessTransactionType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 bizTransaction"`
Value *BusinessTransactionIDType `xml:",chardata" json:"-,"`
Type *BusinessTransactionTypeIDType `xml:"urn:epcglobal:epcis:xsd:1 type,attr,omitempty" json:"type,omitempty"`
}
type BusinessTransactionListType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 bizTransactionList"`
BizTransaction []*BusinessTransactionType `xml:"bizTransaction,omitempty" json:"bizTransaction,omitempty"`
}
type SourceDestType struct {
Value *SourceDestIDType `xml:",chardata" json:"-,"`
Type *SourceDestTypeIDType `xml:"urn:epcglobal:epcis:xsd:1 type,attr,omitempty" json:"type,omitempty"`
}
type SourceListType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 sourceList"`
Source []*SourceDestType `xml:"source,omitempty" json:"source,omitempty"`
}
type DestinationListType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 destinationList"`
Destination []*SourceDestType `xml:"destination,omitempty" json:"destination,omitempty"`
}
type ILMDType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 ilmd"`
Extension *ILMDExtensionType `xml:"extension,omitempty" json:"extension,omitempty"`
Items []string `xml:",any" json:"items,omitempty"`
}
type ILMDExtensionType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 extension"`
Items []string `xml:",any" json:"items,omitempty"`
}
type CorrectiveEventIDsType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 correctiveEventIDs"`
CorrectiveEventID []*EventIDType `xml:"correctiveEventID,omitempty" json:"correctiveEventID,omitempty"`
}
type ErrorDeclarationType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 errorDeclaration"`
DeclarationTime soap.XSDDateTime `xml:"declarationTime,omitempty" json:"declarationTime,omitempty"`
Reason *ErrorReasonIDType `xml:"reason,omitempty" json:"reason,omitempty"`
CorrectiveEventIDs *CorrectiveEventIDsType `xml:"correctiveEventIDs,omitempty" json:"correctiveEventIDs,omitempty"`
Extension *ErrorDeclarationExtensionType `xml:"extension,omitempty" json:"extension,omitempty"`
Items []string `xml:",any" json:"items,omitempty"`
}
type ErrorDeclarationExtensionType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 extension"`
Items []string `xml:",any" json:"items,omitempty"`
}
type EPCISEventType struct {
EventTime soap.XSDDateTime `xml:"eventTime,omitempty" json:"eventTime,omitempty"`
RecordTime soap.XSDDateTime `xml:"recordTime,omitempty" json:"recordTime,omitempty"`
EventTimeZoneOffset string `xml:"eventTimeZoneOffset,omitempty" json:"eventTimeZoneOffset,omitempty"`
BaseExtension *EPCISEventExtensionType `xml:"baseExtension,omitempty" json:"baseExtension,omitempty"`
}
type EPCISEventExtensionType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 baseExtension"`
EventID *EventIDType `xml:"eventID,omitempty" json:"eventID,omitempty"`
ErrorDeclaration *ErrorDeclarationType `xml:"errorDeclaration,omitempty" json:"errorDeclaration,omitempty"`
Extension *EPCISEventExtension2Type `xml:"extension,omitempty" json:"extension,omitempty"`
}
type EPCISEventExtension2Type struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 extension"`
Items []string `xml:",any" json:"items,omitempty"`
}
type ObjectEventType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 ObjectEvent"`
*EPCISEventType
EpcList *EPCListType `xml:"epcList,omitempty" json:"epcList,omitempty"`
Action *ActionType `xml:"action,omitempty" json:"action,omitempty"`
BizStep *BusinessStepIDType `xml:"bizStep,omitempty" json:"bizStep,omitempty"`
Disposition *DispositionIDType `xml:"disposition,omitempty" json:"disposition,omitempty"`
ReadPoint *ReadPointType `xml:"readPoint,omitempty" json:"readPoint,omitempty"`
BizLocation *BusinessLocationType `xml:"bizLocation,omitempty" json:"bizLocation,omitempty"`
BizTransactionList *BusinessTransactionListType `xml:"bizTransactionList,omitempty" json:"bizTransactionList,omitempty"`
Extension *ObjectEventExtensionType `xml:"extension,omitempty" json:"extension,omitempty"`
}
type ObjectEventExtensionType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 extension"`
QuantityList *QuantityListType `xml:"quantityList,omitempty" json:"quantityList,omitempty"`
SourceList *SourceListType `xml:"sourceList,omitempty" json:"sourceList,omitempty"`
DestinationList *DestinationListType `xml:"destinationList,omitempty" json:"destinationList,omitempty"`
Ilmd *ILMDType `xml:"ilmd,omitempty" json:"ilmd,omitempty"`
Extension *ObjectEventExtension2Type `xml:"extension,omitempty" json:"extension,omitempty"`
}
type ObjectEventExtension2Type struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 extension"`
Items []string `xml:",any" json:"items,omitempty"`
}
type AggregationEventType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 AggregationEvent"`
*EPCISEventType
ParentID *ParentIDType `xml:"parentID,omitempty" json:"parentID,omitempty"`
ChildEPCs *EPCListType `xml:"childEPCs,omitempty" json:"childEPCs,omitempty"`
Action *ActionType `xml:"action,omitempty" json:"action,omitempty"`
BizStep *BusinessStepIDType `xml:"bizStep,omitempty" json:"bizStep,omitempty"`
Disposition *DispositionIDType `xml:"disposition,omitempty" json:"disposition,omitempty"`
ReadPoint *ReadPointType `xml:"readPoint,omitempty" json:"readPoint,omitempty"`
BizLocation *BusinessLocationType `xml:"bizLocation,omitempty" json:"bizLocation,omitempty"`
BizTransactionList *BusinessTransactionListType `xml:"bizTransactionList,omitempty" json:"bizTransactionList,omitempty"`
Extension *AggregationEventExtensionType `xml:"extension,omitempty" json:"extension,omitempty"`
}
type AggregationEventExtensionType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 extension"`
ChildQuantityList *QuantityListType `xml:"childQuantityList,omitempty" json:"childQuantityList,omitempty"`
SourceList *SourceListType `xml:"sourceList,omitempty" json:"sourceList,omitempty"`
DestinationList *DestinationListType `xml:"destinationList,omitempty" json:"destinationList,omitempty"`
Extension *AggregationEventExtension2Type `xml:"extension,omitempty" json:"extension,omitempty"`
}
type AggregationEventExtension2Type struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 extension"`
Items []string `xml:",any" json:"items,omitempty"`
}
type QuantityEventType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 QuantityEvent"`
*EPCISEventType
EpcClass *EPCClassType `xml:"epcClass,omitempty" json:"epcClass,omitempty"`
Quantity int32 `xml:"quantity,omitempty" json:"quantity,omitempty"`
BizStep *BusinessStepIDType `xml:"bizStep,omitempty" json:"bizStep,omitempty"`
Disposition *DispositionIDType `xml:"disposition,omitempty" json:"disposition,omitempty"`
ReadPoint *ReadPointType `xml:"readPoint,omitempty" json:"readPoint,omitempty"`
BizLocation *BusinessLocationType `xml:"bizLocation,omitempty" json:"bizLocation,omitempty"`
BizTransactionList *BusinessTransactionListType `xml:"bizTransactionList,omitempty" json:"bizTransactionList,omitempty"`
Extension *QuantityEventExtensionType `xml:"extension,omitempty" json:"extension,omitempty"`
}
type QuantityEventExtensionType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 extension"`
Items []string `xml:",any" json:"items,omitempty"`
}
type TransactionEventType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 TransactionEvent"`
*EPCISEventType
BizTransactionList *BusinessTransactionListType `xml:"bizTransactionList,omitempty" json:"bizTransactionList,omitempty"`
ParentID *ParentIDType `xml:"parentID,omitempty" json:"parentID,omitempty"`
EpcList *EPCListType `xml:"epcList,omitempty" json:"epcList,omitempty"`
Action *ActionType `xml:"action,omitempty" json:"action,omitempty"`
BizStep *BusinessStepIDType `xml:"bizStep,omitempty" json:"bizStep,omitempty"`
Disposition *DispositionIDType `xml:"disposition,omitempty" json:"disposition,omitempty"`
ReadPoint *ReadPointType `xml:"readPoint,omitempty" json:"readPoint,omitempty"`
BizLocation *BusinessLocationType `xml:"bizLocation,omitempty" json:"bizLocation,omitempty"`
Extension *TransactionEventExtensionType `xml:"extension,omitempty" json:"extension,omitempty"`
}
type TransactionEventExtensionType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 extension"`
QuantityList *QuantityListType `xml:"quantityList,omitempty" json:"quantityList,omitempty"`
SourceList *SourceListType `xml:"sourceList,omitempty" json:"sourceList,omitempty"`
DestinationList *DestinationListType `xml:"destinationList,omitempty" json:"destinationList,omitempty"`
Extension *TransactionEventExtension2Type `xml:"extension,omitempty" json:"extension,omitempty"`
}
type TransactionEventExtension2Type struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 extension"`
Items []string `xml:",any" json:"items,omitempty"`
}
type TransformationEventType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 TransformationEvent"`
*EPCISEventType
InputEPCList *EPCListType `xml:"inputEPCList,omitempty" json:"inputEPCList,omitempty"`
InputQuantityList *QuantityListType `xml:"inputQuantityList,omitempty" json:"inputQuantityList,omitempty"`
OutputEPCList *EPCListType `xml:"outputEPCList,omitempty" json:"outputEPCList,omitempty"`
OutputQuantityList *QuantityListType `xml:"outputQuantityList,omitempty" json:"outputQuantityList,omitempty"`
TransformationID *TransformationIDType `xml:"transformationID,omitempty" json:"transformationID,omitempty"`
BizStep *BusinessStepIDType `xml:"bizStep,omitempty" json:"bizStep,omitempty"`
Disposition *DispositionIDType `xml:"disposition,omitempty" json:"disposition,omitempty"`
ReadPoint *ReadPointType `xml:"readPoint,omitempty" json:"readPoint,omitempty"`
BizLocation *BusinessLocationType `xml:"bizLocation,omitempty" json:"bizLocation,omitempty"`
BizTransactionList *BusinessTransactionListType `xml:"bizTransactionList,omitempty" json:"bizTransactionList,omitempty"`
SourceList *SourceListType `xml:"sourceList,omitempty" json:"sourceList,omitempty"`
DestinationList *DestinationListType `xml:"destinationList,omitempty" json:"destinationList,omitempty"`
Ilmd *ILMDType `xml:"ilmd,omitempty" json:"ilmd,omitempty"`
Extension *TransformationEventExtensionType `xml:"extension,omitempty" json:"extension,omitempty"`
}
type TransformationEventExtensionType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis:xsd:1 extension"`
Items []string `xml:",any" json:"items,omitempty"`
}
type ImplementationExceptionSeverity NCName
const (
ImplementationExceptionSeverityERROR ImplementationExceptionSeverity = "ERROR"
ImplementationExceptionSeveritySEVERE ImplementationExceptionSeverity = "SEVERE"
)
type EPCISQueryDocument EPCISQueryDocumentType
type GetQueryNames EmptyParms
type GetQueryNamesResult ArrayOfString
type SubscribeResult VoidHolder
type UnsubscribeResult VoidHolder
type GetSubscriptionIDsResult ArrayOfString
type GetStandardVersion EmptyParms
type GetStandardVersionResult string
type GetVendorVersion EmptyParms
type GetVendorVersionResult string
type EPCISQueryDocumentType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis-query:xsd:1 EPCISQueryDocument"`
*Document
EPCISHeader *EPCISHeaderType `xml:"EPCISHeader,omitempty" json:"EPCISHeader,omitempty"`
EPCISBody *EPCISQueryBodyType `xml:"EPCISBody,omitempty" json:"EPCISBody,omitempty"`
Extension *EPCISQueryDocumentExtensionType `xml:"extension,omitempty" json:"extension,omitempty"`
}
type EPCISQueryDocumentExtensionType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis-query:xsd:1 extension"`
Items []string `xml:",any" json:"items,omitempty"`
}
type EPCISQueryBodyType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis-query:xsd:1 EPCISBody"`
GetQueryNames *GetQueryNames `xml:"GetQueryNames,omitempty" json:"GetQueryNames,omitempty"`
GetQueryNamesResult *GetQueryNamesResult `xml:"GetQueryNamesResult,omitempty" json:"GetQueryNamesResult,omitempty"`
Subscribe *Subscribe `xml:"Subscribe,omitempty" json:"Subscribe,omitempty"`
SubscribeResult *SubscribeResult `xml:"SubscribeResult,omitempty" json:"SubscribeResult,omitempty"`
Unsubscribe *Unsubscribe `xml:"Unsubscribe,omitempty" json:"Unsubscribe,omitempty"`
UnsubscribeResult *UnsubscribeResult `xml:"UnsubscribeResult,omitempty" json:"UnsubscribeResult,omitempty"`
GetSubscriptionIDs *GetSubscriptionIDs `xml:"GetSubscriptionIDs,omitempty" json:"GetSubscriptionIDs,omitempty"`
GetSubscriptionIDsResult *GetSubscriptionIDsResult `xml:"GetSubscriptionIDsResult,omitempty" json:"GetSubscriptionIDsResult,omitempty"`
Poll *Poll `xml:"Poll,omitempty" json:"Poll,omitempty"`
GetStandardVersion *GetStandardVersion `xml:"GetStandardVersion,omitempty" json:"GetStandardVersion,omitempty"`
GetStandardVersionResult *GetStandardVersionResult `xml:"GetStandardVersionResult,omitempty" json:"GetStandardVersionResult,omitempty"`
GetVendorVersion *GetVendorVersion `xml:"GetVendorVersion,omitempty" json:"GetVendorVersion,omitempty"`
GetVendorVersionResult *GetVendorVersionResult `xml:"GetVendorVersionResult,omitempty" json:"GetVendorVersionResult,omitempty"`
DuplicateNameException *DuplicateNameException `xml:"DuplicateNameException,omitempty" json:"DuplicateNameException,omitempty"`
InvalidURIException *InvalidURIException `xml:"InvalidURIException,omitempty" json:"InvalidURIException,omitempty"`
NoSuchNameException *NoSuchNameException `xml:"NoSuchNameException,omitempty" json:"NoSuchNameException,omitempty"`
NoSuchSubscriptionException *NoSuchSubscriptionException `xml:"NoSuchSubscriptionException,omitempty" json:"NoSuchSubscriptionException,omitempty"`
DuplicateSubscriptionException *DuplicateSubscriptionException `xml:"DuplicateSubscriptionException,omitempty" json:"DuplicateSubscriptionException,omitempty"`
QueryParameterException *QueryParameterException `xml:"QueryParameterException,omitempty" json:"QueryParameterException,omitempty"`
QueryTooLargeException *QueryTooLargeException `xml:"QueryTooLargeException,omitempty" json:"QueryTooLargeException,omitempty"`
QueryTooComplexException *QueryTooComplexException `xml:"QueryTooComplexException,omitempty" json:"QueryTooComplexException,omitempty"`
SubscriptionControlsException *SubscriptionControlsException `xml:"SubscriptionControlsException,omitempty" json:"SubscriptionControlsException,omitempty"`
SubscribeNotPermittedException *SubscribeNotPermittedException `xml:"SubscribeNotPermittedException,omitempty" json:"SubscribeNotPermittedException,omitempty"`
SecurityException *SecurityException `xml:"SecurityException,omitempty" json:"SecurityException,omitempty"`
ValidationException *ValidationException `xml:"ValidationException,omitempty" json:"ValidationException,omitempty"`
ImplementationException *ImplementationException `xml:"ImplementationException,omitempty" json:"ImplementationException,omitempty"`
QueryResults *QueryResults `xml:"QueryResults,omitempty" json:"QueryResults,omitempty"`
}
type Subscribe struct {
QueryName string `xml:"queryName,omitempty" json:"queryName,omitempty"`
Params *QueryParams `xml:"params,omitempty" json:"params,omitempty"`
Dest AnyURI `xml:"dest,omitempty" json:"dest,omitempty"`
Controls *SubscriptionControls `xml:"controls,omitempty" json:"controls,omitempty"`
SubscriptionID string `xml:"subscriptionID,omitempty" json:"subscriptionID,omitempty"`
}
type Unsubscribe struct {
SubscriptionID string `xml:"subscriptionID,omitempty" json:"subscriptionID,omitempty"`
}
type GetSubscriptionIDs struct {
QueryName string `xml:"queryName,omitempty" json:"queryName,omitempty"`
}
type Poll struct {
QueryName string `xml:"queryName,omitempty" json:"queryName,omitempty"`
Params *QueryParams `xml:"params,omitempty" json:"params,omitempty"`
}
type VoidHolder struct {
}
type EmptyParms struct {
}
type ArrayOfString struct {
Astring []string `xml:"string,omitempty" json:"string,omitempty"`
}
type SubscriptionControls struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis-query:xsd:1 controls"`
Schedule *QuerySchedule `xml:"schedule,omitempty" json:"schedule,omitempty"`
Trigger AnyURI `xml:"trigger,omitempty" json:"trigger,omitempty"`
InitialRecordTime soap.XSDDateTime `xml:"initialRecordTime,omitempty" json:"initialRecordTime,omitempty"`
ReportIfEmpty bool `xml:"reportIfEmpty,omitempty" json:"reportIfEmpty,omitempty"`
Extension *SubscriptionControlsExtensionType `xml:"extension,omitempty" json:"extension,omitempty"`
Items []string `xml:",any" json:"items,omitempty"`
}
type SubscriptionControlsExtensionType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis-query:xsd:1 extension"`
Items []string `xml:",any" json:"items,omitempty"`
}
type QuerySchedule struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis-query:xsd:1 schedule"`
Second string `xml:"second,omitempty" json:"second,omitempty"`
Minute string `xml:"minute,omitempty" json:"minute,omitempty"`
Hour string `xml:"hour,omitempty" json:"hour,omitempty"`
DayOfMonth string `xml:"dayOfMonth,omitempty" json:"dayOfMonth,omitempty"`
Month string `xml:"month,omitempty" json:"month,omitempty"`
DayOfWeek string `xml:"dayOfWeek,omitempty" json:"dayOfWeek,omitempty"`
Extension *QueryScheduleExtensionType `xml:"extension,omitempty" json:"extension,omitempty"`
Items []string `xml:",any" json:"items,omitempty"`
}
type QueryScheduleExtensionType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis-query:xsd:1 extension"`
Items []string `xml:",any" json:"items,omitempty"`
}
type QueryParams struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis-query:xsd:1 params"`
Param []*QueryParam `xml:"param,omitempty" json:"param,omitempty"`
}
type QueryParam struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis-query:xsd:1 param"`
Name string `xml:"name,omitempty" json:"name,omitempty"`
Value AnyType `xml:"value,omitempty" json:"value,omitempty"`
}
type QueryResults struct {
QueryName string `xml:"queryName,omitempty" json:"queryName,omitempty"`
SubscriptionID string `xml:"subscriptionID,omitempty" json:"subscriptionID,omitempty"`
ResultsBody *QueryResultsBody `xml:"resultsBody,omitempty" json:"resultsBody,omitempty"`
Extension *QueryResultsExtensionType `xml:"extension,omitempty" json:"extension,omitempty"`
Items []string `xml:",any" json:"items,omitempty"`
}
type QueryResultsExtensionType struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis-query:xsd:1 extension"`
Items []string `xml:",any" json:"items,omitempty"`
}
type QueryResultsBody struct {
XMLName xml.Name `xml:"urn:epcglobal:epcis-query:xsd:1 resultsBody"`
EventList *EventListType `xml:"EventList,omitempty" json:"EventList,omitempty"`
VocabularyList *VocabularyListType `xml:"VocabularyList,omitempty" json:"VocabularyList,omitempty"`
}
type EPCISException struct {
Reason string `xml:"reason,omitempty" json:"reason,omitempty"`
}
type DuplicateNameException struct {
*EPCISException
}
type InvalidURIException struct {
*EPCISException
}
type NoSuchNameException struct {
*EPCISException
}
type NoSuchSubscriptionException struct {
*EPCISException
}
type DuplicateSubscriptionException struct {
*EPCISException
}
type QueryParameterException struct {
*EPCISException
}
type QueryTooLargeException struct {
*EPCISException
QueryName string `xml:"queryName,omitempty" json:"queryName,omitempty"`
SubscriptionID string `xml:"subscriptionID,omitempty" json:"subscriptionID,omitempty"`
}
type QueryTooComplexException struct {
*EPCISException
}
type SubscriptionControlsException struct {
*EPCISException
}
type SubscribeNotPermittedException struct {
*EPCISException
}
type SecurityException struct {
*EPCISException
}