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
|
CSTA-data-collected
{ iso( 1) identified-organization( 3) icd-ecma( 12)
standard( 0) csta3( 285) data-collected( 343) }
DEFINITIONS ::=
BEGIN
IMPORTS
OPERATION, ERROR FROM Remote-Operations-Information-Objects
{joint-iso-itu-t remote-operations(4) informationObjects(5) version1(0) }
-- Data Types --
universalFailure FROM CSTA-error-definition
{ iso( 1) identified-organization( 3) icd-ecma( 12)
standard( 0) csta3( 285) error-definition( 120) }
CSTACommonArguments FROM CSTA-extension-types
{ iso( 1) identified-organization( 3) icd-ecma( 12)
standard( 0) csta3( 285) extension-types( 129) }
ConnectionInformation FROM CSTA-media-services
{ iso( 1) identified-organization( 3) icd-ecma( 12)
standard( 0) csta3( 285) media-services( 136) }
DcollCrossRefID FROM CSTA-data-collection
{ iso( 1) identified-organization( 3) icd-ecma( 12)
standard( 0) csta3( 285) data-collection( 138) };
dataCollected OPERATION ::=
{ ARGUMENT DataCollectedArgument
RESULT DataCollectedResult
ERRORS {universalFailure }
CODE local: 343 }
DataCollectedArgument ::= SEQUENCE
{ dcollCrossRefID DcollCrossRefID,
digitsData [0] IMPLICIT DigitsData OPTIONAL,
telTonesData [1] IMPLICIT TelTonesData OPTIONAL,
connectionInformation [2] IMPLICIT ConnectionInformation OPTIONAL,
dcollCause DcollCause OPTIONAL,
extensions CSTACommonArguments OPTIONAL }
DataCollectedResult ::= CHOICE
{ extensions CSTACommonArguments,
noData NULL }
DigitsData ::= SEQUENCE
{ digitsDetected IA5String (SIZE(0..64)),
digitsDuration [0] IMPLICIT SEQUENCE OF INTEGER OPTIONAL,
digitsPauseDuration [1] IMPLICIT SEQUENCE OF INTEGER OPTIONAL }
TelTonesData ::= SEQUENCE
{ toneDetected ToneDetected,
toneFrequency [0] IMPLICIT INTEGER OPTIONAL,
toneDuration [1] IMPLICIT INTEGER OPTIONAL,
tonePauseDuration [2] IMPLICIT INTEGER OPTIONAL }
ToneDetected ::= ENUMERATED
{ beep ( 0),
billing ( 1),
busy ( 2),
carrier ( 3),
confirmation ( 4),
dial ( 5),
faxCNG ( 6),
hold ( 7),
howler ( 8),
intrusion ( 9),
modemCNG (10),
park (11),
recordWarning (12),
reorder (13),
ringback (14),
silence (15),
sitVC (16),
sitIC (17),
sitRO (18),
sitNC (19),
other (20) }
DcollCause ::= ENUMERATED
{ flushCharReceived ( 0),
charCountReached ( 1),
timeout ( 2),
sfTerminated ( 3) }
END -- of CSTA-data-collected
|