diff options
Diffstat (limited to 'lib/asn1/test/asn1_SUITE_data/ChoiceInSeq.asn')
-rw-r--r-- | lib/asn1/test/asn1_SUITE_data/ChoiceInSeq.asn | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/lib/asn1/test/asn1_SUITE_data/ChoiceInSeq.asn b/lib/asn1/test/asn1_SUITE_data/ChoiceInSeq.asn new file mode 100644 index 0000000000..ac93226a1b --- /dev/null +++ b/lib/asn1/test/asn1_SUITE_data/ChoiceInSeq.asn @@ -0,0 +1,22 @@ +ChoiceInSeq DEFINITIONS ::=
+BEGIN +CallCentreServiceNotificationArg ::= SEQUENCE { + scriptInformation [0] ScriptToScriptInformation, + eventInformation + CHOICE + { callEvent [1] CallEvent, + billingReport [2] BillingInformation + } OPTIONAL +} + +ScriptToScriptInformation ::= INTEGER +CallEvent ::= INTEGER +BillingInformation ::= INTEGER +EventInformation ::= + CHOICE + { callEvent [1] CallEvent, + billingReport [2] BillingInformation + } + + +END |