aboutsummaryrefslogtreecommitdiffstats
path: root/lib/asn1/test/asn1_SUITE_data/ChoiceInSeq.asn
blob: ac93226a1bba2ee5615a5eec24009ed5e905d2a9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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