posxml_parser 1.3.1 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 6e2bfaef22ba4aaec0f54675797c07a9eb6a592c
4
- data.tar.gz: 07cf508bdff1f399fc1e419f81b3c6839fa8f5a5
3
+ metadata.gz: 922b6e903234fcc2824fb73f7b65fa4ae164de55
4
+ data.tar.gz: 624b36e3a15e7eefe2e356a950bfbdf9d0ac3756
5
5
  SHA512:
6
- metadata.gz: 13a1187466784ce5407dd8e6320ba410a0ee1e841096a66a7d03163475df9a75034b0285978a80f2059c1843fbb78ac62cd58271a02a03798b3dfa40f71a9dba
7
- data.tar.gz: 8e813da3ca11bd98f1c065321d14d51a1bec97f4971451d4db6fad61f6e54f1d4020d50969f3915bdb389f3be47d88c0b70c4c0e30e9d09ca42a5c392ca7a6e2
6
+ metadata.gz: 4d10e1046ccdb6a4140a58b062be03d2aba4a1f07297ebb18c2e09f9d309dfce797ce53415ba559ea51910ec4654a15aa226b3c40907b8164e6509024746e87b
7
+ data.tar.gz: 8c6d97c2022face12080345117e4af0a18bd636fcfd1c5465f0bd1ba68fc050cf975a9b16d162c9b33d9e31319523f23a60a4bf53632773901db0491f87a7e3a
@@ -1,5 +1,13 @@
1
1
  # Posxml Parser
2
2
 
3
+ ### 2.0.0 - 2018-02-21
4
+
5
+ - Bug fix interface_menu function to expect “1.” And “1 “ entry numbers.
6
+ - Support to send a pure xml code if file doesn't exists at PosxmlCompiler.compile.
7
+ - Fix private method call at posxml_compiler scope.
8
+ - Add posxml_compiler to ruby gem.
9
+ - Release util_wait(miliseconds) if a key is pressed.
10
+
3
11
  ### 1.3.1 - 2018-02-15
4
12
 
5
13
  - Fix PaymentChannel hierarchy call.
@@ -0,0 +1,18 @@
1
+
2
+ unless Object.const_defined?(:MTest)
3
+ require "#{File.dirname(__FILE__)}/posxml_compiler/posxml_compiler_error.rb"
4
+ Dir["#{File.dirname(__FILE__)}/posxml_compiler/**/*.rb"].each {|file| require file }
5
+ end
6
+
7
+ module PosxmlCompiler
8
+ def self.compile(source, content_xsd)
9
+ xsd = PosxmlCompiler::XsdParser.new(content_xsd)
10
+ if File.exists? source
11
+ compilation = PosxmlCompiler::Parser.new(File.read(source), xsd)
12
+ else
13
+ compilation = PosxmlCompiler::Parser.new(source, xsd)
14
+ end
15
+ compilation.posxml
16
+ end
17
+ end
18
+
@@ -0,0 +1,4306 @@
1
+ module PosxmlCompiler
2
+ POSXML_EN_XSD =<<'EOF'
3
+ <?xml version="1.0" encoding="utf-8"?>
4
+ <xs:schema targetNamespace="http://tempuri.org/posxml.xsd" elementFormDefault="qualified" xmlns="http://tempuri.org/posxml.xsd" xmlns:mstns="http://tempuri.org/posxml.xsd" xmlns:xs="http://www.w3.org/2001/XMLSchema">
5
+ <xs:element name="posxmlapplication">
6
+ <xs:annotation>
7
+ <xs:documentation>PosXml Application</xs:documentation>
8
+ </xs:annotation>
9
+ <xs:complexType>
10
+ <xs:sequence>
11
+ <xs:element name="page" type="page" maxOccurs="unbounded">
12
+ <xs:annotation>
13
+ <xs:documentation>Page of application PosXml</xs:documentation>
14
+ </xs:annotation>
15
+ </xs:element>
16
+ </xs:sequence>
17
+ </xs:complexType>
18
+ </xs:element>
19
+ <xs:complexType name="page">
20
+ <xs:choice maxOccurs="unbounded">
21
+ <xs:group ref="comandos" />
22
+ </xs:choice>
23
+ <xs:attribute name="name" type="xs:string" use="required">
24
+ <xs:annotation>
25
+ <xs:documentation>Set the page name of application PosXml. Put 'main' if this page will be the first one to be executed.</xs:documentation>
26
+ </xs:annotation>
27
+ </xs:attribute>
28
+ </xs:complexType>
29
+ <xs:group name="comandos">
30
+ <xs:choice>
31
+ <xs:element name="display" type="display">
32
+ <xs:annotation>
33
+ <!-- ordem dos parametros -->
34
+ <xs:appinfo>line,column,message</xs:appinfo>
35
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
36
+ <xs:appinfo>d;true;false;false</xs:appinfo>
37
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
38
+ <xs:appinfo>
39
+ </xs:appinfo>
40
+ <xs:documentation>Display is used to show message in the terminal's display</xs:documentation>
41
+ </xs:annotation>
42
+ </xs:element>
43
+ <xs:element name="cleandisplay" type="cleandisplay">
44
+ <xs:annotation>
45
+ <!-- ordem dos parametros -->
46
+ <xs:appinfo>
47
+ </xs:appinfo>
48
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
49
+ <xs:appinfo>H;false;false;false</xs:appinfo>
50
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
51
+ <xs:appinfo>
52
+ </xs:appinfo>
53
+ <xs:documentation>Cleandisplay is used to clean the terminal's display</xs:documentation>
54
+ </xs:annotation>
55
+ </xs:element>
56
+ <xs:element name="if" type="if" maxOccurs="unbounded">
57
+ <xs:annotation>
58
+ <!-- ordem dos parametros -->
59
+ <xs:appinfo>variable,operator,value</xs:appinfo>
60
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
61
+ <xs:appinfo>I;true;false;false</xs:appinfo>
62
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
63
+ <xs:appinfo>E;false;false;false</xs:appinfo>
64
+ <xs:documentation>If is used to make logical blocks in PosXml Application.</xs:documentation>
65
+ </xs:annotation>
66
+ </xs:element>
67
+ <xs:element name="function" type="function" maxOccurs="unbounded">
68
+ <xs:annotation>
69
+ <!-- ordem dos parametros -->
70
+ <xs:appinfo>name</xs:appinfo>
71
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
72
+ <xs:appinfo>l;true;true;false</xs:appinfo>
73
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
74
+ <xs:appinfo>r;false;false;false</xs:appinfo>
75
+ <xs:documentation>Function is used to make functions in PosXml Application.</xs:documentation>
76
+ </xs:annotation>
77
+ </xs:element>
78
+ <xs:element name="inputinteger" type="inputinteger">
79
+ <xs:annotation>
80
+ <!-- ordem dos parametros -->
81
+ <xs:appinfo>variable,line,column,message,minimum,maximum</xs:appinfo>
82
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
83
+ <xs:appinfo>i;true;false;false</xs:appinfo>
84
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
85
+ <xs:appinfo>
86
+ </xs:appinfo>
87
+ <xs:documentation>Inputinteger is used to enter only numeric values in the terminal. While pressing the key Enter, the captured value is put in variable.</xs:documentation>
88
+ </xs:annotation>
89
+ </xs:element>
90
+ <xs:element name="inputoption" type="inputoption">
91
+ <xs:annotation>
92
+ <!-- ordem dos parametros -->
93
+ <xs:appinfo>variable,line,column,message,minimum,maximum</xs:appinfo>
94
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
95
+ <xs:appinfo>o;true;false;false</xs:appinfo>
96
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
97
+ <xs:appinfo>
98
+ </xs:appinfo>
99
+ <xs:documentation>Inputoption is used to enter only numeric value in the terminal. The value captured is automatically put in variable if it is valid, without pressing any key.</xs:documentation>
100
+ </xs:annotation>
101
+ </xs:element>
102
+ <xs:element name="inputmoney" type="inputmoney">
103
+ <xs:annotation>
104
+ <!-- ordem dos parametros -->
105
+ <xs:appinfo>variable,line,column,message</xs:appinfo>
106
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
107
+ <xs:appinfo>y;true;false;false</xs:appinfo>
108
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
109
+ <xs:appinfo>
110
+ </xs:appinfo>
111
+ <xs:documentation>Inputmoney is used to enter money values in the terminal. The terminal shows a mask with comma and points, while pressing the digit keys. The captured value is multiplied by 100 and put in variable without comma and points.</xs:documentation>
112
+ </xs:annotation>
113
+ </xs:element>
114
+ <xs:element name="inputformat" type="inputformat">
115
+ <xs:annotation>
116
+ <!-- ordem dos parametros -->
117
+ <xs:appinfo>variable,line,column,message,format</xs:appinfo>
118
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
119
+ <xs:appinfo>f;true;false;false</xs:appinfo>
120
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
121
+ <xs:appinfo>
122
+ </xs:appinfo>
123
+ <xs:documentation>Inputformat is used to enter a value in a specific format. The format is specified in the format paramater. The value captured is put in variable.</xs:documentation>
124
+ </xs:annotation>
125
+ </xs:element>
126
+ <xs:element name="print" type="print">
127
+ <xs:annotation>
128
+ <!-- ordem dos parametros -->
129
+ <xs:appinfo>message</xs:appinfo>
130
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
131
+ <xs:appinfo>p;true;false;false</xs:appinfo>
132
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
133
+ <xs:appinfo>
134
+ </xs:appinfo>
135
+ <xs:documentation>Print is used to print a message in the terminal's printer.</xs:documentation>
136
+ </xs:annotation>
137
+ </xs:element>
138
+ <xs:element name="printbig" type="printbig">
139
+ <xs:annotation>
140
+ <!-- ordem dos parametros -->
141
+ <xs:appinfo>message</xs:appinfo>
142
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
143
+ <xs:appinfo>P;true;false;false</xs:appinfo>
144
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
145
+ <xs:appinfo>
146
+ </xs:appinfo>
147
+ <xs:documentation>Printbig is used to printer a message in the terminal's printer. The message is printed in big size.</xs:documentation>
148
+ </xs:annotation>
149
+ </xs:element>
150
+ <xs:element name="paperfeed" type="paperfeed">
151
+ <xs:annotation>
152
+ <!-- ordem dos parametros -->
153
+ <xs:appinfo>
154
+ </xs:appinfo>
155
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
156
+ <xs:appinfo>h;false;false;false</xs:appinfo>
157
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
158
+ <xs:appinfo>
159
+ </xs:appinfo>
160
+ <xs:documentation>Paperfeed is used to advance paper of the terminal's printer.</xs:documentation>
161
+ </xs:annotation>
162
+ </xs:element>
163
+ <xs:element name="inputfloat" type="inputfloat">
164
+ <xs:annotation>
165
+ <!-- ordem dos parametros -->
166
+ <xs:appinfo>variable,line,column,message</xs:appinfo>
167
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
168
+ <xs:appinfo>s;true;false;false</xs:appinfo>
169
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
170
+ <xs:appinfo>
171
+ </xs:appinfo>
172
+ <xs:documentation>Inputfloat is used to enter a float value. While pressing the key Enter, the captured value is put in variable with point.</xs:documentation>
173
+ </xs:annotation>
174
+ </xs:element>
175
+ <xs:element name="preconnect" type="preconnect">
176
+ <xs:annotation>
177
+ <!-- ordem dos parametros -->
178
+ <xs:appinfo>variablestatus</xs:appinfo>
179
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
180
+ <xs:appinfo>S;true;false;false</xs:appinfo>
181
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
182
+ <xs:appinfo>
183
+ </xs:appinfo>
184
+ <xs:documentation>Preconnect is used to estabilish a connection with the Walk Server.</xs:documentation>
185
+ </xs:annotation>
186
+ </xs:element>
187
+ <xs:element name="shutdownmodem" type="shutdownmodem">
188
+ <xs:annotation>
189
+ <!-- ordem dos parametros -->
190
+ <xs:appinfo>
191
+ </xs:appinfo>
192
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
193
+ <xs:appinfo>D;false;false;false</xs:appinfo>
194
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
195
+ <xs:appinfo>
196
+ </xs:appinfo>
197
+ <xs:documentation>Shutdownmodem is used to disconnect from the Walk Server , and shutdown the communication device of the terminal.</xs:documentation>
198
+ </xs:annotation>
199
+ </xs:element>
200
+ <xs:element name="getcardvariable" type="getcardvariable">
201
+ <xs:annotation>
202
+ <!-- ordem dos parametros -->
203
+ <xs:appinfo>firstmessage,secondmessage,minimum,maximum,variable</xs:appinfo>
204
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
205
+ <xs:appinfo>k;true;false;false</xs:appinfo>
206
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
207
+ <xs:appinfo>
208
+ </xs:appinfo>
209
+ <xs:documentation>Getcardvariable is used to capture the card swiped in the terminal's magnetic reader. The captured value is put in variable. Is possible to use this instruction with a EMV card, if the card is a card with chip the instruction 'emv.inittransaction' will be executed.</xs:documentation>
210
+ </xs:annotation>
211
+ </xs:element>
212
+ <xs:element name="waitkey" type="waitkey">
213
+ <xs:annotation>
214
+ <!-- ordem dos parametros -->
215
+ <xs:appinfo>
216
+ </xs:appinfo>
217
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
218
+ <xs:appinfo>u;false;false;false</xs:appinfo>
219
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
220
+ <xs:appinfo>
221
+ </xs:appinfo>
222
+ <xs:documentation>Waitkey is used to wait the user press any key of the terminal. The instruction will wait 30 seconds if the user dont't press any key.</xs:documentation>
223
+ </xs:annotation>
224
+ </xs:element>
225
+ <xs:element name="wait" type="wait">
226
+ <xs:annotation>
227
+ <!-- ordem dos parametros -->
228
+ <xs:appinfo>miliseconds</xs:appinfo>
229
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
230
+ <xs:appinfo>C;true;false;false</xs:appinfo>
231
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
232
+ <xs:appinfo>
233
+ </xs:appinfo>
234
+ <xs:documentation>Wait is used to wait the time specified in miliseconds.</xs:documentation>
235
+ </xs:annotation>
236
+ </xs:element>
237
+ <xs:element name="callfunction" type="callfunction">
238
+ <xs:annotation>
239
+ <!-- ordem dos parametros -->
240
+ <xs:appinfo>name</xs:appinfo>
241
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
242
+ <xs:appinfo>g;true;true;false</xs:appinfo>
243
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
244
+ <xs:appinfo>
245
+ </xs:appinfo>
246
+ <xs:documentation>Callfunction is used to call a function defined with the function instruction.</xs:documentation>
247
+ </xs:annotation>
248
+ </xs:element>
249
+ <xs:element name="integervariable" type="integervariable">
250
+ <xs:annotation>
251
+ <!-- ordem dos parametros -->
252
+ <xs:appinfo>value,variable</xs:appinfo>
253
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
254
+ <xs:appinfo>m;true;false;true</xs:appinfo>
255
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
256
+ <xs:appinfo>
257
+ </xs:appinfo>
258
+ <xs:documentation>Integer is used to declare an integer variable.</xs:documentation>
259
+ </xs:annotation>
260
+ </xs:element>
261
+ <xs:element name="stringvariable" type="stringvariable">
262
+ <xs:annotation>
263
+ <!-- ordem dos parametros -->
264
+ <xs:appinfo>value,variable</xs:appinfo>
265
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
266
+ <xs:appinfo>&gt;;true;false;true</xs:appinfo>
267
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
268
+ <xs:appinfo>
269
+ </xs:appinfo>
270
+ <xs:documentation>String is used to declare a string variable</xs:documentation>
271
+ </xs:annotation>
272
+ </xs:element>
273
+ <xs:element name="substring" type="substring">
274
+ <xs:annotation>
275
+ <!-- ordem dos parametros -->
276
+ <xs:appinfo>index,variablesource,variabledestination,character,variablereturn</xs:appinfo>
277
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
278
+ <xs:appinfo>&lt;;true;false;false</xs:appinfo>
279
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
280
+ <xs:appinfo>
281
+ </xs:appinfo>
282
+ <xs:documentation>Substring is used to extract the characters in variablesource.</xs:documentation>
283
+ </xs:annotation>
284
+ </xs:element>
285
+ <xs:element name="stringtoint" type="stringtoint">
286
+ <xs:annotation>
287
+ <!-- ordem dos parametros -->
288
+ <xs:appinfo>variablestring,variableinteger</xs:appinfo>
289
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
290
+ <xs:appinfo>a;true;false;false</xs:appinfo>
291
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
292
+ <xs:appinfo>
293
+ </xs:appinfo>
294
+ <xs:documentation>Stringtoint is used to convert a string variable in an integer variable.</xs:documentation>
295
+ </xs:annotation>
296
+ </xs:element>
297
+ <xs:element name="inttostring" type="inttostring">
298
+ <xs:annotation>
299
+ <!-- ordem dos parametros -->
300
+ <xs:appinfo>variableinteger,variablestring</xs:appinfo>
301
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
302
+ <xs:appinfo>b;true;false;false</xs:appinfo>
303
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
304
+ <xs:appinfo>
305
+ </xs:appinfo>
306
+ <xs:documentation>Inttostring is used to convert an integer variable in a string variable.</xs:documentation>
307
+ </xs:annotation>
308
+ </xs:element>
309
+ <xs:element name="string.getvaluebykey" type="string.getvaluebykey">
310
+ <xs:annotation>
311
+ <!-- ordem dos parametros -->
312
+ <xs:appinfo>string,key,variablereturn</xs:appinfo>
313
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
314
+ <xs:appinfo>K;true;false;false</xs:appinfo>
315
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
316
+ <xs:appinfo>
317
+ </xs:appinfo>
318
+ <xs:documentation>The command string.getvaluebykey searches on a string for a value based in key/value.</xs:documentation>
319
+ </xs:annotation>
320
+ </xs:element>
321
+ <xs:element name="menu" type="menu">
322
+ <xs:annotation>
323
+ <!-- ordem dos parametros -->
324
+ <xs:appinfo>variable,options</xs:appinfo>
325
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
326
+ <xs:appinfo>L;true;false;false</xs:appinfo>
327
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
328
+ <xs:appinfo>
329
+ </xs:appinfo>
330
+ <xs:documentation>Menu is used to show a menu in the terminal's display. The captured value is put in variable.</xs:documentation>
331
+ </xs:annotation>
332
+ </xs:element>
333
+ <xs:element name="menuwithheader" type="menuwithheader">
334
+ <xs:annotation>
335
+ <!-- ordem dos parametros -->
336
+ <xs:appinfo>header,options,timeoutheader,timeout,variablereturn</xs:appinfo>
337
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
338
+ <xs:appinfo>\x81;true;false;false</xs:appinfo>
339
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
340
+ <xs:appinfo>
341
+ </xs:appinfo>
342
+ <xs:documentation>The instruction menuwithheader builds a menu in the display of the terminal, in accordance with numbers of lines of the same. In the constant string options for each bar ‘\’ Existing, will be a line break. The header will be broken in "|" and shown in the first row updating based on the time set in timeoutheader. When the number of options reaches the maximum size of the number of lines, will appear beside the title a sign of '+' indicating that you can scroll to another screen.You can show the other screen, pressing (enter, or OK).
343
+ The user can type any key. The value entered is stored in a variable. When the timeout reaches, will return "-1". The key of config.dat iskeytimeout must be 1.</xs:documentation>
344
+ </xs:annotation>
345
+ </xs:element>
346
+ <xs:element name="readfile" type="readfile">
347
+ <xs:annotation>
348
+ <!-- ordem dos parametros -->
349
+ <xs:appinfo>filename,key,variabledestination</xs:appinfo>
350
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
351
+ <xs:appinfo>B;true;false;false</xs:appinfo>
352
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
353
+ <xs:appinfo>
354
+ </xs:appinfo>
355
+ <xs:documentation>Readfile is used to read a file in 'Walk Db format'. The format of the file in 'Walk Db format', is: ('key=value\nkey=value\n ... ').</xs:documentation>
356
+ </xs:annotation>
357
+ </xs:element>
358
+ <xs:element name="editfile" type="editfile">
359
+ <xs:annotation>
360
+ <!-- ordem dos parametros -->
361
+ <xs:appinfo>filename,key,value</xs:appinfo>
362
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
363
+ <xs:appinfo>A;true;false;false</xs:appinfo>
364
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
365
+ <xs:appinfo>
366
+ </xs:appinfo>
367
+ <xs:documentation>Editfile is used to write or edit a file in 'Walk Db format'. The format of the file in 'Walk Db format', is: ('key=value\nkey=value\n ... ').</xs:documentation>
368
+ </xs:annotation>
369
+ </xs:element>
370
+ <xs:element name="integeroperator" type="integeroperator">
371
+ <xs:annotation>
372
+ <!-- ordem dos parametros -->
373
+ <xs:appinfo>operator,variablesource</xs:appinfo>
374
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
375
+ <xs:appinfo>G;true;false;false</xs:appinfo>
376
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
377
+ <xs:appinfo>
378
+ </xs:appinfo>
379
+ <xs:documentation>Integeroperator is used to increment ou decrement an integer value specified in variablesource.</xs:documentation>
380
+ </xs:annotation>
381
+ </xs:element>
382
+ <xs:element name="adjustdatetime" type="adjustdatetime">
383
+ <xs:annotation>
384
+ <!-- ordem dos parametros -->
385
+ <xs:appinfo>datetime</xs:appinfo>
386
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
387
+ <xs:appinfo>J;true;false;false</xs:appinfo>
388
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
389
+ <xs:appinfo>
390
+ </xs:appinfo>
391
+ <xs:documentation>Adjustdatetime is used to adjust the terminal's clock.</xs:documentation>
392
+ </xs:annotation>
393
+ </xs:element>
394
+ <xs:element name="getdatetime" type="getdatetime">
395
+ <xs:annotation>
396
+ <!-- ordem dos parametros -->
397
+ <xs:appinfo>format,variabledestination</xs:appinfo>
398
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
399
+ <xs:appinfo>n;true;false;false</xs:appinfo>
400
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
401
+ <xs:appinfo>
402
+ </xs:appinfo>
403
+ <xs:documentation>Getdatetime is used to get the date and time of the terminal's clock. The captured value is put in variable. The format of variable is defined in format parameter.</xs:documentation>
404
+ </xs:annotation>
405
+ </xs:element>
406
+ <xs:element name="checkpaperout" type="checkpaperout">
407
+ <xs:annotation>
408
+ <!-- ordem dos parametros -->
409
+ <xs:appinfo>variablereturn</xs:appinfo>
410
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
411
+ <xs:appinfo>N;true;false;false</xs:appinfo>
412
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
413
+ <xs:appinfo>
414
+ </xs:appinfo>
415
+ <xs:documentation>Checkpaperout is used to check if the paper of the terminal's printer is over.</xs:documentation>
416
+ </xs:annotation>
417
+ </xs:element>
418
+ <xs:element name="mathematicaloperation" type="mathematicaloperation">
419
+ <xs:annotation>
420
+ <!-- ordem dos parametros -->
421
+ <xs:appinfo>variabledestination,operator,firstvalue,secondvalue</xs:appinfo>
422
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
423
+ <xs:appinfo>T;true;false;false</xs:appinfo>
424
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
425
+ <xs:appinfo>
426
+ </xs:appinfo>
427
+ <xs:documentation>Mathematicaloperation is used to make a mathematical operation between firstvalue and secondvalue.</xs:documentation>
428
+ </xs:annotation>
429
+ </xs:element>
430
+ <xs:element name="joinstring" type="joinstring">
431
+ <xs:annotation>
432
+ <!-- ordem dos parametros -->
433
+ <xs:appinfo>firstvalue,secondvalue,variabledestination</xs:appinfo>
434
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
435
+ <xs:appinfo>t;true;false;false</xs:appinfo>
436
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
437
+ <xs:appinfo>
438
+ </xs:appinfo>
439
+ <xs:documentation>Joinstring is used to join firstvalue and secondvalue in variabledestination.</xs:documentation>
440
+ </xs:annotation>
441
+ </xs:element>
442
+ <xs:element name="deletefile" type="deletefile">
443
+ <xs:annotation>
444
+ <!-- ordem dos parametros -->
445
+ <xs:appinfo>filename</xs:appinfo>
446
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
447
+ <xs:appinfo>x;true;false;false</xs:appinfo>
448
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
449
+ <xs:appinfo>
450
+ </xs:appinfo>
451
+ <xs:documentation>Deletefile is used to remove a file from the terminal's memory.</xs:documentation>
452
+ </xs:annotation>
453
+ </xs:element>
454
+ <xs:element name="printbarcode" type="printbarcode">
455
+ <xs:annotation>
456
+ <!-- ordem dos parametros -->
457
+ <xs:appinfo>number,horizontal</xs:appinfo>
458
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
459
+ <xs:appinfo>X;true;false;false</xs:appinfo>
460
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
461
+ <xs:appinfo>
462
+ </xs:appinfo>
463
+ <xs:documentation>Prinbarcode is used to print a barcode in I25 format.</xs:documentation>
464
+ </xs:annotation>
465
+ </xs:element>
466
+ <xs:element name="waitkeytimeout" type="waitkeytimeout">
467
+ <xs:annotation>
468
+ <!-- ordem dos parametros -->
469
+ <xs:appinfo>seconds</xs:appinfo>
470
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
471
+ <xs:appinfo>U;true;false;false</xs:appinfo>
472
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
473
+ <xs:appinfo>
474
+ </xs:appinfo>
475
+ <xs:documentation>Waitkey is used to wait the user press any key of the terminal. The waitkey instruction will wait x seconds defined in the seconds parameter if the user doesn't press any key.</xs:documentation>
476
+ </xs:annotation>
477
+ </xs:element>
478
+ <xs:element name="execute" type="execute">
479
+ <xs:annotation>
480
+ <!-- ordem dos parametros -->
481
+ <xs:appinfo>filename</xs:appinfo>
482
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
483
+ <xs:appinfo>j;true;false;false</xs:appinfo>
484
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
485
+ <xs:appinfo>
486
+ </xs:appinfo>
487
+ <xs:documentation>Execute is used to execute a compiled PosXml application.</xs:documentation>
488
+ </xs:annotation>
489
+ </xs:element>
490
+ <xs:element name="while" type="while">
491
+ <xs:annotation>
492
+ <!-- ordem dos parametros -->
493
+ <xs:appinfo>variable,operator,value</xs:appinfo>
494
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
495
+ <xs:appinfo>V;true;false;false</xs:appinfo>
496
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
497
+ <xs:appinfo>v;false;false;false</xs:appinfo>
498
+ <xs:documentation>While is used to make logical blocks in PosXml Application.</xs:documentation>
499
+ </xs:annotation>
500
+ </xs:element>
501
+ <xs:element name="break" type="break">
502
+ <xs:annotation>
503
+ <!-- ordem dos parametros -->
504
+ <xs:appinfo>
505
+ </xs:appinfo>
506
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
507
+ <xs:appinfo>Z;false;false;false</xs:appinfo>
508
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
509
+ <xs:appinfo>
510
+ </xs:appinfo>
511
+ <xs:documentation>Break is used to break while loops.</xs:documentation>
512
+ </xs:annotation>
513
+ </xs:element>
514
+ <xs:element name="openserialport" type="openserialport">
515
+ <xs:annotation>
516
+ <!-- ordem dos parametros -->
517
+ <xs:appinfo>port,rate,configuration,variablereturn</xs:appinfo>
518
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
519
+ <xs:appinfo>Y;true;false;false</xs:appinfo>
520
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
521
+ <xs:appinfo>
522
+ </xs:appinfo>
523
+ <xs:documentation>Openserialport is used to open the terminal's serial port.</xs:documentation>
524
+ </xs:annotation>
525
+ </xs:element>
526
+ <xs:element name="readserialport" type="readserialport">
527
+ <xs:annotation>
528
+ <!-- ordem dos parametros -->
529
+ <xs:appinfo>variablehandle,variablebuffer,bytes,timeout,variablereturn</xs:appinfo>
530
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
531
+ <xs:appinfo>w;true;false;false</xs:appinfo>
532
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
533
+ <xs:appinfo>
534
+ </xs:appinfo>
535
+ <xs:documentation>Readserialport is used to read values from the terminal's serial port. The terminal's serial port must be opened with the openserialport instruction.</xs:documentation>
536
+ </xs:annotation>
537
+ </xs:element>
538
+ <xs:element name="writeserialport" type="writeserialport">
539
+ <xs:annotation>
540
+ <!-- ordem dos parametros -->
541
+ <xs:appinfo>variablehandle,buffer</xs:appinfo>
542
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
543
+ <xs:appinfo>W;true;false;false</xs:appinfo>
544
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
545
+ <xs:appinfo>
546
+ </xs:appinfo>
547
+ <xs:documentation>Writeserialport is used to write values to the terminal's serial port. The terminal's serial port must be opened with the openserialport instruction.</xs:documentation>
548
+ </xs:annotation>
549
+ </xs:element>
550
+ <xs:element name="closeserialport" type="closeserialport">
551
+ <xs:annotation>
552
+ <!-- ordem dos parametros -->
553
+ <xs:appinfo>variablehandle</xs:appinfo>
554
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
555
+ <xs:appinfo>!;true;false;false</xs:appinfo>
556
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
557
+ <xs:appinfo>
558
+ </xs:appinfo>
559
+ <xs:documentation>Close is used to close the terminal's serial port. The terminal's serial port must be opened with the openserialport instruction.</xs:documentation>
560
+ </xs:annotation>
561
+ </xs:element>
562
+ <xs:element name="string.length" type="string.length">
563
+ <xs:annotation>
564
+ <!-- ordem dos parametros -->
565
+ <xs:appinfo>value,variablereturn</xs:appinfo>
566
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
567
+ <xs:appinfo>@;true;false;false</xs:appinfo>
568
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
569
+ <xs:appinfo>
570
+ </xs:appinfo>
571
+ <xs:documentation>String.length is used to return the length of the string specified in value.</xs:documentation>
572
+ </xs:annotation>
573
+ </xs:element>
574
+ <xs:element name="exit" type="exit">
575
+ <xs:annotation>
576
+ <!-- ordem dos parametros -->
577
+ <xs:appinfo>
578
+ </xs:appinfo>
579
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
580
+ <xs:appinfo>1;false;false;false</xs:appinfo>
581
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
582
+ <xs:appinfo>
583
+ </xs:appinfo>
584
+ <xs:documentation>Exit is used to finalize a PosXml application.</xs:documentation>
585
+ </xs:annotation>
586
+ </xs:element>
587
+ <xs:element name="downloadfile" type="downloadfile">
588
+ <xs:annotation>
589
+ <!-- ordem dos parametros -->
590
+ <xs:appinfo>filename,remotepath,variablereturn</xs:appinfo>
591
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
592
+ <xs:appinfo>4;true;false;false</xs:appinfo>
593
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
594
+ <xs:appinfo>
595
+ </xs:appinfo>
596
+ <xs:documentation>Downloadfile is used to download a file from WALK Manager to the terminal's memory.</xs:documentation>
597
+ </xs:annotation>
598
+ </xs:element>
599
+ <xs:element name="readfilebyindex" type="readfilebyindex">
600
+ <xs:annotation>
601
+ <!-- ordem dos parametros -->
602
+ <xs:appinfo>filename,index,variablekey,variablevalue,variablereturn</xs:appinfo>
603
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
604
+ <xs:appinfo>%;true;false;false</xs:appinfo>
605
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
606
+ <xs:appinfo>
607
+ </xs:appinfo>
608
+ <xs:documentation>Readfilebyindex is used to read a file in 'Walk Db format' in specified index. The format of the file in 'Walk Db format', is: ('key=value\nkey=value\n ... ').</xs:documentation>
609
+ </xs:annotation>
610
+ </xs:element>
611
+ <xs:element name="diffdatetime" type="diffdatetime">
612
+ <xs:annotation>
613
+ <!-- ordem dos parametros -->
614
+ <xs:appinfo>firstdatetime,seconddatetime,variablereturn</xs:appinfo>
615
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
616
+ <xs:appinfo>7;true;false;false</xs:appinfo>
617
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
618
+ <xs:appinfo>
619
+ </xs:appinfo>
620
+ <xs:documentation>Diffdatetime is used to calculate the time difference between firstdatetime and seconddatetime.</xs:documentation>
621
+ </xs:annotation>
622
+ </xs:element>
623
+ <xs:element name="displaybitmap" type="displaybitmap">
624
+ <xs:annotation>
625
+ <!-- ordem dos parametros -->
626
+ <xs:appinfo>filename,variablereturn</xs:appinfo>
627
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
628
+ <xs:appinfo>8;true;false;false</xs:appinfo>
629
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
630
+ <xs:appinfo>
631
+ </xs:appinfo>
632
+ <xs:documentation>Displaybitmap is used to display a monochrome bitmap file in the terminal's display.</xs:documentation>
633
+ </xs:annotation>
634
+ </xs:element>
635
+ <xs:element name="printbitmap" type="printbitmap">
636
+ <xs:annotation>
637
+ <!-- ordem dos parametros -->
638
+ <xs:appinfo>filename,variablereturn</xs:appinfo>
639
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
640
+ <xs:appinfo>9;true;false;false</xs:appinfo>
641
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
642
+ <xs:appinfo>
643
+ </xs:appinfo>
644
+ <xs:documentation>Printbitmap is used to print a monochrome bitmap file.</xs:documentation>
645
+ </xs:annotation>
646
+ </xs:element>
647
+ <xs:element name="readkey" type="readkey">
648
+ <xs:annotation>
649
+ <!-- ordem dos parametros -->
650
+ <xs:appinfo>miliseconds,variablereturn</xs:appinfo>
651
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
652
+ <xs:appinfo>/;true;false;false</xs:appinfo>
653
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
654
+ <xs:appinfo>
655
+ </xs:appinfo>
656
+ <xs:documentation>Readkey is used to capture a key pressed by the user in the terminal's keypad. The captured key is put in variablereturn.</xs:documentation>
657
+ </xs:annotation>
658
+ </xs:element>
659
+ <xs:element name="unzipfile" type="unzipfile">
660
+ <xs:annotation>
661
+ <!-- ordem dos parametros -->
662
+ <xs:appinfo>filename,variablereturn</xs:appinfo>
663
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
664
+ <xs:appinfo>\;true;false;false</xs:appinfo>
665
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
666
+ <xs:appinfo>
667
+ </xs:appinfo>
668
+ <xs:documentation>Unzipfile is used to unzip compacted files.</xs:documentation>
669
+ </xs:annotation>
670
+ </xs:element>
671
+ <xs:element name="else" type="else">
672
+ <xs:annotation>
673
+ <!-- ordem dos parametros -->
674
+ <xs:appinfo>
675
+ </xs:appinfo>
676
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
677
+ <xs:appinfo>,;false;false;false</xs:appinfo>
678
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
679
+ <xs:appinfo>
680
+ </xs:appinfo>
681
+ <xs:documentation>Else is used to make logical blocks in PosXml Application.</xs:documentation>
682
+ </xs:annotation>
683
+ </xs:element>
684
+ <xs:element name="integerconvert" type="integerconvert">
685
+ <xs:annotation>
686
+ <!-- ordem dos parametros -->
687
+ <xs:appinfo>number,base,sizereturn,variablereturn</xs:appinfo>
688
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
689
+ <xs:appinfo>\x01;true;false;false</xs:appinfo>
690
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
691
+ <xs:appinfo>
692
+ </xs:appinfo>
693
+ <xs:documentation>Integerconvert is used to convert a decimal number in a binary,octal or hexadecimal number.</xs:documentation>
694
+ </xs:annotation>
695
+ </xs:element>
696
+ <xs:element name="iso8583.initfieldtable" type="iso8583.initfieldtable">
697
+ <xs:annotation>
698
+ <!-- ordem dos parametros -->
699
+ <xs:appinfo>filename,variablereturn</xs:appinfo>
700
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
701
+ <xs:appinfo>\x02;true;false;false</xs:appinfo>
702
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
703
+ <xs:appinfo>
704
+ </xs:appinfo>
705
+ <xs:documentation>Initialize a table with fields of ISO8583 especification. This function must be called before any other ISO85853 function.</xs:documentation>
706
+ </xs:annotation>
707
+ </xs:element>
708
+ <xs:element name="iso8583.initmessage" type="iso8583.initmessage">
709
+ <xs:annotation>
710
+ <!-- ordem dos parametros -->
711
+ <xs:appinfo>format,id,variablemessage,variablereturn</xs:appinfo>
712
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
713
+ <xs:appinfo>\x03;true;false;false</xs:appinfo>
714
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
715
+ <xs:appinfo>
716
+ </xs:appinfo>
717
+ <xs:documentation>Initialize a ISO8583 message that will be sended to host.</xs:documentation>
718
+ </xs:annotation>
719
+ </xs:element>
720
+ <xs:element name="iso8583.analyzemessage" type="iso8583.analyzemessage">
721
+ <xs:annotation>
722
+ <!-- ordem dos parametros -->
723
+ <xs:appinfo>format,size,variablemessage,variableid,variablereturn</xs:appinfo>
724
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
725
+ <xs:appinfo>\x05;true;false;false</xs:appinfo>
726
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
727
+ <xs:appinfo>
728
+ </xs:appinfo>
729
+ <xs:documentation>Initialize the process for analyze the fields in the specified message.</xs:documentation>
730
+ </xs:annotation>
731
+ </xs:element>
732
+ <xs:element name="iso8583.endmessage" type="iso8583.endmessage">
733
+ <xs:annotation>
734
+ <!-- ordem dos parametros -->
735
+ <xs:appinfo>variablesize,variablereturn</xs:appinfo>
736
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
737
+ <xs:appinfo>\x06;true;false;false</xs:appinfo>
738
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
739
+ <xs:appinfo>
740
+ </xs:appinfo>
741
+ <xs:documentation>Finish the message initied by function iso8583.initmessage.</xs:documentation>
742
+ </xs:annotation>
743
+ </xs:element>
744
+ <xs:element name="iso8583.putfield" type="iso8583.putfield">
745
+ <xs:annotation>
746
+ <!-- ordem dos parametros -->
747
+ <xs:appinfo>fieldnumber,type,value,variablereturn</xs:appinfo>
748
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
749
+ <xs:appinfo>\x07;true;false;false</xs:appinfo>
750
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
751
+ <xs:appinfo>
752
+ </xs:appinfo>
753
+ <xs:documentation>Insert a field in the message that was initialized by function iso8583.initmessage. The fields must be inserted in the increasing order.</xs:documentation>
754
+ </xs:annotation>
755
+ </xs:element>
756
+ <xs:element name="iso8583.getfield" type="iso8583.getfield">
757
+ <xs:annotation>
758
+ <!-- ordem dos parametros -->
759
+ <xs:appinfo>fieldnumber,type,variablevalue,variablereturn</xs:appinfo>
760
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
761
+ <xs:appinfo>\x08;true;false;false</xs:appinfo>
762
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
763
+ <xs:appinfo>
764
+ </xs:appinfo>
765
+ <xs:documentation>Get a field in the message that was initialized by function iso8583.initmessage. The fields must be retrieved in the increasing order.</xs:documentation>
766
+ </xs:annotation>
767
+ </xs:element>
768
+ <xs:element name="string.charat" type="string.charat">
769
+ <xs:annotation>
770
+ <!-- ordem dos parametros -->
771
+ <xs:appinfo>string,character_index,variablereturn</xs:appinfo>
772
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
773
+ <xs:appinfo>\x09;true;false;false</xs:appinfo>
774
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
775
+ <xs:appinfo>
776
+ </xs:appinfo>
777
+ <xs:documentation>Returns the character at a specified position.</xs:documentation>
778
+ </xs:annotation>
779
+ </xs:element>
780
+ <xs:element name="string.trim" type="string.trim">
781
+ <xs:annotation>
782
+ <!-- ordem dos parametros -->
783
+ <xs:appinfo>string,variablereturn</xs:appinfo>
784
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
785
+ <xs:appinfo>\x0B;true;false;false</xs:appinfo>
786
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
787
+ <xs:appinfo>
788
+ </xs:appinfo>
789
+ <xs:documentation>Returns a string without leading and trailing spaces.</xs:documentation>
790
+ </xs:annotation>
791
+ </xs:element>
792
+ <xs:element name="string.find" type="string.find">
793
+ <xs:annotation>
794
+ <!-- ordem dos parametros -->
795
+ <xs:appinfo>string,substring,start,variablereturn</xs:appinfo>
796
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
797
+ <xs:appinfo>\x0C;true;false;false</xs:appinfo>
798
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
799
+ <xs:appinfo>
800
+ </xs:appinfo>
801
+ <xs:documentation>Returns the position of a substring in a string.</xs:documentation>
802
+ </xs:annotation>
803
+ </xs:element>
804
+ <xs:element name="string.replace" type="string.replace">
805
+ <xs:annotation>
806
+ <!-- ordem dos parametros -->
807
+ <xs:appinfo>original_string,old_substring,new_substring,variablereturn</xs:appinfo>
808
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
809
+ <xs:appinfo>\x0E;true;false;false</xs:appinfo>
810
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
811
+ <xs:appinfo>
812
+ </xs:appinfo>
813
+ <xs:documentation>Replaces a part of a string with a new string.</xs:documentation>
814
+ </xs:annotation>
815
+ </xs:element>
816
+ <xs:element name="string.substring" type="string.substring">
817
+ <xs:annotation>
818
+ <!-- ordem dos parametros -->
819
+ <xs:appinfo>string,start,length,variablereturn</xs:appinfo>
820
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
821
+ <xs:appinfo>\x0F;true;false;false</xs:appinfo>
822
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
823
+ <xs:appinfo>
824
+ </xs:appinfo>
825
+ <xs:documentation>Returns a specified part of a string.</xs:documentation>
826
+ </xs:annotation>
827
+ </xs:element>
828
+ <xs:element name="string.elements" type="string.elements">
829
+ <xs:annotation>
830
+ <!-- ordem dos parametros -->
831
+ <xs:appinfo>string,delimiter,variablereturn</xs:appinfo>
832
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
833
+ <xs:appinfo>\x10;true;false;false</xs:appinfo>
834
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
835
+ <xs:appinfo>
836
+ </xs:appinfo>
837
+ <xs:documentation>Returns the number of elements in a specified string.</xs:documentation>
838
+ </xs:annotation>
839
+ </xs:element>
840
+ <xs:element name="string.insertat" type="string.insertat">
841
+ <xs:annotation>
842
+ <!-- ordem dos parametros -->
843
+ <xs:appinfo>string,string_to_be_inserted,element_index,delimiter,variablereturn</xs:appinfo>
844
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
845
+ <xs:appinfo>\x11;true;false;false</xs:appinfo>
846
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
847
+ <xs:appinfo>
848
+ </xs:appinfo>
849
+ <xs:documentation>Divides a string into elements and inserts a substring at a specified index position.</xs:documentation>
850
+ </xs:annotation>
851
+ </xs:element>
852
+ <xs:element name="string.replaceat" type="string.replaceat">
853
+ <xs:annotation>
854
+ <!-- ordem dos parametros -->
855
+ <xs:appinfo>string,new_element,element_index,delimiter,variablereturn</xs:appinfo>
856
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
857
+ <xs:appinfo>\x12;true;false;false</xs:appinfo>
858
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
859
+ <xs:appinfo>
860
+ </xs:appinfo>
861
+ <xs:documentation>Divides a string into elements and replaces a specified element.</xs:documentation>
862
+ </xs:annotation>
863
+ </xs:element>
864
+ <xs:element name="string.elementat" type="string.elementat">
865
+ <xs:annotation>
866
+ <!-- ordem dos parametros -->
867
+ <xs:appinfo>string,element_index,delimiter,variablereturn</xs:appinfo>
868
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
869
+ <xs:appinfo>\x13;true;false;false</xs:appinfo>
870
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
871
+ <xs:appinfo>
872
+ </xs:appinfo>
873
+ <xs:documentation>Divides a string into elements and returns a specified element.</xs:documentation>
874
+ </xs:annotation>
875
+ </xs:element>
876
+ <xs:element name="string.removeat" type="string.removeat">
877
+ <xs:annotation>
878
+ <!-- ordem dos parametros -->
879
+ <xs:appinfo>string,element_index,delimiter,variablereturn</xs:appinfo>
880
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
881
+ <xs:appinfo>\x14;true;false;false</xs:appinfo>
882
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
883
+ <xs:appinfo>
884
+ </xs:appinfo>
885
+ <xs:documentation>Divides a string into elements and removes a specified element.</xs:documentation>
886
+ </xs:annotation>
887
+ </xs:element>
888
+ <xs:element name="network.send" type="network.send">
889
+ <xs:annotation>
890
+ <!-- ordem dos parametros -->
891
+ <xs:appinfo>buffer,size,variablereturn</xs:appinfo>
892
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
893
+ <xs:appinfo>\x15;true;false;false</xs:appinfo>
894
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
895
+ <xs:appinfo>
896
+ </xs:appinfo>
897
+ <xs:documentation>Send a buffer to a host that the terminal is connected. The terminal must be already connected to host. To make a connection with host use a preconnect function.</xs:documentation>
898
+ </xs:annotation>
899
+ </xs:element>
900
+ <xs:element name="network.receive" type="network.receive">
901
+ <xs:annotation>
902
+ <!-- ordem dos parametros -->
903
+ <xs:appinfo>variablebuffer,maxsize,variablereceivedbytes,variablereturn</xs:appinfo>
904
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
905
+ <xs:appinfo>\x16;true;false;false</xs:appinfo>
906
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
907
+ <xs:appinfo>
908
+ </xs:appinfo>
909
+ <xs:documentation>Receive a buffer from host that the terminal is connected. The terminal must be already connected to host. To make a connection with host use a preconnect function.</xs:documentation>
910
+ </xs:annotation>
911
+ </xs:element>
912
+ <xs:element name="network.wifi_scan" type="network.wifi_scan">
913
+ <xs:annotation>
914
+ <!-- ordem dos parametros -->
915
+ <xs:appinfo>timeout,aps,variablereturn</xs:appinfo>
916
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
917
+ <xs:appinfo>\xa0;true;false;false</xs:appinfo>
918
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
919
+ <xs:appinfo>
920
+ </xs:appinfo>
921
+ <xs:documentation>Perform WIFI scan for APs.</xs:documentation>
922
+ </xs:annotation>
923
+ </xs:element>
924
+ <xs:element name="system.restart" type="system.restart">
925
+ <xs:annotation>
926
+ <!-- ordem dos parametros -->
927
+ <xs:appinfo>
928
+ </xs:appinfo>
929
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
930
+ <xs:appinfo>\x17;false;false;false</xs:appinfo>
931
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
932
+ <xs:appinfo>
933
+ </xs:appinfo>
934
+ <xs:documentation>Restarts the terminal.</xs:documentation>
935
+ </xs:annotation>
936
+ </xs:element>
937
+ <xs:element name="filesystem.filesize" type="filesystem.filesize">
938
+ <xs:annotation>
939
+ <!-- ordem dos parametros -->
940
+ <xs:appinfo>filename,variablereturn</xs:appinfo>
941
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
942
+ <xs:appinfo>\x19;true;false;false</xs:appinfo>
943
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
944
+ <xs:appinfo>
945
+ </xs:appinfo>
946
+ <xs:documentation>Return the size of specified file</xs:documentation>
947
+ </xs:annotation>
948
+ </xs:element>
949
+ <xs:element name="filesystem.space" type="filesystem.space">
950
+ <xs:annotation>
951
+ <!-- ordem dos parametros -->
952
+ <xs:appinfo>dir,type,variablereturn</xs:appinfo>
953
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
954
+ <xs:appinfo>\x1A;true;false;false</xs:appinfo>
955
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
956
+ <xs:appinfo>
957
+ </xs:appinfo>
958
+ <xs:documentation>Return one of this parameters: free space on the flash or ram memory, total space, used space, number of files.</xs:documentation>
959
+ </xs:annotation>
960
+ </xs:element>
961
+ <xs:element name="filesystem.listfiles" type="filesystem.listfiles">
962
+ <xs:annotation>
963
+ <!-- ordem dos parametros -->
964
+ <xs:appinfo>dir,listfilename,variablereturn</xs:appinfo>
965
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
966
+ <xs:appinfo>\x1B;true;false;false</xs:appinfo>
967
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
968
+ <xs:appinfo>
969
+ </xs:appinfo>
970
+ <xs:documentation>List files of the specified directory and then save this list in a 'Walk Db file'.</xs:documentation>
971
+ </xs:annotation>
972
+ </xs:element>
973
+ <xs:element name="filesystem.renamefile" type="filesystem.renamefile">
974
+ <xs:annotation>
975
+ <!-- ordem dos parametros -->
976
+ <xs:appinfo>oldname,newname,variablereturn</xs:appinfo>
977
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
978
+ <xs:appinfo>\x8A;true;false;false</xs:appinfo>
979
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
980
+ <xs:appinfo>
981
+ </xs:appinfo>
982
+ <xs:documentation>Renames a file that already exist on the device's memory.</xs:documentation>
983
+ </xs:annotation>
984
+ </xs:element>
985
+ <xs:element name="network.cloudwalkhandshake" type="network.cloudwalkhandshake">
986
+ <xs:annotation>
987
+ <!-- ordem dos parametros -->
988
+ <xs:appinfo>variablereturn</xs:appinfo>
989
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
990
+ <xs:appinfo>\x8B;false;false;false</xs:appinfo>
991
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
992
+ <xs:appinfo>
993
+ </xs:appinfo>
994
+ <xs:documentation>Performs a handshake operation with the CloudWalk service(This instruction is exclusive for CloudWalk environment).</xs:documentation>
995
+ </xs:annotation>
996
+ </xs:element>
997
+ <xs:element name="xml.getelement" type="xml.getelement">
998
+ <xs:annotation>
999
+ <!-- ordem dos parametros -->
1000
+ <xs:appinfo>filename,parentnode,childnode,variablevalue,variablereturn</xs:appinfo>
1001
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1002
+ <xs:appinfo>\x8C;true;false;false</xs:appinfo>
1003
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1004
+ <xs:appinfo>
1005
+ </xs:appinfo>
1006
+ <xs:documentation>This command opens a xml file previously saved on the terminal's memory, and, search for specific nodes.
1007
+ The 'root' node and the 'child' node that you're looking for, must be passed on 'parentnode' and 'childnode' parameters.
1008
+ In case of sucess in this function, the content of the 'child' node will be copied to 'variablevalue' parameter.
1009
+ </xs:documentation>
1010
+ </xs:annotation>
1011
+ </xs:element>
1012
+ <xs:element name="json.getelement" type="json.getelement">
1013
+ <xs:annotation>
1014
+ <!-- ordem dos parametros -->
1015
+ <xs:appinfo>filename,jsonstring,jsonvalue,variablereturn</xs:appinfo>
1016
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1017
+ <xs:appinfo>\x8E;true;false;false</xs:appinfo>
1018
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1019
+ <xs:appinfo>
1020
+ </xs:appinfo>
1021
+ <xs:documentation>
1022
+ This command opens a json file previously saved on the terminal's memory, and, search for specific json values.
1023
+ The json string that you're looking for, must be passed on 'the json string' parameter.
1024
+ In case of sucess in this function, the content of the json string will be copied to 'jsonvalue' parameter.
1025
+ </xs:documentation>
1026
+ </xs:annotation>
1027
+ </xs:element>
1028
+ <xs:element name="convert.toint" type="convert.toint">
1029
+ <xs:annotation>
1030
+ <!-- ordem dos parametros -->
1031
+ <xs:appinfo>base,number,variablereturn</xs:appinfo>
1032
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1033
+ <xs:appinfo>\x1D;true;false;false</xs:appinfo>
1034
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1035
+ <xs:appinfo>
1036
+ </xs:appinfo>
1037
+ <xs:documentation>Convert.toint is used to convert a string that contains a binary,decimal or hexadecimal number to a integer number.</xs:documentation>
1038
+ </xs:annotation>
1039
+ </xs:element>
1040
+ <xs:element name="predial" type="predial">
1041
+ <xs:annotation>
1042
+ <!-- ordem dos parametros -->
1043
+ <xs:appinfo>option,variablestatus</xs:appinfo>
1044
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1045
+ <xs:appinfo>#;true;false;false</xs:appinfo>
1046
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1047
+ <xs:appinfo>
1048
+ </xs:appinfo>
1049
+ <xs:documentation>Predial is used to dial in provider.</xs:documentation>
1050
+ </xs:annotation>
1051
+ </xs:element>
1052
+ <xs:element name="network.checkgprssignal" type="network.checkgprssignal">
1053
+ <xs:annotation>
1054
+ <!-- ordem dos parametros -->
1055
+ <xs:appinfo>variablestatus</xs:appinfo>
1056
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1057
+ <xs:appinfo>$;false;false;false</xs:appinfo>
1058
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1059
+ <xs:appinfo>
1060
+ </xs:appinfo>
1061
+ <xs:documentation>The command network.checkgprssignal checks the percentage of signal strength.</xs:documentation>
1062
+ </xs:annotation>
1063
+ </xs:element>
1064
+ <xs:element name="system.checkbattery" type="system.checkbattery">
1065
+ <xs:annotation>
1066
+ <!-- ordem dos parametros -->
1067
+ <xs:appinfo>variablestatus</xs:appinfo>
1068
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1069
+ <xs:appinfo>';false;false;false</xs:appinfo>
1070
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1071
+ <xs:appinfo>
1072
+ </xs:appinfo>
1073
+ <xs:documentation>The command system.checkbattery checks the percentage of battery remaining.</xs:documentation>
1074
+ </xs:annotation>
1075
+ </xs:element>
1076
+ <xs:element name="network.ping" type="network.ping">
1077
+ <xs:annotation>
1078
+ <!-- ordem dos parametros -->
1079
+ <xs:appinfo>host,variablereturn</xs:appinfo>
1080
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1081
+ <xs:appinfo>O;false;false;false</xs:appinfo>
1082
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1083
+ <xs:appinfo>
1084
+ </xs:appinfo>
1085
+ <xs:documentation>The command network.ping checks the host status. Is necessary that the modem device is already initialized with the "preconnect" instruction.</xs:documentation>
1086
+ </xs:annotation>
1087
+ </xs:element>
1088
+ <xs:element name="system.beep" type="system.beep">
1089
+ <xs:annotation>
1090
+ <!-- ordem dos parametros -->
1091
+ <xs:appinfo>
1092
+ </xs:appinfo>
1093
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1094
+ <xs:appinfo>Q;false;false;false</xs:appinfo>
1095
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1096
+ <xs:appinfo>
1097
+ </xs:appinfo>
1098
+ <xs:documentation>The command system.beep executes a short signal sound.</xs:documentation>
1099
+ </xs:annotation>
1100
+ </xs:element>
1101
+ <xs:element name="system.readcard" type="system.readcard">
1102
+ <xs:annotation>
1103
+ <!-- ordem dos parametros -->
1104
+ <xs:appinfo>keyvariable,cardvariable,timeout,variablereturn</xs:appinfo>
1105
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1106
+ <xs:appinfo>\x26;true;false;false</xs:appinfo>
1107
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1108
+ <xs:appinfo>
1109
+ </xs:appinfo>
1110
+ <xs:documentation>This function waits which a card be read or a key pressed, the time that the instruction will wait is timeout value, if any action happens, the default return values is: keyvariable="KEY_CANCEL", cardvariable="0". Is possible to use this instruction with a EMV card, if the card is a card with chip the instruction 'emv.inittransaction' will be executed </xs:documentation>
1111
+ </xs:annotation>
1112
+ </xs:element>
1113
+ <xs:element name="system.inputtransaction" type="system.inputtransaction">
1114
+ <xs:annotation>
1115
+ <!-- ordem dos parametros -->
1116
+ <xs:appinfo>keyvariable,cardvariable,timeout,variablereturn,keyboard,inputtype</xs:appinfo>
1117
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1118
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1119
+ <xs:appinfo>\x91;true;false;false</xs:appinfo>
1120
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1121
+ <xs:appinfo>
1122
+ </xs:appinfo>
1123
+ <xs:documentation>This function waits which a card be read or a key pressed, the time that the instruction will wait is timeout value, if any action happens, the default return values is: keyvariable="KEY_CANCEL", cardvariable="0". Is possible to use this instruction with a EMV card or CTLS EMV card, if the card is a card with chip the instruction 'emv.inittransaction' will be executed or CTLS transaction will starts (PINPad 1000 SE CTLS required).</xs:documentation>
1124
+ </xs:annotation>
1125
+ </xs:element>
1126
+ <xs:element name="system.backlight" type="system.backlight">
1127
+ <xs:annotation>
1128
+ <!-- ordem dos parametros -->
1129
+ <xs:appinfo>level,variablereturn</xs:appinfo>
1130
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1131
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1132
+ <xs:appinfo>\x92;true;false;false</xs:appinfo>
1133
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1134
+ <xs:appinfo>
1135
+ </xs:appinfo>
1136
+ <xs:documentation>Allows you to control the backlight of the device.</xs:documentation>
1137
+ </xs:annotation>
1138
+ </xs:element>
1139
+ <xs:element name="system.update" type="system.update">
1140
+ <xs:annotation>
1141
+ <!-- ordem dos parametros -->
1142
+ <xs:appinfo>file,variablereturn</xs:appinfo>
1143
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1144
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1145
+ <xs:appinfo>\x99;true;false;false</xs:appinfo>
1146
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1147
+ <xs:appinfo>
1148
+ </xs:appinfo>
1149
+ <xs:documentation>This instruction activates the new software downloaded with the instruction 'system.update.'</xs:documentation>
1150
+ </xs:annotation>
1151
+ </xs:element>
1152
+ <xs:element name="system.qrcode" type="system.qrcode">
1153
+ <xs:annotation>
1154
+ <!-- ordem dos parametros -->
1155
+ <xs:appinfo>filename,input,size,version</xs:appinfo>
1156
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1157
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1158
+ <xs:appinfo>\x94;true;false;false</xs:appinfo>
1159
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1160
+ <xs:appinfo>
1161
+ </xs:appinfo>
1162
+ <xs:documentation>Generates a bitmap file containing a qrcode from the data of the input parameter.</xs:documentation>
1163
+ </xs:annotation>
1164
+ </xs:element>
1165
+ <xs:element name="network.hostdisconnect" type="network.hostdisconnect">
1166
+ <xs:annotation>
1167
+ <!-- ordem dos parametros -->
1168
+ <xs:appinfo>
1169
+ </xs:appinfo>
1170
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1171
+ <xs:appinfo>\x65;false;false;false</xs:appinfo>
1172
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1173
+ <xs:appinfo>
1174
+ </xs:appinfo>
1175
+ <xs:documentation>The command network.hostdisconnect disconnects the terminal from host, but it keeps the terminal connected in network.</xs:documentation>
1176
+ </xs:annotation>
1177
+ </xs:element>
1178
+ <xs:element name="iso8583.transactmessage" type="iso8583.transactmessage">
1179
+ <xs:annotation>
1180
+ <!-- ordem dos parametros -->
1181
+ <xs:appinfo>channel,header,trailler,isomsg,variableresponse,variablereturn</xs:appinfo>
1182
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1183
+ <xs:appinfo>\x3B;true;false;false</xs:appinfo>
1184
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1185
+ <xs:appinfo>
1186
+ </xs:appinfo>
1187
+ <xs:documentation>This function connects to the host, and based on the parameters especified it adds a size, header and trailer in the iso message, sends message to the host and try to receive the reply iso message 10 times.</xs:documentation>
1188
+ </xs:annotation>
1189
+ </xs:element>
1190
+ <xs:element name="iso8583.transactmessagesubfield" type="iso8583.transactmessagesubfield">
1191
+ <xs:annotation>
1192
+ <!-- ordem dos parametros -->
1193
+ <xs:appinfo>channel,header,trailler,variablereturn</xs:appinfo>
1194
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1195
+ <xs:appinfo>\x95;true;false;false</xs:appinfo>
1196
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1197
+ <xs:appinfo>
1198
+ </xs:appinfo>
1199
+ <xs:documentation>This function connects to the host, and based on the parameters especified it adds a size, header and trailer in the iso message, sends message to the host and try to receive the reply iso message 10 times. This instruction differs from iso8583.transactmessage, it sends a message that contains a subfield in binary format.</xs:documentation>
1200
+ </xs:annotation>
1201
+ </xs:element>
1202
+ <xs:element name="network.start" type="network.start">
1203
+ <xs:annotation>
1204
+ <!-- ordem dos parametros -->
1205
+ <xs:appinfo>variablereturn</xs:appinfo>
1206
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1207
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1208
+ <xs:appinfo>\x96;true;false;false</xs:appinfo>
1209
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1210
+ <xs:appinfo>
1211
+ </xs:appinfo>
1212
+ <xs:documentation>This instruction initializes the modem of the device.</xs:documentation>
1213
+ </xs:annotation>
1214
+ </xs:element>
1215
+ <xs:element name="notification.setup" type="notification.setup">
1216
+ <xs:annotation>
1217
+ <!-- ordem dos parametros -->
1218
+ <xs:appinfo>
1219
+ </xs:appinfo>
1220
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1221
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1222
+ <xs:appinfo>\x97;false;false;false</xs:appinfo>
1223
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1224
+ <xs:appinfo>
1225
+ </xs:appinfo>
1226
+ <xs:documentation>This instruction setup the device on CloudWalk's server for notification messages.</xs:documentation>
1227
+ </xs:annotation>
1228
+ </xs:element>
1229
+ <xs:element name="notification.receive" type="notification.receive">
1230
+ <xs:annotation>
1231
+ <!-- ordem dos parametros -->
1232
+ <xs:appinfo>variablepayload,variablereturn</xs:appinfo>
1233
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1234
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1235
+ <xs:appinfo>\x98;true;false;false</xs:appinfo>
1236
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1237
+ <xs:appinfo>
1238
+ </xs:appinfo>
1239
+ <xs:documentation>This instruction receives a notification message from CloudWalk's server.</xs:documentation>
1240
+ </xs:annotation>
1241
+ </xs:element>
1242
+ <xs:element name="smartcard.insertedcard" type="smartcard.insertedcard">
1243
+ <xs:annotation>
1244
+ <!-- ordem dos parametros -->
1245
+ <xs:appinfo>slot,variablereturn</xs:appinfo>
1246
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1247
+ <xs:appinfo>|;true;false;false</xs:appinfo>
1248
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1249
+ <xs:appinfo>
1250
+ </xs:appinfo>
1251
+ <xs:documentation>Verifies if the card is already inserted on terminal's reader.</xs:documentation>
1252
+ </xs:annotation>
1253
+ </xs:element>
1254
+ <xs:element name="smartcard.startreader" type="smartcard.startreader">
1255
+ <xs:annotation>
1256
+ <!-- ordem dos parametros -->
1257
+ <xs:appinfo>slot,variablereturn</xs:appinfo>
1258
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1259
+ <xs:appinfo>=;true;false;false</xs:appinfo>
1260
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1261
+ <xs:appinfo>
1262
+ </xs:appinfo>
1263
+ <xs:documentation>Starts the terminal's reader and try to initialize the card, sending an ATR command.</xs:documentation>
1264
+ </xs:annotation>
1265
+ </xs:element>
1266
+ <xs:element name="smartcard.transmitAPDU" type="smartcard.transmitAPDU">
1267
+ <xs:annotation>
1268
+ <!-- ordem dos parametros -->
1269
+ <xs:appinfo>slot,header,LC,datafield,LE,variabledatafieldresponse,variableSW,variablereturn</xs:appinfo>
1270
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1271
+ <xs:appinfo>.;true;false;false</xs:appinfo>
1272
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1273
+ <xs:appinfo>
1274
+ </xs:appinfo>
1275
+ <xs:documentation>Sends an APDU command to the card in a specified slot. Note that before using this instruction, the reader should be already started through the instruction smartcard.startreader. All the fields should be filled in with hexadecimal values. See instructions string.tohex and string.fromhex.</xs:documentation>
1276
+ </xs:annotation>
1277
+ </xs:element>
1278
+ <xs:element name="smartcard.closereader" type="smartcard.closereader">
1279
+ <xs:annotation>
1280
+ <!-- ordem dos parametros -->
1281
+ <xs:appinfo>slot,variablereturn</xs:appinfo>
1282
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1283
+ <xs:appinfo>2;true;false;false</xs:appinfo>
1284
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1285
+ <xs:appinfo>
1286
+ </xs:appinfo>
1287
+ <xs:documentation>Closes the communication channel with the card and closes the terminal's reader.</xs:documentation>
1288
+ </xs:annotation>
1289
+ </xs:element>
1290
+ <xs:element name="string.tohex" type="string.tohex">
1291
+ <xs:annotation>
1292
+ <!-- ordem dos parametros -->
1293
+ <xs:appinfo>string,variablereturn</xs:appinfo>
1294
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1295
+ <xs:appinfo>0;true;false;false</xs:appinfo>
1296
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1297
+ <xs:appinfo>
1298
+ </xs:appinfo>
1299
+ <xs:documentation>Converts a ASCII representation string in a hexadecimal representation. Example: '12345' It's equal to '3132333435'</xs:documentation>
1300
+ </xs:annotation>
1301
+ </xs:element>
1302
+ <xs:element name="string.fromhex" type="string.fromhex">
1303
+ <xs:annotation>
1304
+ <!-- ordem dos parametros -->
1305
+ <xs:appinfo>string,variablereturn</xs:appinfo>
1306
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1307
+ <xs:appinfo>?;true;false;false</xs:appinfo>
1308
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1309
+ <xs:appinfo>
1310
+ </xs:appinfo>
1311
+ <xs:documentation>Converts a hexadecimal representation in a ASCII representation string. Example: '3132333435' It's equal to '12345'</xs:documentation>
1312
+ </xs:annotation>
1313
+ </xs:element>
1314
+ <xs:element name="crypto.encryptdecrypt" type="crypto.encryptdecrypt">
1315
+ <xs:annotation>
1316
+ <!-- ordem dos parametros -->
1317
+ <xs:appinfo>message,key,cryptotype,type,variablereturn</xs:appinfo>
1318
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1319
+ <xs:appinfo>{;true;false;false</xs:appinfo>
1320
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1321
+ <xs:appinfo>
1322
+ </xs:appinfo>
1323
+ <xs:documentation>Encrypt or decrypt a message using DES, 3DES ou NEWDES.</xs:documentation>
1324
+ </xs:annotation>
1325
+ </xs:element>
1326
+ <xs:element name="crypto.lrc" type="crypto.lrc">
1327
+ <xs:annotation>
1328
+ <!-- ordem dos parametros -->
1329
+ <xs:appinfo>buffer,size,variablereturn</xs:appinfo>
1330
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1331
+ <xs:appinfo>};true;false;false</xs:appinfo>
1332
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1333
+ <xs:appinfo>
1334
+ </xs:appinfo>
1335
+ <xs:documentation>Generates a LRC byte from a string defined in parameter buffer.</xs:documentation>
1336
+ </xs:annotation>
1337
+ </xs:element>
1338
+ <xs:element name="crypto.xor" type="crypto.xor">
1339
+ <xs:annotation>
1340
+ <!-- ordem dos parametros -->
1341
+ <xs:appinfo>buffer1,buffer2,size,variablereturn</xs:appinfo>
1342
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1343
+ <xs:appinfo>^;true;false;false</xs:appinfo>
1344
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1345
+ <xs:appinfo>
1346
+ </xs:appinfo>
1347
+ <xs:documentation>Makes a binary XOR between the bytes defined in buffer1 and buffer2.</xs:documentation>
1348
+ </xs:annotation>
1349
+ </xs:element>
1350
+ <xs:element name="crypto.crc" type="crypto.crc">
1351
+ <xs:annotation>
1352
+ <!-- ordem dos parametros -->
1353
+ <xs:appinfo>buffer,size,type,variablereturn</xs:appinfo>
1354
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1355
+ <xs:appinfo>_;true;false;false</xs:appinfo>
1356
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1357
+ <xs:appinfo>
1358
+ </xs:appinfo>
1359
+ <xs:documentation>Calculate CRC 16 bits, CRC-CCITT support.</xs:documentation>
1360
+ </xs:annotation>
1361
+ </xs:element>
1362
+ <xs:element name="system.info" type="system.info">
1363
+ <xs:annotation>
1364
+ <!-- ordem dos parametros -->
1365
+ <xs:appinfo>type,variablereturn</xs:appinfo>
1366
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1367
+ <xs:appinfo>`;true;false;false</xs:appinfo>
1368
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1369
+ <xs:appinfo>
1370
+ </xs:appinfo>
1371
+ <xs:documentation>Info about system, example MAC Address e SIM ID.</xs:documentation>
1372
+ </xs:annotation>
1373
+ </xs:element>
1374
+ <xs:element name="system.gettouchscreen" type="system.gettouchscreen">
1375
+ <xs:annotation>
1376
+ <!-- ordem dos parametros -->
1377
+ <xs:appinfo>axisx,axisy,variablereturn</xs:appinfo>
1378
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1379
+ <xs:appinfo>\x87;true;false;false</xs:appinfo>
1380
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1381
+ <xs:appinfo>
1382
+ </xs:appinfo>
1383
+ <xs:documentation>The command system.gettouchscreen capture the coordinates where the display is pressed. </xs:documentation>
1384
+ </xs:annotation>
1385
+ </xs:element>
1386
+ <xs:element name="system.gettouchscreenkeyboard" type="system.gettouchscreenkeyboard">
1387
+ <xs:annotation>
1388
+ <!-- ordem dos parametros -->
1389
+ <xs:appinfo>axisx,axisy,timeout,variablekey,variablereturn</xs:appinfo>
1390
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1391
+ <xs:appinfo>\x8D;true;false;false</xs:appinfo>
1392
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1393
+ <xs:appinfo>
1394
+ </xs:appinfo>
1395
+ <xs:documentation>The command system.gettouchscreenkeyboard capture the coordinates where the display is pressed, or capture the key if it was pressed.</xs:documentation>
1396
+ </xs:annotation>
1397
+ </xs:element>
1398
+ <xs:element name="pinpad.open" type="pinpad.open">
1399
+ <xs:annotation>
1400
+ <!-- ordem dos parametros -->
1401
+ <xs:appinfo>type,variableserialnumber,variablereturn</xs:appinfo>
1402
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1403
+ <xs:appinfo>\x1C;true;false;false</xs:appinfo>
1404
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1405
+ <xs:appinfo>
1406
+ </xs:appinfo>
1407
+ <xs:documentation>The command pinpad.open enables the communication between external or internal pinpad and the POS terminal
1408
+ </xs:documentation>
1409
+ </xs:annotation>
1410
+ </xs:element>
1411
+ <xs:element name="pinpad.display" type="pinpad.display">
1412
+ <xs:annotation>
1413
+ <!-- ordem dos parametros -->
1414
+ <xs:appinfo>message</xs:appinfo>
1415
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1416
+ <xs:appinfo>(;true;false;false</xs:appinfo>
1417
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1418
+ <xs:appinfo>
1419
+ </xs:appinfo>
1420
+ <xs:documentation>The command pinpad.display displays the message contained in the message parameter on the display of external pinpad.Do not apply to internal pinpad.</xs:documentation>
1421
+ </xs:annotation>
1422
+ </xs:element>
1423
+ <xs:element name="pinpad.getkey" type="pinpad.getkey">
1424
+ <xs:annotation>
1425
+ <!-- ordem dos parametros -->
1426
+ <xs:appinfo>message,timeout,variablereturn</xs:appinfo>
1427
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1428
+ <xs:appinfo>);true;false;false</xs:appinfo>
1429
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1430
+ <xs:appinfo>
1431
+ </xs:appinfo>
1432
+ <xs:documentation>The command pinpad.getkey captures a key that is pressed on external pinpad while viewing a message contained in the message parameter on the display of external pinpad.Do not apply to internal pinpad.</xs:documentation>
1433
+ </xs:annotation>
1434
+ </xs:element>
1435
+ <xs:element name="pinpad.getpindukpt" type="pinpad.getpindukpt">
1436
+ <xs:annotation>
1437
+ <!-- ordem dos parametros -->
1438
+ <xs:appinfo>message,type,pan,maxlen,variablereturnpin,variablereturnksn,variablereturn</xs:appinfo>
1439
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1440
+ <xs:appinfo>*;true;false;false</xs:appinfo>
1441
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1442
+ <xs:appinfo>
1443
+ </xs:appinfo>
1444
+ <xs:documentation>The command pinpad.getpindukpt captures a pin and encrypts using The DUKPT standard in the external pinpad or internal while viewing a message contained in the message parameter on the display of external pinpad or on the display of POS terminal.</xs:documentation>
1445
+ </xs:annotation>
1446
+ </xs:element>
1447
+ <xs:element name="pinpad.loadipek" type="pinpad.loadipek">
1448
+ <xs:annotation>
1449
+ <!-- ordem dos parametros -->
1450
+ <xs:appinfo>ipek,ksn,type,variablereturn</xs:appinfo>
1451
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1452
+ <xs:appinfo>+;true;false;false</xs:appinfo>
1453
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1454
+ <xs:appinfo>
1455
+ </xs:appinfo>
1456
+ <xs:documentation>The command pinpad.loadipek record an initial key and an initial ksn on the memory of internal pinpad or external to perform an encryption of passwords using DUKPT standard. </xs:documentation>
1457
+ </xs:annotation>
1458
+ </xs:element>
1459
+ <xs:element name="pinpad.close" type="pinpad.close">
1460
+ <xs:annotation>
1461
+ <!-- ordem dos parametros -->
1462
+ <xs:appinfo>message</xs:appinfo>
1463
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1464
+ <xs:appinfo>~;true;false;false</xs:appinfo>
1465
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1466
+ <xs:appinfo>
1467
+ </xs:appinfo>
1468
+ <xs:documentation>The command pinpad.close terminates the communication with an external or internal pinpad that was previously established with pinpad.open. And put a standard message on the display of external pinpad. </xs:documentation>
1469
+ </xs:annotation>
1470
+ </xs:element>
1471
+ <xs:element name="emv.open" type="emv.open">
1472
+ <xs:annotation>
1473
+ <!-- ordem dos parametros -->
1474
+ <xs:appinfo>variablereturn,mkslot,pinpadtype,pinpadwk,showamount</xs:appinfo>
1475
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1476
+ <xs:appinfo>\x2D;true;false;false</xs:appinfo>
1477
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1478
+ <xs:appinfo>
1479
+ </xs:appinfo>
1480
+ <xs:documentation>Initialize EMV library.</xs:documentation>
1481
+ </xs:annotation>
1482
+ </xs:element>
1483
+ <xs:element name="emv.close" type="emv.close">
1484
+ <xs:annotation>
1485
+ <!-- ordem dos parametros -->
1486
+ <xs:appinfo>variablereturn</xs:appinfo>
1487
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1488
+ <xs:appinfo>\x22;true;false;false</xs:appinfo>
1489
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1490
+ <xs:appinfo>
1491
+ </xs:appinfo>
1492
+ <xs:documentation>Finaliza EMV library.</xs:documentation>
1493
+ </xs:annotation>
1494
+ </xs:element>
1495
+ <xs:element name="emv.settimeout" type="emv.settimeout">
1496
+ <xs:annotation>
1497
+ <!-- ordem dos parametros -->
1498
+ <xs:appinfo>seconds,variablereturn</xs:appinfo>
1499
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1500
+ <xs:appinfo>\x1E;true;false;false</xs:appinfo>
1501
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1502
+ <xs:appinfo>
1503
+ </xs:appinfo>
1504
+ <xs:documentation>Set a Timeout(in seconds) of library process EMV.</xs:documentation>
1505
+ </xs:annotation>
1506
+ </xs:element>
1507
+ <xs:element name="emv.loadtables" type="emv.loadtables">
1508
+ <xs:annotation>
1509
+ <!-- ordem dos parametros -->
1510
+ <xs:appinfo>acquirer,variablereturn</xs:appinfo>
1511
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1512
+ <xs:appinfo>\x5D;true;false;false</xs:appinfo>
1513
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1514
+ <xs:appinfo>
1515
+ </xs:appinfo>
1516
+ <xs:documentation>Load tables EMV and PKI of file by Acquirer.</xs:documentation>
1517
+ </xs:annotation>
1518
+ </xs:element>
1519
+ <xs:element name="emv.cleanstructures" type="emv.cleanstructures">
1520
+ <xs:annotation>
1521
+ <!-- ordem dos parametros -->
1522
+ <xs:appinfo>
1523
+ </xs:appinfo>
1524
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1525
+ <xs:appinfo>\x1F;false;false;false</xs:appinfo>
1526
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1527
+ <xs:appinfo>
1528
+ </xs:appinfo>
1529
+ <xs:documentation>Clean all parameters of input and output for 'init', 'process' and 'finish'.</xs:documentation>
1530
+ </xs:annotation>
1531
+ </xs:element>
1532
+ <xs:element name="emv.adddata" type="emv.adddata">
1533
+ <xs:annotation>
1534
+ <!-- ordem dos parametros -->
1535
+ <xs:appinfo>type,parameter,value,variablereturn</xs:appinfo>
1536
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1537
+ <xs:appinfo>\x88;true;false;false</xs:appinfo>
1538
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1539
+ <xs:appinfo>
1540
+ </xs:appinfo>
1541
+ <xs:documentation>Added parameters to the Process EMV, types 'init', 'process', 'finish'.</xs:documentation>
1542
+ </xs:annotation>
1543
+ </xs:element>
1544
+ <xs:element name="emv.getinfo" type="emv.getinfo">
1545
+ <xs:annotation>
1546
+ <!-- ordem dos parametros -->
1547
+ <xs:appinfo>type,parameter,value</xs:appinfo>
1548
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1549
+ <xs:appinfo>\x35;true;false;false</xs:appinfo>
1550
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1551
+ <xs:appinfo>
1552
+ </xs:appinfo>
1553
+ <xs:documentation>Return parâmeters of information after running the process EMV, types 'init', 'process', 'finish'.</xs:documentation>
1554
+ </xs:annotation>
1555
+ </xs:element>
1556
+ <xs:element name="emv.inittransaction" type="emv.inittransaction">
1557
+ <xs:annotation>
1558
+ <!-- ordem dos parametros -->
1559
+ <xs:appinfo>variablereturn</xs:appinfo>
1560
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1561
+ <xs:appinfo>\x20;true;false;false</xs:appinfo>
1562
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1563
+ <xs:appinfo>
1564
+ </xs:appinfo>
1565
+ <xs:documentation>Initialize EMV with the parameters inserted in emv.adddata with 'init' type.</xs:documentation>
1566
+ </xs:annotation>
1567
+ </xs:element>
1568
+ <xs:element name="emv.processtransaction" type="emv.processtransaction">
1569
+ <xs:annotation>
1570
+ <!-- ordem dos parametros -->
1571
+ <xs:appinfo>variablereturn,ctls</xs:appinfo>
1572
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1573
+ <xs:appinfo>\x3A;true;false;false</xs:appinfo>
1574
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1575
+ <xs:appinfo>
1576
+ </xs:appinfo>
1577
+ <xs:documentation> processing of transaction EMV, use data inserted in emv.adddata with 'process' type.</xs:documentation>
1578
+ </xs:annotation>
1579
+ </xs:element>
1580
+ <xs:element name="emv.finishtransaction" type="emv.finishtransaction">
1581
+ <xs:annotation>
1582
+ <!-- ordem dos parametros -->
1583
+ <xs:appinfo>variablereturn</xs:appinfo>
1584
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1585
+ <xs:appinfo>\x5B;true;false;false</xs:appinfo>
1586
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1587
+ <xs:appinfo>
1588
+ </xs:appinfo>
1589
+ <xs:documentation>Finalisation of EMV transaction, use data inserted in emv.adddata with 'finish' type</xs:documentation>
1590
+ </xs:annotation>
1591
+ </xs:element>
1592
+ <xs:element name="emv.removecard" type="emv.removecard">
1593
+ <xs:annotation>
1594
+ <!-- ordem dos parametros -->
1595
+ <xs:appinfo>variablereturn</xs:appinfo>
1596
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1597
+ <xs:appinfo>\x71;true;false;false</xs:appinfo>
1598
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1599
+ <xs:appinfo>
1600
+ </xs:appinfo>
1601
+ <xs:documentation>Awaits removal of the card, use of emv.settimeout, if setted.</xs:documentation>
1602
+ </xs:annotation>
1603
+ </xs:element>
1604
+ <xs:element name="parseticket" type="parseticket">
1605
+ <xs:annotation>
1606
+ <!-- ordem dos parametros -->
1607
+ <xs:appinfo>productmenu,ticket,message,literal,variablereturn</xs:appinfo>
1608
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1609
+ <xs:appinfo>\x80;true;false;false</xs:appinfo>
1610
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1611
+ <xs:appinfo>
1612
+ </xs:appinfo>
1613
+ <xs:documentation>Awaits removal of the card, use of emv.settimeout, if setted.</xs:documentation>
1614
+ </xs:annotation>
1615
+ </xs:element>
1616
+ <xs:element name="file.open" type="file.open">
1617
+ <xs:annotation>
1618
+ <!-- ordem dos parametros -->
1619
+ <xs:appinfo>mode,filename,variablehandle</xs:appinfo>
1620
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1621
+ <xs:appinfo>\x83;true;false;false</xs:appinfo>
1622
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1623
+ <xs:appinfo>
1624
+ </xs:appinfo>
1625
+ <xs:documentation>opens a file for reading or writing.</xs:documentation>
1626
+ </xs:annotation>
1627
+ </xs:element>
1628
+ <xs:element name="file.close" type="file.close">
1629
+ <xs:annotation>
1630
+ <!-- ordem dos parametros -->
1631
+ <xs:appinfo>handle</xs:appinfo>
1632
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1633
+ <xs:appinfo>\x84;true;false;false</xs:appinfo>
1634
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1635
+ <xs:appinfo>
1636
+ </xs:appinfo>
1637
+ <xs:documentation>Closes a file that was previously opened with file.open.</xs:documentation>
1638
+ </xs:annotation>
1639
+ </xs:element>
1640
+ <xs:element name="file.read" type="file.read">
1641
+ <xs:annotation>
1642
+ <!-- ordem dos parametros -->
1643
+ <xs:appinfo>handle,size,variablebuffer,variablereturn</xs:appinfo>
1644
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1645
+ <xs:appinfo>\x85;true;false;false</xs:appinfo>
1646
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1647
+ <xs:appinfo>
1648
+ </xs:appinfo>
1649
+ <xs:documentation>Read a file that was previously opened with file.open.</xs:documentation>
1650
+ </xs:annotation>
1651
+ </xs:element>
1652
+ <xs:element name="file.write" type="file.write">
1653
+ <xs:annotation>
1654
+ <!-- ordem dos parametros -->
1655
+ <xs:appinfo>handle,size,buffer</xs:appinfo>
1656
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1657
+ <xs:appinfo>\x86;true;false;false</xs:appinfo>
1658
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1659
+ <xs:appinfo>
1660
+ </xs:appinfo>
1661
+ <xs:documentation>Writes a file that was previously opened with file.open.</xs:documentation>
1662
+ </xs:annotation>
1663
+ </xs:element>
1664
+ <xs:element name="file.concat" type="file.concat">
1665
+ <xs:annotation>
1666
+ <!-- ordem dos parametros -->
1667
+ <xs:appinfo>config,out,variablereturn</xs:appinfo>
1668
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1669
+ <xs:appinfo>\xA1;true;false;false</xs:appinfo>
1670
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1671
+ <xs:appinfo>
1672
+ </xs:appinfo>
1673
+ <xs:documentation>Concatenate files.</xs:documentation>
1674
+ </xs:annotation>
1675
+ </xs:element>
1676
+ <xs:element name="input.getvalue" type="input.getvalue">
1677
+ <xs:annotation>
1678
+ <!-- ordem dos parametros -->
1679
+ <xs:appinfo>linecaption,columncaption,caption,lineinput,columninput,minimum,maximum,allowsempty,variablereturn</xs:appinfo>
1680
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1681
+ <xs:appinfo>\x82;true;false;false</xs:appinfo>
1682
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1683
+ <xs:appinfo>
1684
+ </xs:appinfo>
1685
+ <xs:documentation>Allows you to capture a string and display it on screen in any position.</xs:documentation>
1686
+ </xs:annotation>
1687
+ </xs:element>
1688
+ <xs:element name="string.pad" type="string.pad">
1689
+ <xs:annotation>
1690
+ <!-- ordem dos parametros -->
1691
+ <xs:appinfo>origin,character,align,length,destination</xs:appinfo>
1692
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1693
+ <xs:appinfo>\x89;true;false;false</xs:appinfo>
1694
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1695
+ <xs:appinfo>
1696
+ </xs:appinfo>
1697
+ <xs:documentation>The string that is passed receives a pad with the specified character.</xs:documentation>
1698
+ </xs:annotation>
1699
+ </xs:element>
1700
+ <xs:element name="time.calculate" type="time.calculate">
1701
+ <xs:annotation>
1702
+ <!-- ordem dos parametros -->
1703
+ <xs:appinfo>operation,type,date,greaterdate,value,variablereturn</xs:appinfo>
1704
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1705
+ <xs:appinfo>\x90;true;false;false</xs:appinfo>
1706
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1707
+ <xs:appinfo>
1708
+ </xs:appinfo>
1709
+ <xs:documentation>Time calculation, addition, subtraction and difference.</xs:documentation>
1710
+ </xs:annotation>
1711
+ </xs:element>
1712
+ <xs:element name="paymentchannel.receive" type="paymentchannel.receive">
1713
+ <xs:annotation>
1714
+ <!-- ordem dos parametros -->
1715
+ <xs:appinfo>socket,compressed,timeout,variableresponse,variablereturn</xs:appinfo>
1716
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1717
+ <xs:appinfo>\xa5;true;false;false</xs:appinfo>
1718
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1719
+ <xs:appinfo>
1720
+ </xs:appinfo>
1721
+ <xs:documentation>Receive a buffer from a payment channel</xs:documentation>
1722
+ </xs:annotation>
1723
+ </xs:element>
1724
+ <xs:element name="paymentchannel.send" type="paymentchannel.send">
1725
+ <xs:annotation>
1726
+ <!-- ordem dos parametros -->
1727
+ <xs:appinfo>socket,compressed,msg</xs:appinfo>
1728
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1729
+ <xs:appinfo>\xa2;true;false;false</xs:appinfo>
1730
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1731
+ <xs:appinfo>
1732
+ </xs:appinfo>
1733
+ <xs:documentation>Send a buffer to a payment channel</xs:documentation>
1734
+ </xs:annotation>
1735
+ </xs:element>
1736
+ <xs:element name="paymentchannel.connect" type="paymentchannel.connect">
1737
+ <xs:annotation>
1738
+ <!-- ordem dos parametros -->
1739
+ <xs:appinfo>variablecompressed,variablereturn</xs:appinfo>
1740
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1741
+ <xs:appinfo>\xa3;true;false;false</xs:appinfo>
1742
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1743
+ <xs:appinfo>
1744
+ </xs:appinfo>
1745
+ <xs:documentation>Create a payment channel</xs:documentation>
1746
+ </xs:annotation>
1747
+ </xs:element>
1748
+ <xs:element name="paymentchannel.close" type="paymentchannel.close">
1749
+ <xs:annotation>
1750
+ <!-- ordem dos parametros -->
1751
+ <xs:appinfo>socket</xs:appinfo>
1752
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1753
+ <xs:appinfo>\xa4;true;false;false</xs:appinfo>
1754
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1755
+ <xs:appinfo>
1756
+ </xs:appinfo>
1757
+ <xs:documentation>Close a payment channel</xs:documentation>
1758
+ </xs:annotation>
1759
+ </xs:element>
1760
+ <xs:element name="iso20022.new" type="iso20022.new">
1761
+ <xs:annotation>
1762
+ <!-- ordem dos parametros -->
1763
+ <xs:appinfo>document</xs:appinfo>
1764
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1765
+ <xs:appinfo>\xa6;true;false;false</xs:appinfo>
1766
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1767
+ <xs:appinfo>
1768
+ </xs:appinfo>
1769
+ <xs:documentation>Start ISO 20022 Payment message</xs:documentation>
1770
+ </xs:annotation>
1771
+ </xs:element>
1772
+ <xs:element name="iso20022.add" type="iso20022.add">
1773
+ <xs:annotation>
1774
+ <!-- ordem dos parametros -->
1775
+ <xs:appinfo>tag,value</xs:appinfo>
1776
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1777
+ <xs:appinfo>\xa7;true;false;false</xs:appinfo>
1778
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1779
+ <xs:appinfo>
1780
+ </xs:appinfo>
1781
+ <xs:documentation>Add a tag in a ISO 20022 Payment message</xs:documentation>
1782
+ </xs:annotation>
1783
+ </xs:element>
1784
+ <xs:element name="iso20022.build" type="iso20022.build">
1785
+ <xs:annotation>
1786
+ <!-- ordem dos parametros -->
1787
+ <xs:appinfo>variablereturn,buffer</xs:appinfo>
1788
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (startelement) -->
1789
+ <xs:appinfo>\xa8;true;false;false</xs:appinfo>
1790
+ <!-- bytecode;tem parametros;declaracao ou chamada de funcao;declaracao de variavel; (endelement) -->
1791
+ <xs:appinfo>
1792
+ </xs:appinfo>
1793
+ <xs:documentation>Add a tag in a ISO 20022 Payment message</xs:documentation>
1794
+ </xs:annotation>
1795
+ </xs:element>
1796
+ </xs:choice>
1797
+ </xs:group>
1798
+ <xs:complexType name="display">
1799
+ <xs:sequence>
1800
+ </xs:sequence>
1801
+ <xs:attribute name="line" type="xs:string" use="required">
1802
+ <xs:annotation>
1803
+ <xs:documentation>(integer) Line of display.</xs:documentation>
1804
+ </xs:annotation>
1805
+ </xs:attribute>
1806
+ <xs:attribute name="column" type="xs:string" use="required">
1807
+ <xs:annotation>
1808
+ <xs:documentation>(integer) Column of display.</xs:documentation>
1809
+ </xs:annotation>
1810
+ </xs:attribute>
1811
+ <xs:attribute name="message" type="xs:string" use="required">
1812
+ <xs:annotation>
1813
+ <xs:documentation>(string) Message to show in display.</xs:documentation>
1814
+ </xs:annotation>
1815
+ </xs:attribute>
1816
+ </xs:complexType>
1817
+ <xs:complexType name="cleandisplay">
1818
+ <xs:sequence />
1819
+ </xs:complexType>
1820
+ <xs:complexType name="function">
1821
+ <xs:choice maxOccurs="unbounded">
1822
+ <xs:group ref="comandos" />
1823
+ </xs:choice>
1824
+ <xs:attribute name="name" type="xs:string" use="required">
1825
+ <xs:annotation>
1826
+ <xs:documentation>string (Name of function)</xs:documentation>
1827
+ </xs:annotation>
1828
+ </xs:attribute>
1829
+ </xs:complexType>
1830
+ <xs:complexType name="if">
1831
+ <xs:choice maxOccurs="unbounded">
1832
+ <xs:group ref="comandos" />
1833
+ </xs:choice>
1834
+ <xs:attribute name="variable" type="xs:string" use="required">
1835
+ <xs:annotation>
1836
+ <xs:documentation>string or integer (Variable for comparison)</xs:documentation>
1837
+ </xs:annotation>
1838
+ </xs:attribute>
1839
+ <xs:attribute name="operator" type="xs:string" use="required">
1840
+ <xs:annotation>
1841
+ <xs:documentation>string (Operator, can be: lessthan,greaterthan,equalto,notequalto,greaterthanorequalto,lessthanorequalto)</xs:documentation>
1842
+ </xs:annotation>
1843
+ </xs:attribute>
1844
+ <xs:attribute name="value" type="xs:string" use="required">
1845
+ <xs:annotation>
1846
+ <xs:documentation>string or integer (Value for comparison)</xs:documentation>
1847
+ </xs:annotation>
1848
+ </xs:attribute>
1849
+ </xs:complexType>
1850
+ <xs:complexType name="inputinteger">
1851
+ <xs:sequence />
1852
+ <xs:attribute name="variable" type="xs:string" use="required">
1853
+ <xs:annotation>
1854
+ <xs:documentation>integer (Variable where the captured value will be stored)</xs:documentation>
1855
+ </xs:annotation>
1856
+ </xs:attribute>
1857
+ <xs:attribute name="line" type="xs:string" use="required">
1858
+ <xs:annotation>
1859
+ <xs:documentation>integer (Line of display where the message will be shown)</xs:documentation>
1860
+ </xs:annotation>
1861
+ </xs:attribute>
1862
+ <xs:attribute name="column" type="xs:string" use="required">
1863
+ <xs:annotation>
1864
+ <xs:documentation>integer (Column of display where the message will be shown)</xs:documentation>
1865
+ </xs:annotation>
1866
+ </xs:attribute>
1867
+ <xs:attribute name="message" type="xs:string" use="required">
1868
+ <xs:annotation>
1869
+ <xs:documentation>string (The message that will be shown in the display)</xs:documentation>
1870
+ </xs:annotation>
1871
+ </xs:attribute>
1872
+ <xs:attribute name="minimum" type="xs:string" use="required">
1873
+ <xs:annotation>
1874
+ <xs:documentation>integer (The minimum value permited)</xs:documentation>
1875
+ </xs:annotation>
1876
+ </xs:attribute>
1877
+ <xs:attribute name="maximum" type="xs:string" use="required">
1878
+ <xs:annotation>
1879
+ <xs:documentation>integer (The maximum value permited)</xs:documentation>
1880
+ </xs:annotation>
1881
+ </xs:attribute>
1882
+ </xs:complexType>
1883
+ <xs:complexType name="inputoption">
1884
+ <xs:sequence />
1885
+ <xs:attribute name="variable" type="xs:string" use="required">
1886
+ <xs:annotation>
1887
+ <xs:documentation>integer (Variable where the captured value will be stored)</xs:documentation>
1888
+ </xs:annotation>
1889
+ </xs:attribute>
1890
+ <xs:attribute name="line" type="xs:string" use="required">
1891
+ <xs:annotation>
1892
+ <xs:documentation>integer (Line of display where the message will be shown)</xs:documentation>
1893
+ </xs:annotation>
1894
+ </xs:attribute>
1895
+ <xs:attribute name="column" type="xs:string" use="required">
1896
+ <xs:annotation>
1897
+ <xs:documentation>integer (Column of display where the message will be shown)</xs:documentation>
1898
+ </xs:annotation>
1899
+ </xs:attribute>
1900
+ <xs:attribute name="message" type="xs:string" use="required">
1901
+ <xs:annotation>
1902
+ <xs:documentation>string (The message that will be shown in the display)</xs:documentation>
1903
+ </xs:annotation>
1904
+ </xs:attribute>
1905
+ <xs:attribute name="minimum" type="xs:string" use="required">
1906
+ <xs:annotation>
1907
+ <xs:documentation>integer (The minimum value permited)</xs:documentation>
1908
+ </xs:annotation>
1909
+ </xs:attribute>
1910
+ <xs:attribute name="maximum" type="xs:string" use="required">
1911
+ <xs:annotation>
1912
+ <xs:documentation>integer (The maximum value permited)</xs:documentation>
1913
+ </xs:annotation>
1914
+ </xs:attribute>
1915
+ </xs:complexType>
1916
+ <xs:complexType name="inputmoney">
1917
+ <xs:sequence />
1918
+ <xs:attribute name="variable" type="xs:string" use="required">
1919
+ <xs:annotation>
1920
+ <xs:documentation>integer (Variable where the captured value will be stored)</xs:documentation>
1921
+ </xs:annotation>
1922
+ </xs:attribute>
1923
+ <xs:attribute name="line" type="xs:string" use="required">
1924
+ <xs:annotation>
1925
+ <xs:documentation>integer (Line of display where the message will be shown)</xs:documentation>
1926
+ </xs:annotation>
1927
+ </xs:attribute>
1928
+ <xs:attribute name="column" type="xs:string" use="required">
1929
+ <xs:annotation>
1930
+ <xs:documentation>integer (Column of display where the message will be shown)</xs:documentation>
1931
+ </xs:annotation>
1932
+ </xs:attribute>
1933
+ <xs:attribute name="message" type="xs:string" use="required">
1934
+ <xs:annotation>
1935
+ <xs:documentation>string (The message that will be shown in the display)</xs:documentation>
1936
+ </xs:annotation>
1937
+ </xs:attribute>
1938
+ </xs:complexType>
1939
+ <xs:complexType name="inputformat">
1940
+ <xs:sequence />
1941
+ <xs:attribute name="variable" type="xs:string" use="required">
1942
+ <xs:annotation>
1943
+ <xs:documentation>string (Variable where the captured value will be stored)</xs:documentation>
1944
+ </xs:annotation>
1945
+ </xs:attribute>
1946
+ <xs:attribute name="line" type="xs:string" use="required">
1947
+ <xs:annotation>
1948
+ <xs:documentation>integer (Line of display where the message will be shown)</xs:documentation>
1949
+ </xs:annotation>
1950
+ </xs:attribute>
1951
+ <xs:attribute name="column" type="xs:string" use="required">
1952
+ <xs:annotation>
1953
+ <xs:documentation>integer (Column of display where the message will be shown)</xs:documentation>
1954
+ </xs:annotation>
1955
+ </xs:attribute>
1956
+ <xs:attribute name="message" type="xs:string" use="required">
1957
+ <xs:annotation>
1958
+ <xs:documentation>string (The message that will be shown in the display)</xs:documentation>
1959
+ </xs:annotation>
1960
+ </xs:attribute>
1961
+ <xs:attribute name="format" type="xs:string" use="required">
1962
+ <xs:annotation>
1963
+ <xs:documentation>string (Mask for input values. 9:numbers A:letters *:password. The other characters will be inserted automatically. Ex: 999-AAA/***)</xs:documentation>
1964
+ </xs:annotation>
1965
+ </xs:attribute>
1966
+ </xs:complexType>
1967
+ <xs:complexType name="print">
1968
+ <xs:sequence />
1969
+ <xs:attribute name="message" type="xs:string" use="required">
1970
+ <xs:annotation>
1971
+ <xs:documentation>string (The message that will be printed by the terminal's printer)</xs:documentation>
1972
+ </xs:annotation>
1973
+ </xs:attribute>
1974
+ </xs:complexType>
1975
+ <xs:complexType name="printbig">
1976
+ <xs:sequence />
1977
+ <xs:attribute name="message" type="xs:string" use="required">
1978
+ <xs:annotation>
1979
+ <xs:documentation>string (The message that will be printed by the terminal's printer)</xs:documentation>
1980
+ </xs:annotation>
1981
+ </xs:attribute>
1982
+ </xs:complexType>
1983
+ <xs:complexType name="paperfeed">
1984
+ <xs:sequence />
1985
+ </xs:complexType>
1986
+ <xs:complexType name="inputfloat">
1987
+ <xs:sequence />
1988
+ <xs:attribute name="variable" type="xs:string" use="required">
1989
+ <xs:annotation>
1990
+ <xs:documentation>string (Variable where the captured value will be stored)</xs:documentation>
1991
+ </xs:annotation>
1992
+ </xs:attribute>
1993
+ <xs:attribute name="line" type="xs:string" use="required">
1994
+ <xs:annotation>
1995
+ <xs:documentation>integer (Line of display where the message will be shown)</xs:documentation>
1996
+ </xs:annotation>
1997
+ </xs:attribute>
1998
+ <xs:attribute name="column" type="xs:string" use="required">
1999
+ <xs:annotation>
2000
+ <xs:documentation>integer (Column of display where the message will be shown)</xs:documentation>
2001
+ </xs:annotation>
2002
+ </xs:attribute>
2003
+ <xs:attribute name="message" type="xs:string" use="required">
2004
+ <xs:annotation>
2005
+ <xs:documentation>string (The message that will be shown in the display)</xs:documentation>
2006
+ </xs:annotation>
2007
+ </xs:attribute>
2008
+ </xs:complexType>
2009
+ <xs:complexType name="preconnect">
2010
+ <xs:sequence />
2011
+ <xs:attribute name="variablestatus" type="xs:string" use="required">
2012
+ <xs:annotation>
2013
+ <xs:documentation>integer (Connection status. 0: success -1: error)</xs:documentation>
2014
+ </xs:annotation>
2015
+ </xs:attribute>
2016
+ </xs:complexType>
2017
+ <xs:complexType name="shutdownmodem">
2018
+ <xs:sequence />
2019
+ </xs:complexType>
2020
+ <xs:complexType name="getcardvariable">
2021
+ <xs:sequence />
2022
+ <xs:attribute name="firstmessage" type="xs:string" use="required">
2023
+ <xs:annotation>
2024
+ <xs:documentation>string (The first message that will be shown in the display)</xs:documentation>
2025
+ </xs:annotation>
2026
+ </xs:attribute>
2027
+ <xs:attribute name="secondmessage" type="xs:string" use="required">
2028
+ <xs:annotation>
2029
+ <xs:documentation>string (The second message that will be shown in the display when the user press Enter key)</xs:documentation>
2030
+ </xs:annotation>
2031
+ </xs:attribute>
2032
+ <xs:attribute name="minimum" type="xs:string" use="required">
2033
+ <xs:annotation>
2034
+ <xs:documentation>integer (Minimum length of digited card number)</xs:documentation>
2035
+ </xs:annotation>
2036
+ </xs:attribute>
2037
+ <xs:attribute name="maximum" type="xs:string" use="required">
2038
+ <xs:annotation>
2039
+ <xs:documentation>integer (Maximum length of digited card number)</xs:documentation>
2040
+ </xs:annotation>
2041
+ </xs:attribute>
2042
+ <xs:attribute name="variable" type="xs:string" use="required">
2043
+ <xs:annotation>
2044
+ <xs:documentation>string (Variable where the captured value will be stored)</xs:documentation>
2045
+ </xs:annotation>
2046
+ </xs:attribute>
2047
+ </xs:complexType>
2048
+ <xs:complexType name="waitkey">
2049
+ <xs:sequence />
2050
+ </xs:complexType>
2051
+ <xs:complexType name="wait">
2052
+ <xs:sequence />
2053
+ <xs:attribute type="xs:string" use="required" name="miliseconds">
2054
+ <xs:annotation>
2055
+ <xs:documentation>integer (Time that the instruction will wait)</xs:documentation>
2056
+ </xs:annotation>
2057
+ </xs:attribute>
2058
+ </xs:complexType>
2059
+ <xs:complexType name="callfunction">
2060
+ <xs:sequence />
2061
+ <xs:attribute name="name" type="xs:string" use="required">
2062
+ <xs:annotation>
2063
+ <xs:documentation>function (Name of the function that will be called)</xs:documentation>
2064
+ </xs:annotation>
2065
+ </xs:attribute>
2066
+ </xs:complexType>
2067
+ <xs:complexType name="integervariable">
2068
+ <xs:sequence />
2069
+ <xs:attribute name="value" type="xs:string" use="required">
2070
+ <xs:annotation>
2071
+ <xs:documentation>integer (Value of variable)</xs:documentation>
2072
+ </xs:annotation>
2073
+ </xs:attribute>
2074
+ <xs:attribute name="variable" type="xs:string" use="required">
2075
+ <xs:annotation>
2076
+ <xs:documentation>variable (Name of variable)</xs:documentation>
2077
+ </xs:annotation>
2078
+ </xs:attribute>
2079
+ </xs:complexType>
2080
+ <xs:complexType name="stringvariable">
2081
+ <xs:sequence />
2082
+ <xs:attribute name="value" type="xs:string" use="required">
2083
+ <xs:annotation>
2084
+ <xs:documentation>string (Value of variable)</xs:documentation>
2085
+ </xs:annotation>
2086
+ </xs:attribute>
2087
+ <xs:attribute name="variable" type="xs:string" use="required">
2088
+ <xs:annotation>
2089
+ <xs:documentation>variable (Name of variable)</xs:documentation>
2090
+ </xs:annotation>
2091
+ </xs:attribute>
2092
+ </xs:complexType>
2093
+ <xs:complexType name="substring">
2094
+ <xs:sequence />
2095
+ <xs:attribute name="index" type="xs:string" use="required">
2096
+ <xs:annotation>
2097
+ <xs:documentation>integer (The position in variablesource where the substring will be started.)</xs:documentation>
2098
+ </xs:annotation>
2099
+ </xs:attribute>
2100
+ <xs:attribute name="variablesource" type="xs:string" use="required">
2101
+ <xs:annotation>
2102
+ <xs:documentation>string (Variable where the substring will be made)</xs:documentation>
2103
+ </xs:annotation>
2104
+ </xs:attribute>
2105
+ <xs:attribute name="variabledestination" type="xs:string" use="required">
2106
+ <xs:annotation>
2107
+ <xs:documentation>string (Variable where the result of substring will be stored)</xs:documentation>
2108
+ </xs:annotation>
2109
+ </xs:attribute>
2110
+ <xs:attribute name="character" type="xs:string" use="required">
2111
+ <xs:annotation>
2112
+ <xs:documentation>string (Character that the substring will search in variablesource)</xs:documentation>
2113
+ </xs:annotation>
2114
+ </xs:attribute>
2115
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2116
+ <xs:annotation>
2117
+ <xs:documentation>integer (Position of the found character in variablesource. If the specified character was not found, the value of variablereturn will be -1.</xs:documentation>
2118
+ </xs:annotation>
2119
+ </xs:attribute>
2120
+ </xs:complexType>
2121
+ <xs:complexType name="stringtoint">
2122
+ <xs:sequence />
2123
+ <xs:attribute name="variablestring" type="xs:string" use="required">
2124
+ <xs:annotation>
2125
+ <xs:documentation>string (Variable that will be converted)</xs:documentation>
2126
+ </xs:annotation>
2127
+ </xs:attribute>
2128
+ <xs:attribute name="variableinteger" type="xs:string" use="required">
2129
+ <xs:annotation>
2130
+ <xs:documentation>integer (Variable where the converted value will be stored)</xs:documentation>
2131
+ </xs:annotation>
2132
+ </xs:attribute>
2133
+ </xs:complexType>
2134
+ <xs:complexType name="inttostring">
2135
+ <xs:sequence />
2136
+ <xs:attribute name="variableinteger" type="xs:string" use="required">
2137
+ <xs:annotation>
2138
+ <xs:documentation>integer (Variable that will be converted)</xs:documentation>
2139
+ </xs:annotation>
2140
+ </xs:attribute>
2141
+ <xs:attribute name="variablestring" type="xs:string" use="required">
2142
+ <xs:annotation>
2143
+ <xs:documentation>string (Variable where the converted value will be stored)</xs:documentation>
2144
+ </xs:annotation>
2145
+ </xs:attribute>
2146
+ </xs:complexType>
2147
+ <xs:complexType name="string.getvaluebykey">
2148
+ <xs:sequence />
2149
+ <xs:attribute name="string" type="xs:string" use="required">
2150
+ <xs:annotation>
2151
+ <xs:documentation>The string which will be used to search. (string)</xs:documentation>
2152
+ </xs:annotation>
2153
+ </xs:attribute>
2154
+ <xs:attribute name="key" type="xs:string" use="required">
2155
+ <xs:annotation>
2156
+ <xs:documentation>Name of the existing key in the string. (string)</xs:documentation>
2157
+ </xs:annotation>
2158
+ </xs:attribute>
2159
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2160
+ <xs:annotation>
2161
+ <xs:documentation>Variable where the value of the key specified in parameter key will be stored. (string)</xs:documentation>
2162
+ </xs:annotation>
2163
+ </xs:attribute>
2164
+ </xs:complexType>
2165
+ <xs:complexType name="menu">
2166
+ <xs:sequence />
2167
+ <xs:attribute name="variable" type="xs:string" use="required">
2168
+ <xs:annotation>
2169
+ <xs:documentation>integer (Variable where the key pressed will be stored. This value can be of 0 to 9.)</xs:documentation>
2170
+ </xs:annotation>
2171
+ </xs:attribute>
2172
+ <xs:attribute name="options" type="xs:string" use="required">
2173
+ <xs:annotation>
2174
+ <xs:documentation>string (The options of menu delimited by '\')</xs:documentation>
2175
+ </xs:annotation>
2176
+ </xs:attribute>
2177
+ </xs:complexType>
2178
+ <xs:complexType name="menuwithheader">
2179
+ <xs:sequence />
2180
+ <xs:attribute name="header" type="xs:string" use="required">
2181
+ <xs:annotation>
2182
+ <xs:documentation>Options of header delimited by '|'. (string)</xs:documentation>
2183
+ </xs:annotation>
2184
+ </xs:attribute>
2185
+ <xs:attribute name="options" type="xs:string" use="required">
2186
+ <xs:annotation>
2187
+ <xs:documentation>Options of menu delimited by '\'. (string)</xs:documentation>
2188
+ </xs:annotation>
2189
+ </xs:attribute>
2190
+ <xs:attribute name="timeoutheader" type="xs:string" use="required">
2191
+ <xs:annotation>
2192
+ <xs:documentation>Time for change to the next header. (string)</xs:documentation>
2193
+ </xs:annotation>
2194
+ </xs:attribute>
2195
+ <xs:attribute name="timeout" type="xs:string" use="required">
2196
+ <xs:annotation>
2197
+ <xs:documentation>Timeout of the function, iskeytimeout must be 1. (string)</xs:documentation>
2198
+ </xs:annotation>
2199
+ </xs:attribute>
2200
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2201
+ <xs:annotation>
2202
+ <xs:documentation>Variable that will be stored the value pressed. (string)</xs:documentation>
2203
+ </xs:annotation>
2204
+ </xs:attribute>
2205
+ </xs:complexType>
2206
+ <xs:complexType name="readfile">
2207
+ <xs:sequence />
2208
+ <xs:attribute name="filename" type="xs:string" use="required">
2209
+ <xs:annotation>
2210
+ <xs:documentation>string (Name of the file that will be opened)</xs:documentation>
2211
+ </xs:annotation>
2212
+ </xs:attribute>
2213
+ <xs:attribute name="key" type="xs:string" use="required">
2214
+ <xs:annotation>
2215
+ <xs:documentation>string (Name of the existing key in the file)</xs:documentation>
2216
+ </xs:annotation>
2217
+ </xs:attribute>
2218
+ <xs:attribute name="variabledestination" type="xs:string" use="required">
2219
+ <xs:annotation>
2220
+ <xs:documentation>string (Variable where the value of the key specified in parameter key will be stored)</xs:documentation>
2221
+ </xs:annotation>
2222
+ </xs:attribute>
2223
+ </xs:complexType>
2224
+ <xs:complexType name="editfile">
2225
+ <xs:sequence />
2226
+ <xs:attribute name="filename" type="xs:string" use="required">
2227
+ <xs:annotation>
2228
+ <xs:documentation>string (Name of the file that will be opened or created)</xs:documentation>
2229
+ </xs:annotation>
2230
+ </xs:attribute>
2231
+ <xs:attribute name="key" type="xs:string" use="required">
2232
+ <xs:annotation>
2233
+ <xs:documentation>string (Name of existing or new key in the file)</xs:documentation>
2234
+ </xs:annotation>
2235
+ </xs:attribute>
2236
+ <xs:attribute name="value" type="xs:string" use="required">
2237
+ <xs:annotation>
2238
+ <xs:documentation>string (Value of the key specified in parameter key)</xs:documentation>
2239
+ </xs:annotation>
2240
+ </xs:attribute>
2241
+ </xs:complexType>
2242
+ <xs:complexType name="integeroperator">
2243
+ <xs:sequence />
2244
+ <xs:attribute name="operator" type="xs:string" use="required">
2245
+ <xs:annotation>
2246
+ <xs:documentation>string (Operator can be: '++' to increment number in + 1 or '--' to decrement number in -1)</xs:documentation>
2247
+ </xs:annotation>
2248
+ </xs:attribute>
2249
+ <xs:attribute name="variablesource" type="xs:string" use="required">
2250
+ <xs:annotation>
2251
+ <xs:documentation>integer (Variable will be incremented or decremented)</xs:documentation>
2252
+ </xs:annotation>
2253
+ </xs:attribute>
2254
+ </xs:complexType>
2255
+ <xs:complexType name="adjustdatetime">
2256
+ <xs:sequence />
2257
+ <xs:attribute name="datetime" type="xs:string" use="required">
2258
+ <xs:annotation>
2259
+ <xs:documentation>string (Date time in the specified format. The format must be: 'yyyyMMddhhmmss')</xs:documentation>
2260
+ </xs:annotation>
2261
+ </xs:attribute>
2262
+ </xs:complexType>
2263
+ <xs:complexType name="getdatetime">
2264
+ <xs:sequence />
2265
+ <xs:attribute name="format" type="xs:string" use="required">
2266
+ <xs:annotation>
2267
+ <xs:documentation>string (The format for the captured date time. yy:year with four digits; y:year with two digits; M:month with two digits; d:day with two digits; h:hour with two digits; m:minute with two digits; second:second with two digits. The other characters will be inserted automatically. Ex: "Date: dd/MM/yy")</xs:documentation>
2268
+ </xs:annotation>
2269
+ </xs:attribute>
2270
+ <xs:attribute name="variabledestination" type="xs:string" use="required">
2271
+ <xs:annotation>
2272
+ <xs:documentation>string (Variable where the formatted date time value will be stored)</xs:documentation>
2273
+ </xs:annotation>
2274
+ </xs:attribute>
2275
+ </xs:complexType>
2276
+ <xs:complexType name="checkpaperout">
2277
+ <xs:sequence />
2278
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2279
+ <xs:annotation>
2280
+ <xs:documentation>integer (0:paper out 1:it has paper)</xs:documentation>
2281
+ </xs:annotation>
2282
+ </xs:attribute>
2283
+ </xs:complexType>
2284
+ <xs:complexType name="mathematicaloperation">
2285
+ <xs:sequence />
2286
+ <xs:attribute name="firstvalue" type="xs:string" use="required">
2287
+ <xs:annotation>
2288
+ <xs:documentation>string (float) or integer (The first value of the mathematical operation)</xs:documentation>
2289
+ </xs:annotation>
2290
+ </xs:attribute>
2291
+ <xs:attribute name="operator" type="xs:string" use="required">
2292
+ <xs:annotation>
2293
+ <xs:documentation>string (Operator can be: +,-,*,/,%,^)</xs:documentation>
2294
+ </xs:annotation>
2295
+ </xs:attribute>
2296
+ <xs:attribute name="secondvalue" type="xs:string" use="required">
2297
+ <xs:annotation>
2298
+ <xs:documentation>string (float) or integer (The second value of the mathematical operation)</xs:documentation>
2299
+ </xs:annotation>
2300
+ </xs:attribute>
2301
+ <xs:attribute name="variabledestination" type="xs:string" use="required">
2302
+ <xs:annotation>
2303
+ <xs:documentation>string (float) or integer (Variable where the result of mathematical operation between firstvalue and secondvalue will be stored)</xs:documentation>
2304
+ </xs:annotation>
2305
+ </xs:attribute>
2306
+ </xs:complexType>
2307
+ <xs:complexType name="joinstring">
2308
+ <xs:sequence />
2309
+ <xs:attribute name="firstvalue" type="xs:string" use="required">
2310
+ <xs:annotation>
2311
+ <xs:documentation>string (The value that will be joined with secondvalue)</xs:documentation>
2312
+ </xs:annotation>
2313
+ </xs:attribute>
2314
+ <xs:attribute name="secondvalue" type="xs:string" use="required">
2315
+ <xs:annotation>
2316
+ <xs:documentation>string (The value that will be joined with firstvalue)</xs:documentation>
2317
+ </xs:annotation>
2318
+ </xs:attribute>
2319
+ <xs:attribute name="variabledestination" type="xs:string" use="required">
2320
+ <xs:annotation>
2321
+ <xs:documentation>string (Variable where the result of the joining of the firstvalue with secondvalue will be stored)</xs:documentation>
2322
+ </xs:annotation>
2323
+ </xs:attribute>
2324
+ </xs:complexType>
2325
+ <xs:complexType name="deletefile">
2326
+ <xs:sequence />
2327
+ <xs:attribute name="filename" type="xs:string" use="required">
2328
+ <xs:annotation>
2329
+ <xs:documentation>string (Name of the file that will be deleted of the terminal's memory)</xs:documentation>
2330
+ </xs:annotation>
2331
+ </xs:attribute>
2332
+ </xs:complexType>
2333
+ <xs:complexType name="printbarcode">
2334
+ <xs:sequence />
2335
+ <xs:attribute name="number" type="xs:string" use="required">
2336
+ <xs:annotation>
2337
+ <xs:documentation>string (Number of the barcode that will be printed)</xs:documentation>
2338
+ </xs:annotation>
2339
+ </xs:attribute>
2340
+ <xs:attribute name="horizontal" type="xs:string" use="required">
2341
+ <xs:annotation>
2342
+ <xs:documentation>integer (Set this parameter to 1 if you want to print the barcode on horizontal position.)</xs:documentation>
2343
+ </xs:annotation>
2344
+ </xs:attribute>
2345
+ </xs:complexType>
2346
+ <xs:complexType name="waitkeytimeout">
2347
+ <xs:sequence />
2348
+ <xs:attribute name="seconds" type="xs:string" use="required">
2349
+ <xs:annotation>
2350
+ <xs:documentation>integer (Time that the instruction will wait)</xs:documentation>
2351
+ </xs:annotation>
2352
+ </xs:attribute>
2353
+ </xs:complexType>
2354
+ <xs:complexType name="execute">
2355
+ <xs:sequence />
2356
+ <xs:attribute name="filename" type="xs:string" use="required">
2357
+ <xs:annotation>
2358
+ <xs:documentation>string (Name of the compiled PosXml application that will be executed)</xs:documentation>
2359
+ </xs:annotation>
2360
+ </xs:attribute>
2361
+ </xs:complexType>
2362
+ <xs:complexType name="while">
2363
+ <xs:choice maxOccurs="unbounded">
2364
+ <xs:group ref="comandos" />
2365
+ </xs:choice>
2366
+ <xs:attribute name="variable" type="xs:string" use="required">
2367
+ <xs:annotation>
2368
+ <xs:documentation>string or integer (Variable for comparison)</xs:documentation>
2369
+ </xs:annotation>
2370
+ </xs:attribute>
2371
+ <xs:attribute name="operator" type="xs:string" use="required">
2372
+ <xs:annotation>
2373
+ <xs:documentation>string (Operator can be: lessthan,greaterthan,equalto,notequalto,greaterthanorequalto,lessthanorequalto)</xs:documentation>
2374
+ </xs:annotation>
2375
+ </xs:attribute>
2376
+ <xs:attribute name="value" type="xs:string" use="required">
2377
+ <xs:annotation>
2378
+ <xs:documentation>string or integer (Value for comparison)</xs:documentation>
2379
+ </xs:annotation>
2380
+ </xs:attribute>
2381
+ </xs:complexType>
2382
+ <xs:complexType name="break">
2383
+ <xs:sequence />
2384
+ </xs:complexType>
2385
+ <xs:complexType name="openserialport">
2386
+ <xs:sequence />
2387
+ <xs:attribute name="port" type="xs:string" use="required">
2388
+ <xs:annotation>
2389
+ <xs:documentation>string (The name of the serial port can be: COM1,COM2,COM3,COM4,COM5,COM6)</xs:documentation>
2390
+ </xs:annotation>
2391
+ </xs:attribute>
2392
+ <xs:attribute name="rate" type="xs:string" use="required">
2393
+ <xs:annotation>
2394
+ <xs:documentation>string (Rate of serial port can be: 300,600,1200,2400,4800,9600,19200,38400,57600,115200,12000,14400,28800,33600)</xs:documentation>
2395
+ </xs:annotation>
2396
+ </xs:attribute>
2397
+ <xs:attribute name="configuration" type="xs:string" use="required">
2398
+ <xs:annotation>
2399
+ <xs:documentation>string (The configuration of serial port. can be: A7E1,A7N1,A7O1,A8E1,A8N1,A8O1)</xs:documentation>
2400
+ </xs:annotation>
2401
+ </xs:attribute>
2402
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2403
+ <xs:annotation>
2404
+ <xs:documentation>integer (-2: incorrect configuration parameters; -1 or 0: error in serial port open; greater than 0: handle for the opened serial port)</xs:documentation>
2405
+ </xs:annotation>
2406
+ </xs:attribute>
2407
+ </xs:complexType>
2408
+ <xs:complexType name="readserialport">
2409
+ <xs:sequence />
2410
+ <xs:attribute name="variablehandle" type="xs:string">
2411
+ <xs:annotation>
2412
+ <xs:documentation>integer (Handle for an opened serial port)</xs:documentation>
2413
+ </xs:annotation>
2414
+ </xs:attribute>
2415
+ <xs:attribute name="variablebuffer" type="xs:string">
2416
+ <xs:annotation>
2417
+ <xs:documentation>string (Variable where the captured buffer from serial port will be stored)</xs:documentation>
2418
+ </xs:annotation>
2419
+ </xs:attribute>
2420
+ <xs:attribute name="bytes" type="xs:string">
2421
+ <xs:annotation>
2422
+ <xs:documentation>integer (Quantity of bytes that will be read of the serial port)</xs:documentation>
2423
+ </xs:annotation>
2424
+ </xs:attribute>
2425
+ <xs:attribute name="timeout" type="xs:string">
2426
+ <xs:annotation>
2427
+ <xs:documentation>integer (Time that the instruction will be wait while not receiving any buffer of the serial port)</xs:documentation>
2428
+ </xs:annotation>
2429
+ </xs:attribute>
2430
+ <xs:attribute name="variablereturn" type="xs:string">
2431
+ <xs:annotation>
2432
+ <xs:documentation>integer (-1: timeout; greater than 0: quantity of read bytes)</xs:documentation>
2433
+ </xs:annotation>
2434
+ </xs:attribute>
2435
+ </xs:complexType>
2436
+ <xs:complexType name="writeserialport">
2437
+ <xs:sequence />
2438
+ <xs:attribute name="variablehandle" type="xs:string">
2439
+ <xs:annotation>
2440
+ <xs:documentation>integer (Handle for an opened serial port)</xs:documentation>
2441
+ </xs:annotation>
2442
+ </xs:attribute>
2443
+ <xs:attribute name="buffer" type="xs:string">
2444
+ <xs:annotation>
2445
+ <xs:documentation>string (Buffer that will be written in the serial port)</xs:documentation>
2446
+ </xs:annotation>
2447
+ </xs:attribute>
2448
+ </xs:complexType>
2449
+ <xs:complexType name="closeserialport">
2450
+ <xs:sequence />
2451
+ <xs:attribute name="variablehandle" type="xs:string">
2452
+ <xs:annotation>
2453
+ <xs:documentation>integer (Handle for an opened serial port)</xs:documentation>
2454
+ </xs:annotation>
2455
+ </xs:attribute>
2456
+ </xs:complexType>
2457
+ <xs:complexType name="string.length">
2458
+ <xs:sequence />
2459
+ <xs:attribute name="value" type="xs:string" use="required">
2460
+ <xs:annotation>
2461
+ <xs:documentation>string (String that will be counted)</xs:documentation>
2462
+ </xs:annotation>
2463
+ </xs:attribute>
2464
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2465
+ <xs:annotation>
2466
+ <xs:documentation>integer (Variable where the length of the string will be stored)</xs:documentation>
2467
+ </xs:annotation>
2468
+ </xs:attribute>
2469
+ </xs:complexType>
2470
+ <xs:complexType name="exit">
2471
+ <xs:sequence />
2472
+ </xs:complexType>
2473
+ <xs:complexType name="downloadfile">
2474
+ <xs:sequence />
2475
+ <xs:attribute name="filename" type="xs:string" use="required">
2476
+ <xs:annotation>
2477
+ <xs:documentation>string (The name of the file that will be written in the terminal's memory)</xs:documentation>
2478
+ </xs:annotation>
2479
+ </xs:attribute>
2480
+ <xs:attribute name="remotepath" type="xs:string" use="required">
2481
+ <xs:annotation>
2482
+ <xs:documentation>(string)File name that is registered on WALK Manager</xs:documentation>
2483
+ </xs:annotation>
2484
+ </xs:attribute>
2485
+ <xs:attribute name="variablereturn" type="xs:string">
2486
+ <xs:annotation>
2487
+ <xs:documentation>integer (
2488
+ 2: local file has the same crc of server file,
2489
+ 1: download success,
2490
+ 0: base 64 encode error,
2491
+ -1: file not found or encode error,
2492
+ -2: connection error in buffer send,
2493
+ -3: error in receive of buffer from Walk Server,
2494
+ -4: error in the packet received from Walk Server,
2495
+ -5: error in connection with Walk Server,
2496
+ -6: error in transfer of header or footer,
2497
+ -7: error in send of download complete confirmation,
2498
+ -8: unauthorized serial number)</xs:documentation>
2499
+ </xs:annotation>
2500
+ </xs:attribute>
2501
+ </xs:complexType>
2502
+ <xs:complexType name="readfilebyindex">
2503
+ <xs:sequence />
2504
+ <xs:attribute name="filename" type="xs:string" use="required">
2505
+ <xs:annotation>
2506
+ <xs:documentation>string (Name of file that will be opened)</xs:documentation>
2507
+ </xs:annotation>
2508
+ </xs:attribute>
2509
+ <xs:attribute name="index" type="xs:string" use="required">
2510
+ <xs:annotation>
2511
+ <xs:documentation>integer (The index of a key in the file. This index begin in 0 and increases in accordance to the quantity of items inserted in the file)</xs:documentation>
2512
+ </xs:annotation>
2513
+ </xs:attribute>
2514
+ <xs:attribute name="variablekey" type="xs:string" use="required">
2515
+ <xs:annotation>
2516
+ <xs:documentation>string (Variable where the name of the key specified in index will be stored)</xs:documentation>
2517
+ </xs:annotation>
2518
+ </xs:attribute>
2519
+ <xs:attribute name="variablevalue" type="xs:string" use="required">
2520
+ <xs:annotation>
2521
+ <xs:documentation>string (Variable where the value of the key specified in index will be stored)</xs:documentation>
2522
+ </xs:annotation>
2523
+ </xs:attribute>
2524
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2525
+ <xs:annotation>
2526
+ <xs:documentation>integer (0: item not found, 1: item found)</xs:documentation>
2527
+ </xs:annotation>
2528
+ </xs:attribute>
2529
+ </xs:complexType>
2530
+ <xs:complexType name="diffdatetime">
2531
+ <xs:sequence />
2532
+ <xs:attribute name="firstdatetime" type="xs:string" use="required">
2533
+ <xs:annotation>
2534
+ <xs:documentation>string (Date time in specified format. The format must be: 'yyyyMMddhhmmss'. This date must be greater than seconddatetime)</xs:documentation>
2535
+ </xs:annotation>
2536
+ </xs:attribute>
2537
+ <xs:attribute name="seconddatetime" type="xs:string" use="required">
2538
+ <xs:annotation>
2539
+ <xs:documentation>string (Date time in specified format. The format must be: 'yyyyMMddhhmmss')</xs:documentation>
2540
+ </xs:annotation>
2541
+ </xs:attribute>
2542
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2543
+ <xs:annotation>
2544
+ <xs:documentation>integer (The difference in seconds between two specified dates)</xs:documentation>
2545
+ </xs:annotation>
2546
+ </xs:attribute>
2547
+ </xs:complexType>
2548
+ <xs:complexType name="displaybitmap">
2549
+ <xs:sequence />
2550
+ <xs:attribute name="filename" type="xs:string" use="required">
2551
+ <xs:annotation>
2552
+ <xs:documentation>string (The file name of the bitmap that will be shown in the terminal's display)</xs:documentation>
2553
+ </xs:annotation>
2554
+ </xs:attribute>
2555
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2556
+ <xs:annotation>
2557
+ <xs:documentation>integer (1: bitmap display success; 0: bitmap file not found; -1: invalid bitmap size; -2: bitmap is not monochrome)</xs:documentation>
2558
+ </xs:annotation>
2559
+ </xs:attribute>
2560
+ </xs:complexType>
2561
+ <xs:complexType name="printbitmap">
2562
+ <xs:sequence />
2563
+ <xs:attribute name="filename" type="xs:string" use="required">
2564
+ <xs:annotation>
2565
+ <xs:documentation>string (The file name of the bitmap that will be printed)</xs:documentation>
2566
+ </xs:annotation>
2567
+ </xs:attribute>
2568
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2569
+ <xs:annotation>
2570
+ <xs:documentation>integer (1: bitmap print success; 0: bitmap file not found; -1: invalid bitmap size; -2: bitmap is not monochrome)</xs:documentation>
2571
+ </xs:annotation>
2572
+ </xs:attribute>
2573
+ </xs:complexType>
2574
+ <xs:complexType name="readkey">
2575
+ <xs:sequence />
2576
+ <xs:attribute name="miliseconds" type="xs:string" use="required">
2577
+ <xs:annotation>
2578
+ <xs:documentation>integer (Time that the instruction will wait)</xs:documentation>
2579
+ </xs:annotation>
2580
+ </xs:attribute>
2581
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2582
+ <xs:annotation>
2583
+ <xs:documentation>string (Key pressed by user. The default keys are: KEY_0,KEY_1,KEY_2,KEY_3,KEY_4,KEY_5,KEY_6,KEY_7,KEY_8,KEY_9,KEY_POUND,KEY_STAR,KEY_CLEAR,KEY_CANCEL,KEY_ENTER. The optional keys can be: of KEY_EXTRA1 up to KEY_EXTRA99.)</xs:documentation>
2584
+ </xs:annotation>
2585
+ </xs:attribute>
2586
+ </xs:complexType>
2587
+ <xs:complexType name="unzipfile">
2588
+ <xs:sequence />
2589
+ <xs:attribute name="filename" type="xs:string" use="required">
2590
+ <xs:annotation>
2591
+ <xs:documentation>string (The filename of the zipped file)</xs:documentation>
2592
+ </xs:annotation>
2593
+ </xs:attribute>
2594
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2595
+ <xs:annotation>
2596
+ <xs:documentation>integer (0: unzip success, -1: unzip error)</xs:documentation>
2597
+ </xs:annotation>
2598
+ </xs:attribute>
2599
+ </xs:complexType>
2600
+ <xs:complexType name="else">
2601
+ <xs:sequence />
2602
+ </xs:complexType>
2603
+ <xs:complexType name="integerconvert">
2604
+ <xs:sequence />
2605
+ <xs:attribute name="number" type="xs:string" use="required">
2606
+ <xs:annotation>
2607
+ <xs:documentation>integer (Number that will be converted.)</xs:documentation>
2608
+ </xs:annotation>
2609
+ </xs:attribute>
2610
+ <xs:attribute name="base" type="xs:string" use="required">
2611
+ <xs:annotation>
2612
+ <xs:documentation>integer (2:binary, 8:octal, 16:hexadecimal)</xs:documentation>
2613
+ </xs:annotation>
2614
+ </xs:attribute>
2615
+ <xs:attribute name="sizereturn" type="xs:string" use="required">
2616
+ <xs:annotation>
2617
+ <xs:documentation>integer (Size of result. If the converted number is less, it will be padded with zeros on the left.)</xs:documentation>
2618
+ </xs:annotation>
2619
+ </xs:attribute>
2620
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2621
+ <xs:annotation>
2622
+ <xs:documentation>string (Variable where the converted number will be stored)</xs:documentation>
2623
+ </xs:annotation>
2624
+ </xs:attribute>
2625
+ </xs:complexType>
2626
+ <xs:complexType name="iso8583.initfieldtable">
2627
+ <xs:sequence />
2628
+ <xs:attribute name="filename" type="xs:string" use="required">
2629
+ <xs:annotation>
2630
+ <xs:documentation>string (Name of the file that contains the format and size of all 128 field of ISO8583 especification.)</xs:documentation>
2631
+ </xs:annotation>
2632
+ </xs:attribute>
2633
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2634
+ <xs:annotation>
2635
+ <xs:documentation>integer (0: table initialized, -802: error in table initialize)</xs:documentation>
2636
+ </xs:annotation>
2637
+ </xs:attribute>
2638
+ </xs:complexType>
2639
+ <xs:complexType name="iso8583.initmessage">
2640
+ <xs:sequence />
2641
+ <xs:attribute name="format" type="xs:string" use="required">
2642
+ <xs:annotation>
2643
+ <xs:documentation>string (Message format. Can be: "ASCII" or "BCD")</xs:documentation>
2644
+ </xs:annotation>
2645
+ </xs:attribute>
2646
+ <xs:attribute name="id" type="xs:string" use="required">
2647
+ <xs:annotation>
2648
+ <xs:documentation>string (Message identifier with a four digits, for example: "0200" ou "0400")</xs:documentation>
2649
+ </xs:annotation>
2650
+ </xs:attribute>
2651
+ <xs:attribute name="variablemessage" type="xs:string" use="required">
2652
+ <xs:annotation>
2653
+ <xs:documentation>string (Variable where the ISO8583 message will be stored)</xs:documentation>
2654
+ </xs:annotation>
2655
+ </xs:attribute>
2656
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2657
+ <xs:annotation>
2658
+ <xs:documentation>integer (0: message initialized, -803: buffer overrun, -801: invalid parameter)</xs:documentation>
2659
+ </xs:annotation>
2660
+ </xs:attribute>
2661
+ </xs:complexType>
2662
+ <xs:complexType name="iso8583.analyzemessage">
2663
+ <xs:sequence />
2664
+ <xs:attribute name="format" type="xs:string" use="required">
2665
+ <xs:annotation>
2666
+ <xs:documentation>string (Message format. Can be: "ASCII" or "BCD")</xs:documentation>
2667
+ </xs:annotation>
2668
+ </xs:attribute>
2669
+ <xs:attribute name="size" type="xs:string" use="required">
2670
+ <xs:annotation>
2671
+ <xs:documentation>integer (Message size)</xs:documentation>
2672
+ </xs:annotation>
2673
+ </xs:attribute>
2674
+ <xs:attribute name="variablemessage" type="xs:string" use="required">
2675
+ <xs:annotation>
2676
+ <xs:documentation>string (Variable where the message is stored)</xs:documentation>
2677
+ </xs:annotation>
2678
+ </xs:attribute>
2679
+ <xs:attribute name="variableid" type="xs:string" use="required">
2680
+ <xs:annotation>
2681
+ <xs:documentation>string (Variable where the message id will be stored)</xs:documentation>
2682
+ </xs:annotation>
2683
+ </xs:attribute>
2684
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2685
+ <xs:annotation>
2686
+ <xs:documentation>integer (0: message analyzed, -806: error in message analyze)</xs:documentation>
2687
+ </xs:annotation>
2688
+ </xs:attribute>
2689
+ </xs:complexType>
2690
+ <xs:complexType name="iso8583.endmessage">
2691
+ <xs:sequence />
2692
+ <xs:attribute name="variablesize" type="xs:string" use="required">
2693
+ <xs:annotation>
2694
+ <xs:documentation>integer (Variable where the message size will be stored)</xs:documentation>
2695
+ </xs:annotation>
2696
+ </xs:attribute>
2697
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2698
+ <xs:annotation>
2699
+ <xs:documentation>integer (0: message finished, -803: buffer overrun, -802: function error)</xs:documentation>
2700
+ </xs:annotation>
2701
+ </xs:attribute>
2702
+ </xs:complexType>
2703
+ <xs:complexType name="iso8583.putfield">
2704
+ <xs:sequence />
2705
+ <xs:attribute name="fieldnumber" type="xs:string" use="required">
2706
+ <xs:annotation>
2707
+ <xs:documentation>integer (Number of field that will be put in the message. Can be of 2 to 128)</xs:documentation>
2708
+ </xs:annotation>
2709
+ </xs:attribute>
2710
+ <xs:attribute name="type" type="xs:string" use="required">
2711
+ <xs:annotation>
2712
+ <xs:documentation>string (Type of field that will be put in the message. Can be : "string" or "integer")</xs:documentation>
2713
+ </xs:annotation>
2714
+ </xs:attribute>
2715
+ <xs:attribute name="value" type="xs:string" use="required">
2716
+ <xs:annotation>
2717
+ <xs:documentation>string or integer (Field value)</xs:documentation>
2718
+ </xs:annotation>
2719
+ </xs:attribute>
2720
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2721
+ <xs:annotation>
2722
+ <xs:documentation>integer (0: success, -801: invalid parameter, -802: function error , -803: buffer overrun, -804: field error)</xs:documentation>
2723
+ </xs:annotation>
2724
+ </xs:attribute>
2725
+ </xs:complexType>
2726
+ <xs:complexType name="iso8583.getfield">
2727
+ <xs:sequence />
2728
+ <xs:attribute name="fieldnumber" type="xs:string" use="required">
2729
+ <xs:annotation>
2730
+ <xs:documentation>integer (Number of field that will be got from the message. Can be of 2 to 128)</xs:documentation>
2731
+ </xs:annotation>
2732
+ </xs:attribute>
2733
+ <xs:attribute name="type" type="xs:string" use="required">
2734
+ <xs:annotation>
2735
+ <xs:documentation>string (Type of field that will be got from the message. Can be : "string" or "integer")</xs:documentation>
2736
+ </xs:annotation>
2737
+ </xs:attribute>
2738
+ <xs:attribute name="variablevalue" type="xs:string" use="required">
2739
+ <xs:annotation>
2740
+ <xs:documentation>string or integer (Variable where the field value will be stored)</xs:documentation>
2741
+ </xs:annotation>
2742
+ </xs:attribute>
2743
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2744
+ <xs:annotation>
2745
+ <xs:documentation>integer (0: success, -801: invalid parameter, -802: function error , -803: buffer overrun, -805: no field, -806: msg error)</xs:documentation>
2746
+ </xs:annotation>
2747
+ </xs:attribute>
2748
+ </xs:complexType>
2749
+ <xs:complexType name="string.charat">
2750
+ <xs:sequence />
2751
+ <xs:attribute name="string" type="xs:string" use="required">
2752
+ <xs:annotation>
2753
+ <xs:documentation>string (A string)</xs:documentation>
2754
+ </xs:annotation>
2755
+ </xs:attribute>
2756
+ <xs:attribute name="character_index" type="xs:string" use="required">
2757
+ <xs:annotation>
2758
+ <xs:documentation>integer (A number that specifies the index position in the string)</xs:documentation>
2759
+ </xs:annotation>
2760
+ </xs:attribute>
2761
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2762
+ <xs:annotation>
2763
+ <xs:documentation>string (Character from specified position)</xs:documentation>
2764
+ </xs:annotation>
2765
+ </xs:attribute>
2766
+ </xs:complexType>
2767
+ <xs:complexType name="string.trim">
2768
+ <xs:sequence />
2769
+ <xs:attribute name="string" type="xs:string" use="required">
2770
+ <xs:annotation>
2771
+ <xs:documentation>string (A string)</xs:documentation>
2772
+ </xs:annotation>
2773
+ </xs:attribute>
2774
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2775
+ <xs:annotation>
2776
+ <xs:documentation>string (A string without leading and trailing spaces)</xs:documentation>
2777
+ </xs:annotation>
2778
+ </xs:attribute>
2779
+ </xs:complexType>
2780
+ <xs:complexType name="string.find">
2781
+ <xs:sequence>
2782
+ </xs:sequence>
2783
+ <xs:attribute name="string" type="xs:string" use="required">
2784
+ <xs:annotation>
2785
+ <xs:documentation>string (The string to search)</xs:documentation>
2786
+ </xs:annotation>
2787
+ </xs:attribute>
2788
+ <xs:attribute name="substring" type="xs:string" use="required">
2789
+ <xs:annotation>
2790
+ <xs:documentation>string (The value to search for in the string)</xs:documentation>
2791
+ </xs:annotation>
2792
+ </xs:attribute>
2793
+ <xs:attribute name="start" type="xs:string" use="required">
2794
+ <xs:annotation>
2795
+ <xs:documentation>integer (A number that specifies the index position in the string)</xs:documentation>
2796
+ </xs:annotation>
2797
+ </xs:attribute>
2798
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2799
+ <xs:annotation>
2800
+ <xs:documentation>integer (-1: substring not found, > -1: zero-based index into substring found)</xs:documentation>
2801
+ </xs:annotation>
2802
+ </xs:attribute>
2803
+ </xs:complexType>
2804
+ <xs:complexType name="string.replace">
2805
+ <xs:sequence />
2806
+ <xs:attribute name="original_string" type="xs:string" use="required">
2807
+ <xs:annotation>
2808
+ <xs:documentation>string (The original string)</xs:documentation>
2809
+ </xs:annotation>
2810
+ </xs:attribute>
2811
+ <xs:attribute name="old_substring" type="xs:string" use="required">
2812
+ <xs:annotation>
2813
+ <xs:documentation>string (The value that is going to be replaced)</xs:documentation>
2814
+ </xs:annotation>
2815
+ </xs:attribute>
2816
+ <xs:attribute name="new_substring" type="xs:string" use="required">
2817
+ <xs:annotation>
2818
+ <xs:documentation>string (The value that will replace oldvalue)</xs:documentation>
2819
+ </xs:annotation>
2820
+ </xs:attribute>
2821
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2822
+ <xs:annotation>
2823
+ <xs:documentation>string (Variable where the original_string with old_substring replaced will be stored)</xs:documentation>
2824
+ </xs:annotation>
2825
+ </xs:attribute>
2826
+ </xs:complexType>
2827
+ <xs:complexType name="string.elements">
2828
+ <xs:sequence />
2829
+ <xs:attribute name="string" type="xs:string" use="required">
2830
+ <xs:annotation>
2831
+ <xs:documentation>string (A string that will be splitted)</xs:documentation>
2832
+ </xs:annotation>
2833
+ </xs:attribute>
2834
+ <xs:attribute name="delimiter" type="xs:string" use="required">
2835
+ <xs:annotation>
2836
+ <xs:documentation>string (The string value to search for in the string. If this string is found, it will be used to split the specified string in several elements)</xs:documentation>
2837
+ </xs:annotation>
2838
+ </xs:attribute>
2839
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2840
+ <xs:annotation>
2841
+ <xs:documentation>integer (The number of elements)</xs:documentation>
2842
+ </xs:annotation>
2843
+ </xs:attribute>
2844
+ </xs:complexType>
2845
+ <xs:complexType name="string.insertat">
2846
+ <xs:sequence />
2847
+ <xs:attribute name="string" type="xs:string" use="required">
2848
+ <xs:annotation>
2849
+ <xs:documentation>string (A string that will be splitted)</xs:documentation>
2850
+ </xs:annotation>
2851
+ </xs:attribute>
2852
+ <xs:attribute name="string_to_be_inserted" type="xs:string" use="required">
2853
+ <xs:annotation>
2854
+ <xs:documentation>string (The string to be inserted into the original string)</xs:documentation>
2855
+ </xs:annotation>
2856
+ </xs:attribute>
2857
+ <xs:attribute name="element_index" type="xs:string" use="required">
2858
+ <xs:annotation>
2859
+ <xs:documentation>integer (A number that specifies the index position of an element)</xs:documentation>
2860
+ </xs:annotation>
2861
+ </xs:attribute>
2862
+ <xs:attribute name="delimiter" type="xs:string" use="required">
2863
+ <xs:annotation>
2864
+ <xs:documentation>string (The string value to search for in the string. If this string is found, it will be used to split the specified string in several elements)</xs:documentation>
2865
+ </xs:annotation>
2866
+ </xs:attribute>
2867
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2868
+ <xs:annotation>
2869
+ <xs:documentation>string (The string with the specified element inserted)</xs:documentation>
2870
+ </xs:annotation>
2871
+ </xs:attribute>
2872
+ </xs:complexType>
2873
+ <xs:complexType name="string.replaceat">
2874
+ <xs:sequence />
2875
+ <xs:attribute name="string" type="xs:string" use="required">
2876
+ <xs:annotation>
2877
+ <xs:documentation>string (A string that will be splitted)</xs:documentation>
2878
+ </xs:annotation>
2879
+ </xs:attribute>
2880
+ <xs:attribute name="new_element" type="xs:string" use="required">
2881
+ <xs:annotation>
2882
+ <xs:documentation>string (The string to be inserted into the original string)</xs:documentation>
2883
+ </xs:annotation>
2884
+ </xs:attribute>
2885
+ <xs:attribute name="element_index" type="xs:string" use="required">
2886
+ <xs:annotation>
2887
+ <xs:documentation>integer (A number that specifies the index position of an element)</xs:documentation>
2888
+ </xs:annotation>
2889
+ </xs:attribute>
2890
+ <xs:attribute name="delimiter" type="xs:string" use="required">
2891
+ <xs:annotation>
2892
+ <xs:documentation>string (The string value to search for in the string. If this string is found, it will be used to split the specified string in several elements)</xs:documentation>
2893
+ </xs:annotation>
2894
+ </xs:attribute>
2895
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2896
+ <xs:annotation>
2897
+ <xs:documentation>string (The string with the specified element replaced)</xs:documentation>
2898
+ </xs:annotation>
2899
+ </xs:attribute>
2900
+ </xs:complexType>
2901
+ <xs:complexType name="string.elementat">
2902
+ <xs:sequence />
2903
+ <xs:attribute name="string" type="xs:string" use="required">
2904
+ <xs:annotation>
2905
+ <xs:documentation>string (A string that will be splitted)</xs:documentation>
2906
+ </xs:annotation>
2907
+ </xs:attribute>
2908
+ <xs:attribute name="element_index" type="xs:string" use="required">
2909
+ <xs:annotation>
2910
+ <xs:documentation>integer (A number that specifies the index position of an element)</xs:documentation>
2911
+ </xs:annotation>
2912
+ </xs:attribute>
2913
+ <xs:attribute name="delimiter" type="xs:string" use="required">
2914
+ <xs:annotation>
2915
+ <xs:documentation>string (The string value to search for in the string. If this string is found, it will be used to split the specified string in several elements)</xs:documentation>
2916
+ </xs:annotation>
2917
+ </xs:attribute>
2918
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2919
+ <xs:annotation>
2920
+ <xs:documentation>string (The specified element)</xs:documentation>
2921
+ </xs:annotation>
2922
+ </xs:attribute>
2923
+ </xs:complexType>
2924
+ <xs:complexType name="string.removeat">
2925
+ <xs:sequence />
2926
+ <xs:attribute name="string" type="xs:string" use="required">
2927
+ <xs:annotation>
2928
+ <xs:documentation>string (A string that will be splitted)</xs:documentation>
2929
+ </xs:annotation>
2930
+ </xs:attribute>
2931
+ <xs:attribute name="element_index" type="xs:string" use="required">
2932
+ <xs:annotation>
2933
+ <xs:documentation>integer (A number that specifies the index position of an element)</xs:documentation>
2934
+ </xs:annotation>
2935
+ </xs:attribute>
2936
+ <xs:attribute name="delimiter" type="xs:string" use="required">
2937
+ <xs:annotation>
2938
+ <xs:documentation>string (The string value to search for in the string. If this string is found, it will be used to split the specified string in several elements)</xs:documentation>
2939
+ </xs:annotation>
2940
+ </xs:attribute>
2941
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2942
+ <xs:annotation>
2943
+ <xs:documentation>string (The string with the specified element replaced)</xs:documentation>
2944
+ </xs:annotation>
2945
+ </xs:attribute>
2946
+ </xs:complexType>
2947
+ <xs:complexType name="string.substring">
2948
+ <xs:sequence />
2949
+ <xs:attribute name="string" type="xs:string" use="required">
2950
+ <xs:annotation>
2951
+ <xs:documentation>string (A string that will be splitted)</xs:documentation>
2952
+ </xs:annotation>
2953
+ </xs:attribute>
2954
+ <xs:attribute name="start" type="xs:string" use="required">
2955
+ <xs:annotation>
2956
+ <xs:documentation>integer (A number that specifies the index position in the string)</xs:documentation>
2957
+ </xs:annotation>
2958
+ </xs:attribute>
2959
+ <xs:attribute name="length" type="xs:string" use="required">
2960
+ <xs:annotation>
2961
+ <xs:documentation>integer (Specifies the length of the new string)</xs:documentation>
2962
+ </xs:annotation>
2963
+ </xs:attribute>
2964
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2965
+ <xs:annotation>
2966
+ <xs:documentation>string (The new string returned from the function)</xs:documentation>
2967
+ </xs:annotation>
2968
+ </xs:attribute>
2969
+ </xs:complexType>
2970
+ <xs:complexType name="network.send">
2971
+ <xs:sequence />
2972
+ <xs:attribute name="buffer" type="xs:string" use="required">
2973
+ <xs:annotation>
2974
+ <xs:documentation>string (The buffer that will be sended to host)</xs:documentation>
2975
+ </xs:annotation>
2976
+ </xs:attribute>
2977
+ <xs:attribute name="size" type="xs:string" use="required">
2978
+ <xs:annotation>
2979
+ <xs:documentation>integer (The size of buffer that will be sended)</xs:documentation>
2980
+ </xs:annotation>
2981
+ </xs:attribute>
2982
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
2983
+ <xs:annotation>
2984
+ <xs:documentation>integer (1: success, 0: send buffer error)</xs:documentation>
2985
+ </xs:annotation>
2986
+ </xs:attribute>
2987
+ </xs:complexType>
2988
+ <xs:complexType name="network.receive">
2989
+ <xs:sequence />
2990
+ <xs:attribute name="variablebuffer" type="xs:string" use="required">
2991
+ <xs:annotation>
2992
+ <xs:documentation>string (Variable that will receive the buffer from connected host)</xs:documentation>
2993
+ </xs:annotation>
2994
+ </xs:attribute>
2995
+ <xs:attribute name="maxsize" type="xs:string" use="required">
2996
+ <xs:annotation>
2997
+ <xs:documentation>integer (The size of buffer that we want to receive)</xs:documentation>
2998
+ </xs:annotation>
2999
+ </xs:attribute>
3000
+ <xs:attribute name="variablereceivedbytes" type="xs:string" use="required">
3001
+ <xs:annotation>
3002
+ <xs:documentation>integer (The quantity of bytes received from host)</xs:documentation>
3003
+ </xs:annotation>
3004
+ </xs:attribute>
3005
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3006
+ <xs:annotation>
3007
+ <xs:documentation>integer (1: success, 0: receive buffer error)</xs:documentation>
3008
+ </xs:annotation>
3009
+ </xs:attribute>
3010
+ </xs:complexType>
3011
+ <xs:complexType name="network.wifi_scan">
3012
+ <xs:sequence />
3013
+ <xs:attribute name="timeout" type="xs:string" use="required">
3014
+ <xs:annotation>
3015
+ <xs:documentation>integer (Variable that defines, in miliseconds, the timeout to to scan for APs)</xs:documentation>
3016
+ </xs:annotation>
3017
+ </xs:attribute>
3018
+ <xs:attribute name="aps" type="xs:string" use="required">
3019
+ <xs:annotation>
3020
+ <xs:documentation>string (Scan result variable with the format "SSID="Authentication"\n...")</xs:documentation>
3021
+ </xs:annotation>
3022
+ </xs:attribute>
3023
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3024
+ <xs:annotation>
3025
+ <xs:documentation>integer (-1: Interface not found; -2: Problem to search, maybe driver is not ready yet; -3: Not Supported; >= 0: Success, number of APs up to 25 results)</xs:documentation>
3026
+ </xs:annotation>
3027
+ </xs:attribute>
3028
+ </xs:complexType>
3029
+ <xs:complexType name="system.restart">
3030
+ <xs:sequence>
3031
+ </xs:sequence>
3032
+ </xs:complexType>
3033
+ <xs:complexType name="filesystem.filesize">
3034
+ <xs:sequence />
3035
+ <xs:attribute name="filename" type="xs:string" use="required">
3036
+ <xs:annotation>
3037
+ <xs:documentation>string (Name of a file)</xs:documentation>
3038
+ </xs:annotation>
3039
+ </xs:attribute>
3040
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3041
+ <xs:annotation>
3042
+ <xs:documentation>integer (Size of file in bytes)</xs:documentation>
3043
+ </xs:annotation>
3044
+ </xs:attribute>
3045
+ </xs:complexType>
3046
+ <xs:complexType name="filesystem.space">
3047
+ <xs:sequence />
3048
+ <xs:attribute name="dir" type="xs:string" use="required">
3049
+ <xs:annotation>
3050
+ <xs:documentation>string (A directory. Can be: 'I:' or 'F:')</xs:documentation>
3051
+ </xs:annotation>
3052
+ </xs:attribute>
3053
+ <xs:attribute name="type" type="xs:string" use="required">
3054
+ <xs:annotation>
3055
+ <xs:documentation>string (Information about the terminal's memory. Can be: 'free','used','total' ou 'countfiles')</xs:documentation>
3056
+ </xs:annotation>
3057
+ </xs:attribute>
3058
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3059
+ <xs:annotation>
3060
+ <xs:documentation>integer (Space in bytes or number of files)</xs:documentation>
3061
+ </xs:annotation>
3062
+ </xs:attribute>
3063
+ </xs:complexType>
3064
+ <xs:complexType name="filesystem.listfiles">
3065
+ <xs:sequence />
3066
+ <xs:attribute name="dir" type="xs:string" use="required">
3067
+ <xs:annotation>
3068
+ <xs:documentation>string (A directory. Can be: 'I:' or 'F:')</xs:documentation>
3069
+ </xs:annotation>
3070
+ </xs:attribute>
3071
+ <xs:attribute name="listfilename" type="xs:string" use="required">
3072
+ <xs:annotation>
3073
+ <xs:documentation>string (Name of file that will be saved with the list of files in the specified directory.)</xs:documentation>
3074
+ </xs:annotation>
3075
+ </xs:attribute>
3076
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3077
+ <xs:annotation>
3078
+ <xs:documentation>inteiro (-1: empty directory, 0: list file saved)</xs:documentation>
3079
+ </xs:annotation>
3080
+ </xs:attribute>
3081
+ </xs:complexType>
3082
+ <xs:complexType name="filesystem.renamefile">
3083
+ <xs:sequence />
3084
+ <xs:attribute name="oldname" type="xs:string" use="required">
3085
+ <xs:annotation>
3086
+ <xs:documentation>string (Name of the file on the device's memory).</xs:documentation>
3087
+ </xs:annotation>
3088
+ </xs:attribute>
3089
+ <xs:attribute name="newname" type="xs:string" use="required">
3090
+ <xs:annotation>
3091
+ <xs:documentation>string (New name for this file)</xs:documentation>
3092
+ </xs:annotation>
3093
+ </xs:attribute>
3094
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3095
+ <xs:annotation>
3096
+ <xs:documentation>inteiro
3097
+ 0: OK, file renamed.
3098
+ -1: File does not exist.
3099
+ </xs:documentation>
3100
+ </xs:annotation>
3101
+ </xs:attribute>
3102
+ </xs:complexType>
3103
+ <xs:complexType name="network.cloudwalkhandshake">
3104
+ <xs:sequence />
3105
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3106
+ <xs:annotation>
3107
+ <xs:documentation>Variable which will store the result of the operation, where:
3108
+ 1: Success.
3109
+ 0: Failed.(integer).
3110
+ </xs:documentation>
3111
+ </xs:annotation>
3112
+ </xs:attribute>
3113
+ </xs:complexType>
3114
+ <xs:complexType name="xml.getelement">
3115
+ <xs:sequence />
3116
+ <xs:attribute name="filename" type="xs:string" use="required">
3117
+ <xs:annotation>
3118
+ <xs:documentation>Name of the file thats is saved on terminal's memory(string).</xs:documentation>
3119
+ </xs:annotation>
3120
+ </xs:attribute>
3121
+ <xs:attribute name="parentnode" type="xs:string" use="required">
3122
+ <xs:annotation>
3123
+ <xs:documentation>Name of the 'root' tag we're looking for(string).</xs:documentation>
3124
+ </xs:annotation>
3125
+ </xs:attribute>
3126
+ <xs:attribute name="childnode" type="xs:string" use="required">
3127
+ <xs:annotation>
3128
+ <xs:documentation>Name of the 'child' node that we're looking for(string).</xs:documentation>
3129
+ </xs:annotation>
3130
+ </xs:attribute>
3131
+ <xs:attribute name="variablevalue" type="xs:string" use="required">
3132
+ <xs:annotation>
3133
+ <xs:documentation>Variable that will store the content of the 'child' node, in case of successful(string).</xs:documentation>
3134
+ </xs:annotation>
3135
+ </xs:attribute>
3136
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3137
+ <xs:annotation>
3138
+ <xs:documentation>Variable that will store the result of the command, where: 1: Command executed successfully. 0: Node 'root', node 'child' or value of the 'child' node was not found in the xml. -1: Error trying to open the xml file. -2: Error parsing the xml file. (integer) </xs:documentation>
3139
+ </xs:annotation>
3140
+ </xs:attribute>
3141
+ </xs:complexType>
3142
+ <xs:complexType name="json.getelement">
3143
+ <xs:sequence />
3144
+ <xs:attribute name="filename" type="xs:string" use="required">
3145
+ <xs:annotation>
3146
+ <xs:documentation>Name of the file thats is saved on terminal's memory(string).</xs:documentation>
3147
+ </xs:annotation>
3148
+ </xs:attribute>
3149
+ <xs:attribute name="jsonstring" type="xs:string" use="required">
3150
+ <xs:annotation>
3151
+ <xs:documentation>Name of the json string we're looking for(string).</xs:documentation>
3152
+ </xs:annotation>
3153
+ </xs:attribute>
3154
+ <xs:attribute name="jsonvalue" type="xs:string" use="required">
3155
+ <xs:annotation>
3156
+ <xs:documentation>Variable that will store the content of the json value, in case of successful(string).</xs:documentation>
3157
+ </xs:annotation>
3158
+ </xs:attribute>
3159
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3160
+ <xs:annotation>
3161
+ <xs:documentation> Variable that will store the result of the command, where: 1: Command executed successfully. 0: json string was not found on the json. -1: Error trying to open the json file. -2: Error trying to extract data from the file(json value not found). -3: Error parsing the json file. -4: Error json object not found. (integer) </xs:documentation>
3162
+ </xs:annotation>
3163
+ </xs:attribute>
3164
+ </xs:complexType>
3165
+ <xs:complexType name="convert.toint">
3166
+ <xs:sequence />
3167
+ <xs:attribute name="number" type="xs:string" use="required">
3168
+ <xs:annotation>
3169
+ <xs:documentation>string (Number that will be converted)</xs:documentation>
3170
+ </xs:annotation>
3171
+ </xs:attribute>
3172
+ <xs:attribute name="base" type="xs:string" use="required">
3173
+ <xs:annotation>
3174
+ <xs:documentation>integer (2:binary, 10:decimal, 16:hexadecimal)</xs:documentation>
3175
+ </xs:annotation>
3176
+ </xs:attribute>
3177
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3178
+ <xs:annotation>
3179
+ <xs:documentation>integer (Variable where the converted number will be stored)</xs:documentation>
3180
+ </xs:annotation>
3181
+ </xs:attribute>
3182
+ </xs:complexType>
3183
+ <xs:complexType name="predial">
3184
+ <xs:sequence />
3185
+ <xs:attribute name="option" type="xs:string" use="required">
3186
+ <xs:annotation>
3187
+ <xs:documentation>integer (:1 This command realizes a pre-dial connection. :2 This command checks if the dial process is complete.)</xs:documentation>
3188
+ </xs:annotation>
3189
+ </xs:attribute>
3190
+ <xs:attribute name="variablestatus" type="xs:string" use="required">
3191
+ <xs:annotation>
3192
+ <xs:documentation>integer (Dial status. :0 Success :-1 Error in dial :-2 Invalid value in option)</xs:documentation>
3193
+ </xs:annotation>
3194
+ </xs:attribute>
3195
+ </xs:complexType>
3196
+ <xs:complexType name="network.checkgprssignal">
3197
+ <xs:sequence />
3198
+ <xs:attribute name="variablestatus" type="xs:string" use="required">
3199
+ <xs:annotation>
3200
+ <xs:documentation>integer (Percentage of signal strength.)</xs:documentation>
3201
+ </xs:annotation>
3202
+ </xs:attribute>
3203
+ </xs:complexType>
3204
+ <xs:complexType name="system.checkbattery">
3205
+ <xs:sequence />
3206
+ <xs:attribute name="variablestatus" type="xs:string" use="required">
3207
+ <xs:annotation>
3208
+ <xs:documentation>integer (Percentage of battery remaining.)</xs:documentation>
3209
+ </xs:annotation>
3210
+ </xs:attribute>
3211
+ </xs:complexType>
3212
+ <xs:complexType name="network.ping">
3213
+ <xs:sequence />
3214
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3215
+ <xs:annotation>
3216
+ <xs:documentation>integer (:0 Success. :-1 Error in connection with server. :-2 Send fail.)</xs:documentation>
3217
+ </xs:annotation>
3218
+ </xs:attribute>
3219
+ <xs:attribute name="host" type="xs:string" use="required">
3220
+ <xs:annotation>
3221
+ <xs:documentation>(string)IP or domain name that we want to perform a ping</xs:documentation>
3222
+ </xs:annotation>
3223
+ </xs:attribute>
3224
+ </xs:complexType>
3225
+ <xs:complexType name="system.beep">
3226
+ <xs:sequence />
3227
+ </xs:complexType>
3228
+ <xs:complexType name="system.readcard">
3229
+ <xs:sequence />
3230
+ <xs:attribute name="keyvariable" type="xs:string" use="required">
3231
+ <xs:annotation>
3232
+ <xs:documentation>string (Key pressed by user. The default keys are: KEY_0, KEY_1, KEY_2, KEY_3, KEY_4, KEY_5, KEY_6, KEY_7, KEY_8, KEY_9, KEY_CLEAR, KEY_CANCEL, KEY_ENTER. The optional keys can be: of KEY_EXTRA1 up to KEY_EXTRA99.)</xs:documentation>
3233
+ </xs:annotation>
3234
+ </xs:attribute>
3235
+ <xs:attribute name="cardvariable" type="xs:string" use="required">
3236
+ <xs:annotation>
3237
+ <xs:documentation>string (The variable where store card value.)</xs:documentation>
3238
+ </xs:annotation>
3239
+ </xs:attribute>
3240
+ <xs:attribute name="timeout" type="xs:string" use="required">
3241
+ <xs:annotation>
3242
+ <xs:documentation>integer (Time that the instruction will wait.)</xs:documentation>
3243
+ </xs:annotation>
3244
+ </xs:attribute>
3245
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3246
+ <xs:annotation>
3247
+ <xs:documentation>integer (:0 Pressed key or read card with success. :-1 Error in read card. :-2 The timeout it's over and any action happens. EMV: Card read with sucess: 1, Errors: > 1)</xs:documentation>
3248
+ </xs:annotation>
3249
+ </xs:attribute>
3250
+ </xs:complexType>
3251
+ <xs:complexType name="system.inputtransaction">
3252
+ <xs:sequence />
3253
+ <xs:attribute name="keyvariable" type="xs:string" use="required">
3254
+ <xs:annotation>
3255
+ <xs:documentation>string (Key pressed by user. The default keys are: KEY_0, KEY_1, KEY_2, KEY_3, KEY_4, KEY_5, KEY_6, KEY_7, KEY_8, KEY_9, KEY_CLEAR, KEY_CANCEL, KEY_ENTER. The optional keys can be: of KEY_EXTRA1 up to KEY_EXTRA99.)</xs:documentation>
3256
+ </xs:annotation>
3257
+ </xs:attribute>
3258
+ <xs:attribute name="cardvariable" type="xs:string" use="required">
3259
+ <xs:annotation>
3260
+ <xs:documentation>string (The variable where store card value.)</xs:documentation>
3261
+ </xs:annotation>
3262
+ </xs:attribute>
3263
+ <xs:attribute name="timeout" type="xs:string" use="required">
3264
+ <xs:annotation>
3265
+ <xs:documentation>integer (Time that the instruction will wait.)</xs:documentation>
3266
+ </xs:annotation>
3267
+ </xs:attribute>
3268
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3269
+ <xs:annotation>
3270
+ <xs:documentation>integer (:0 Pressed key or read card with success. :-1 Error in read card. :-2 The timeout it's over and any action happens. EMV: Card read with sucess: 1, Errors: > 1)</xs:documentation>
3271
+ </xs:annotation>
3272
+ </xs:attribute>
3273
+ <xs:attribute name="keyboard" type="xs:string" use="required">
3274
+ <xs:annotation>
3275
+ <xs:documentation>integer (:0 Keyboard disable, only KEY_CANCEL return. :1 Keyboard enable, return all keys)</xs:documentation>
3276
+ </xs:annotation>
3277
+ </xs:attribute>
3278
+ <xs:attribute name="inputtype" type="xs:string" use="required">
3279
+ <xs:annotation>
3280
+ <xs:documentation>integer (:1 Banda :2 Chip :3 CTLS :4 Keyboard :5 Touch)</xs:documentation>
3281
+ </xs:annotation>
3282
+ </xs:attribute>
3283
+ </xs:complexType>
3284
+ <xs:complexType name="system.backlight">
3285
+ <xs:sequence />
3286
+ <xs:attribute name="level" type="xs:string" use="required">
3287
+ <xs:annotation>
3288
+ <xs:documentation>integer (Level of the backlight in percents, a range from 0 - 100)</xs:documentation>
3289
+ </xs:annotation>
3290
+ </xs:attribute>
3291
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3292
+ <xs:annotation>
3293
+ <xs:documentation>integer (Success: 0, Error: -1)</xs:documentation>
3294
+ </xs:annotation>
3295
+ </xs:attribute>
3296
+ </xs:complexType>
3297
+ <xs:complexType name="system.update">
3298
+ <xs:sequence />
3299
+ <xs:attribute name="file" type="xs:string" use="required">
3300
+ <xs:annotation>
3301
+ <xs:documentation> (string) File that was downloaded and is going to be used on the update. For Verifone it is a single zip file. For Ingenico it is a comma separated file containing all the components that must be updated. </xs:documentation>
3302
+ </xs:annotation>
3303
+ </xs:attribute>
3304
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3305
+ <xs:annotation>
3306
+ <xs:documentation> (integer) Return code -1: Internal error. Otherwise the device will restart and run the new software. </xs:documentation>
3307
+ </xs:annotation>
3308
+ </xs:attribute>
3309
+ </xs:complexType>
3310
+ <xs:complexType name="system.qrcode">
3311
+ <xs:sequence />
3312
+ <xs:attribute name="filename" type="xs:string" use="required">
3313
+ <xs:annotation>
3314
+ <xs:documentation>(string) Name of the bitmap qrcode file to be generated.</xs:documentation>
3315
+ </xs:annotation>
3316
+ </xs:attribute>
3317
+ <xs:attribute name="input" type="xs:string" use="required">
3318
+ <xs:annotation>
3319
+ <xs:documentation>(string) Data to be encoded on the qrcode.</xs:documentation>
3320
+ </xs:annotation>
3321
+ </xs:attribute>
3322
+ <xs:attribute name="size" type="xs:string" use="required">
3323
+ <xs:annotation>
3324
+ <xs:documentation>(string) Size of the qrcode:
3325
+ x1: 33x33 pixels (can be used on the display)
3326
+ x2: 66x66 pixels (can be used on the printer)
3327
+ x3: 99x99 pixels (can be used on the printer)
3328
+ </xs:documentation>
3329
+ </xs:annotation>
3330
+ </xs:attribute>
3331
+ <xs:attribute name="version" type="xs:string" use="required">
3332
+ <xs:annotation>
3333
+ <xs:documentation>(string) Version of the qrcode. If you want to print the qrcode you need to use: from 1 to 4, if you want to show on display, use: from 1 to 6.</xs:documentation>
3334
+ </xs:annotation>
3335
+ </xs:attribute>
3336
+ </xs:complexType>
3337
+ <xs:complexType name="network.hostdisconnect">
3338
+ <xs:sequence />
3339
+ </xs:complexType>
3340
+ <xs:complexType name="iso8583.transactmessage">
3341
+ <xs:sequence />
3342
+ <xs:attribute name="channel" type="xs:string" use="required">
3343
+ <xs:annotation>
3344
+ <xs:documentation>string (
3345
+ "NONE": it doesn't add any size
3346
+ "NAC" : size of 2 binary bytes (x01 x00 ou 0000-0001 0000-0000)
3347
+ "NCC" : size of 2 binary bytes in BCD format (x02 x56)
3348
+ "RAW" : size of 4 binary bytes (x00 x00 x01 x00 ou 0000-0000 0000-0000 0000-0001 0000-0000)
3349
+ "ASCII": size of 4 binary bytes in ASCII format (x30 x32 x35 x36 ou "0256"))</xs:documentation>
3350
+ </xs:annotation>
3351
+ </xs:attribute>
3352
+ <xs:attribute name="header" type="xs:string" use="required">
3353
+ <xs:annotation>
3354
+ <xs:documentation>string (Header which will be add to the beggining of iso message)</xs:documentation>
3355
+ </xs:annotation>
3356
+ </xs:attribute>
3357
+ <xs:attribute name="trailler" type="xs:string" use="required">
3358
+ <xs:annotation>
3359
+ <xs:documentation>string (Trailer which will be add in the end of iso message)</xs:documentation>
3360
+ </xs:annotation>
3361
+ </xs:attribute>
3362
+ <xs:attribute name="isomsg" type="xs:string" use="required">
3363
+ <xs:annotation>
3364
+ <xs:documentation>string (ISO message)</xs:documentation>
3365
+ </xs:annotation>
3366
+ </xs:attribute>
3367
+ <xs:attribute name="variableresponse" type="xs:string" use="required">
3368
+ <xs:annotation>
3369
+ <xs:documentation>string (ISO message replied by the host)</xs:documentation>
3370
+ </xs:annotation>
3371
+ </xs:attribute>
3372
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3373
+ <xs:annotation>
3374
+ <xs:documentation>integer (
3375
+ >0 : Size of replied message
3376
+ -1 : Channel unknown or not implemented
3377
+ -2 : Didn't get connection to the host or dial failed
3378
+ -3 : Fail in the message sending
3379
+ -4 : Fail in the receiving of message size
3380
+ -5 : Fail in the receiving of message replied)</xs:documentation>
3381
+ </xs:annotation>
3382
+ </xs:attribute>
3383
+ </xs:complexType>
3384
+ <xs:complexType name="iso8583.transactmessagesubfield">
3385
+ <xs:sequence />
3386
+ <xs:attribute name="channel" type="xs:string" use="required">
3387
+ <xs:annotation>
3388
+ <xs:documentation>string (
3389
+ "NONE": it doesn't add any size
3390
+ "NAC" : size of 2 binary bytes (x01 x00 ou 0000-0001 0000-0000)
3391
+ "NCC" : size of 2 binary bytes in BCD format (x02 x56)
3392
+ "RAW" : size of 4 binary bytes (x00 x00 x01 x00 ou 0000-0000 0000-0000 0000-0001 0000-0000)
3393
+ "ASCII": size of 4 binary bytes in ASCII format (x30 x32 x35 x36 ou "0256"))</xs:documentation>
3394
+ </xs:annotation>
3395
+ </xs:attribute>
3396
+ <xs:attribute name="header" type="xs:string" use="required">
3397
+ <xs:annotation>
3398
+ <xs:documentation>string (Header which will be add to the beggining of iso message)</xs:documentation>
3399
+ </xs:annotation>
3400
+ </xs:attribute>
3401
+ <xs:attribute name="trailler" type="xs:string" use="required">
3402
+ <xs:annotation>
3403
+ <xs:documentation>string (Trailer which will be add in the end of iso message)</xs:documentation>
3404
+ </xs:annotation>
3405
+ </xs:attribute>
3406
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3407
+ <xs:annotation>
3408
+ <xs:documentation>integer (
3409
+ >0 : Size of replied message
3410
+ -1 : Channel unknown or not implemented
3411
+ -2 : Didn't get connection to the host or dial failed
3412
+ -3 : Fail in the message sending
3413
+ -4 : Fail in the receiving of message size
3414
+ -5 : Fail in the receiving of message replied)</xs:documentation>
3415
+ </xs:annotation>
3416
+ </xs:attribute>
3417
+ </xs:complexType>
3418
+ <xs:complexType name="network.start">
3419
+ <xs:sequence />
3420
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3421
+ <xs:annotation>
3422
+ <xs:documentation>integer, return of the function:
3423
+ 1: OK, modem initialized.
3424
+ &lt; 1: error.
3425
+ </xs:documentation>
3426
+ </xs:annotation>
3427
+ </xs:attribute>
3428
+ </xs:complexType>
3429
+ <xs:complexType name="notification.setup">
3430
+ <xs:sequence />
3431
+ </xs:complexType>
3432
+ <xs:complexType name="notification.receive">
3433
+ <xs:sequence />
3434
+ <xs:attribute name="variablepayload" type="xs:string" use="required">
3435
+ <xs:annotation>
3436
+ <xs:documentation>Variable that will store the notification message received (string)
3437
+ </xs:documentation>
3438
+ </xs:annotation>
3439
+ </xs:attribute>
3440
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3441
+ <xs:annotation>
3442
+ <xs:documentation>Variable that will store the return of the function, where: 1: OK, message received. &lt;= 0: Nothing received from server(integer).
3443
+ </xs:documentation>
3444
+ </xs:annotation>
3445
+ </xs:attribute>
3446
+ </xs:complexType>
3447
+ <xs:complexType name="smartcard.insertedcard">
3448
+ <xs:sequence />
3449
+ <xs:attribute name="slot" type="xs:string" use="required">
3450
+ <xs:annotation>
3451
+ <xs:documentation>integer (Main = 1 , sam1 = 2 , sam2 = 3, sam3 = 4, sam4 = 5)</xs:documentation>
3452
+ </xs:annotation>
3453
+ </xs:attribute>
3454
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3455
+ <xs:annotation>
3456
+ <xs:documentation>integer (-2: The card hasn't been inserted, -1: invalid slot, 1: the card has been inserted in the terminal's reader.)</xs:documentation>
3457
+ </xs:annotation>
3458
+ </xs:attribute>
3459
+ </xs:complexType>
3460
+ <xs:complexType name="smartcard.startreader">
3461
+ <xs:sequence />
3462
+ <xs:attribute name="slot" type="xs:string" use="required">
3463
+ <xs:annotation>
3464
+ <xs:documentation>integer (Main = 1 , sam1 = 2 , sam2 = 3, sam3 = 4, sam4 = 5)</xs:documentation>
3465
+ </xs:annotation>
3466
+ </xs:attribute>
3467
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3468
+ <xs:annotation>
3469
+ <xs:documentation>integer (-2: reader initialize error or card read error, -1: invalid slot, 1: terminal's reader started and ATR sent with sucess.)</xs:documentation>
3470
+ </xs:annotation>
3471
+ </xs:attribute>
3472
+ </xs:complexType>
3473
+ <xs:complexType name="smartcard.transmitAPDU">
3474
+ <xs:sequence />
3475
+ <xs:attribute name="slot" type="xs:string" use="required">
3476
+ <xs:annotation>
3477
+ <xs:documentation>integer (main = 1 , sam1 = 2 , sam2 = 3, sam3 = 4, sam4 = 5)</xs:documentation>
3478
+ </xs:annotation>
3479
+ </xs:attribute>
3480
+ <xs:attribute name="header" type="xs:string" use="required">
3481
+ <xs:annotation>
3482
+ <xs:documentation>string (A hexadecimal APDU command composite by CLA + INS + P1 + P2. It's a mandatory field. Example: 'B00C0000')</xs:documentation>
3483
+ </xs:annotation>
3484
+ </xs:attribute>
3485
+ <xs:attribute name="LC" type="xs:string" use="required">
3486
+ <xs:annotation>
3487
+ <xs:documentation>string (A hexadecimal size of datafield parameter. It's an optional field. If we don't want to use this parameter, it's necessary set the field with '00'. For example, If the datafield has 10 bytes of size, it's necessary set this parameter with '0A'.)</xs:documentation>
3488
+ </xs:annotation>
3489
+ </xs:attribute>
3490
+ <xs:attribute name="datafield" type="xs:string" use="required">
3491
+ <xs:annotation>
3492
+ <xs:documentation>string (A hexadecimal APDU command composite by additional information. It's an optional field. If we don't want to use it, we have to set the field with '00'.)</xs:documentation>
3493
+ </xs:annotation>
3494
+ </xs:attribute>
3495
+ <xs:attribute name="LE" type="xs:string" use="required">
3496
+ <xs:annotation>
3497
+ <xs:documentation>string (A hexadecimal response size. It's an optional field. If we don't want to use it, we have to set the field with '00'. If we've a response size greater than 2 bytes (SW1 and SW2), we must have to specify the response size on this field.)</xs:documentation>
3498
+ </xs:annotation>
3499
+ </xs:attribute>
3500
+ <xs:attribute name="variabledatafieldresponse" type="xs:string" use="required">
3501
+ <xs:annotation>
3502
+ <xs:documentation>string (A variable will receive the response of an APDU command, It's a hexadecimal representation.)</xs:documentation>
3503
+ </xs:annotation>
3504
+ </xs:attribute>
3505
+ <xs:attribute name="variableSW" type="xs:string" use="required">
3506
+ <xs:annotation>
3507
+ <xs:documentation>string (A variable which will contain the mandatory 2 bytes hexadecimal for a response to an APDU command.)</xs:documentation>
3508
+ </xs:annotation>
3509
+ </xs:attribute>
3510
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3511
+ <xs:annotation>
3512
+ <xs:documentation>integer (-2: error to send a command for the card, -1: invalid slot, 1: sent command with success.)</xs:documentation>
3513
+ </xs:annotation>
3514
+ </xs:attribute>
3515
+ </xs:complexType>
3516
+ <xs:complexType name="smartcard.closereader">
3517
+ <xs:sequence />
3518
+ <xs:attribute name="slot" type="xs:string" use="required">
3519
+ <xs:annotation>
3520
+ <xs:documentation>integer (Main = 1 , sam1 = 2 , sam2 = 3, sam3 = 4, sam4 = 5)</xs:documentation>
3521
+ </xs:annotation>
3522
+ </xs:attribute>
3523
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3524
+ <xs:annotation>
3525
+ <xs:documentation>integer (-1: Invalid slot, 1: closed reader with success.)</xs:documentation>
3526
+ </xs:annotation>
3527
+ </xs:attribute>
3528
+ </xs:complexType>
3529
+ <xs:complexType name="string.tohex">
3530
+ <xs:sequence>
3531
+ </xs:sequence>
3532
+ <xs:attribute name="string" type="xs:string" use="required">
3533
+ <xs:annotation>
3534
+ <xs:documentation>string (The string which will be converted.)</xs:documentation>
3535
+ </xs:annotation>
3536
+ </xs:attribute>
3537
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3538
+ <xs:annotation>
3539
+ <xs:documentation>string (A string parameter converted from a ASCII to a hexadecimal representation. It'll have the double in size of original string.)</xs:documentation>
3540
+ </xs:annotation>
3541
+ </xs:attribute>
3542
+ </xs:complexType>
3543
+ <xs:complexType name="string.fromhex">
3544
+ <xs:sequence>
3545
+ </xs:sequence>
3546
+ <xs:attribute name="string" type="xs:string" use="required">
3547
+ <xs:annotation>
3548
+ <xs:documentation>string (A hexadecimal representation of string.)</xs:documentation>
3549
+ </xs:annotation>
3550
+ </xs:attribute>
3551
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3552
+ <xs:annotation>
3553
+ <xs:documentation>string (A string parameter converted from hexadecimal to an ASCII representation. It'll have the half in size of original hexadecimal representation.)</xs:documentation>
3554
+ </xs:annotation>
3555
+ </xs:attribute>
3556
+ </xs:complexType>
3557
+ <xs:complexType name="crypto.encryptdecrypt">
3558
+ <xs:sequence>
3559
+ </xs:sequence>
3560
+ <xs:attribute name="message" type="xs:string" use="required">
3561
+ <xs:annotation>
3562
+ <xs:documentation>string (A message in a hexadecimal representation to be encrypted or decrypted. In the encrypt or decrypt process, we must have to use only blocks with 8 bytes. If you have a message greater than 8 bytes, you'll need to split in blocks of 8 bytes each, for the encrypt or decrypt process.)</xs:documentation>
3563
+ </xs:annotation>
3564
+ </xs:attribute>
3565
+ <xs:attribute name="key" type="xs:string" use="required">
3566
+ <xs:annotation>
3567
+ <xs:documentation>string (It's a cryptographic key, in a hexadecimal representation. For DES algorithm, the key has 8 bytes or 16 characters in a hexadecimal representation. For 3DES algorithm, the key has 16 bytes or 32 characters in a hexadecimal representation. For 3DESTripleLength, the key has 24 bytes or 48 characters in a hexadecimal representation and for NEWDES, the key has 15 bytes or 30 characters in a hexadecimal representation.)</xs:documentation>
3568
+ </xs:annotation>
3569
+ </xs:attribute>
3570
+ <xs:attribute name="cryptotype" type="xs:string" use="required">
3571
+ <xs:annotation>
3572
+ <xs:documentation>string (The algorithm to be used. Could be: 'DES', '3DES', '3DESTripleLength', 'NEWDES'.)</xs:documentation>
3573
+ </xs:annotation>
3574
+ </xs:attribute>
3575
+ <xs:attribute name="type" type="xs:string" use="required">
3576
+ <xs:annotation>
3577
+ <xs:documentation>integer (0: Encrypt the message 1: Decrypt the message)</xs:documentation>
3578
+ </xs:annotation>
3579
+ </xs:attribute>
3580
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3581
+ <xs:annotation>
3582
+ <xs:documentation>string (The message encrypted or decrypted in a hexadecimal representation.)</xs:documentation>
3583
+ </xs:annotation>
3584
+ </xs:attribute>
3585
+ </xs:complexType>
3586
+ <xs:complexType name="crypto.lrc">
3587
+ <xs:sequence>
3588
+ </xs:sequence>
3589
+ <xs:attribute name="buffer" type="xs:string" use="required">
3590
+ <xs:annotation>
3591
+ <xs:documentation>string (A buffer in a hexadecimal representation that will be used to generate de LRC byte.)</xs:documentation>
3592
+ </xs:annotation>
3593
+ </xs:attribute>
3594
+ <xs:attribute name="size" type="xs:string" use="required">
3595
+ <xs:annotation>
3596
+ <xs:documentation>integer (Number of bytes in buffer. For example, the size of '0A0A', is 2 bytes.)</xs:documentation>
3597
+ </xs:annotation>
3598
+ </xs:attribute>
3599
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3600
+ <xs:annotation>
3601
+ <xs:documentation>string (Variable that will store the byte LRC in a hexadecimal representation.)</xs:documentation>
3602
+ </xs:annotation>
3603
+ </xs:attribute>
3604
+ </xs:complexType>
3605
+ <xs:complexType name="crypto.xor">
3606
+ <xs:sequence>
3607
+ </xs:sequence>
3608
+ <xs:attribute name="buffer1" type="xs:string" use="required">
3609
+ <xs:annotation>
3610
+ <xs:documentation>string (A buffer in a hexadecimal representation that will be used in the XOR operation.)</xs:documentation>
3611
+ </xs:annotation>
3612
+ </xs:attribute>
3613
+ <xs:attribute name="buffer2" type="xs:string" use="required">
3614
+ <xs:annotation>
3615
+ <xs:documentation>string (A buffer in a hexadecimal representation that will be used in the XOR operation.)</xs:documentation>
3616
+ </xs:annotation>
3617
+ </xs:attribute>
3618
+ <xs:attribute name="size" type="xs:string" use="required">
3619
+ <xs:annotation>
3620
+ <xs:documentation>integer (Number of bytes in buffer. For example, the size of '0A0A', is 2 bytes.)</xs:documentation>
3621
+ </xs:annotation>
3622
+ </xs:attribute>
3623
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3624
+ <xs:annotation>
3625
+ <xs:documentation>string (Variable that will store the result of XOR operation between buffer1 and buffer2 in a hexadecimal representation.)</xs:documentation>
3626
+ </xs:annotation>
3627
+ </xs:attribute>
3628
+ </xs:complexType>
3629
+ <xs:complexType name="crypto.crc">
3630
+ <xs:sequence>
3631
+ </xs:sequence>
3632
+ <xs:attribute name="buffer" type="xs:string" use="required">
3633
+ <xs:annotation>
3634
+ <xs:documentation>string (A buffer in a hexadecimal representation that will be used in the CRC calculation, or file).</xs:documentation>
3635
+ </xs:annotation>
3636
+ </xs:attribute>
3637
+ <xs:attribute name="size" type="xs:string" use="required">
3638
+ <xs:annotation>
3639
+ <xs:documentation>integer (Number of bytes in buffer. For example, the size of '0A0A', is 2 bytes, if file use 0).</xs:documentation>
3640
+ </xs:annotation>
3641
+ </xs:attribute>
3642
+ <xs:attribute name="type" type="xs:string" use="required">
3643
+ <xs:annotation>
3644
+ <xs:documentation>string (CRC type, CRC-CCITT support).</xs:documentation>
3645
+ </xs:annotation>
3646
+ </xs:attribute>
3647
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3648
+ <xs:annotation>
3649
+ <xs:documentation>integer (Variable that will store the result of CRC calculation).</xs:documentation>
3650
+ </xs:annotation>
3651
+ </xs:attribute>
3652
+ </xs:complexType>
3653
+ <xs:complexType name="system.info">
3654
+ <xs:sequence>
3655
+ </xs:sequence>
3656
+ <xs:attribute name="type" type="xs:string" use="required">
3657
+ <xs:annotation>
3658
+ <xs:documentation>string (info type, simid or macaddress).</xs:documentation>
3659
+ </xs:annotation>
3660
+ </xs:attribute>
3661
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3662
+ <xs:annotation>
3663
+ <xs:documentation>string (info)</xs:documentation>
3664
+ </xs:annotation>
3665
+ </xs:attribute>
3666
+ </xs:complexType>
3667
+ <xs:complexType name="system.gettouchscreen">
3668
+ <xs:sequence>
3669
+ </xs:sequence>
3670
+ <xs:attribute name="axisx" type="xs:string" use="required">
3671
+ <xs:annotation>
3672
+ <xs:documentation>integer (X axis coordinate where display was pressed.)</xs:documentation>
3673
+ </xs:annotation>
3674
+ </xs:attribute>
3675
+ <xs:attribute name="axisy" type="xs:string" use="required">
3676
+ <xs:annotation>
3677
+ <xs:documentation>integer (Y axis coordinate where display was pressed.)</xs:documentation>
3678
+ </xs:annotation>
3679
+ </xs:attribute>
3680
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3681
+ <xs:annotation>
3682
+ <xs:documentation>integer (1: Display was pressed. 0: Display was not pressed.)</xs:documentation>
3683
+ </xs:annotation>
3684
+ </xs:attribute>
3685
+ </xs:complexType>
3686
+ <xs:complexType name="system.gettouchscreenkeyboard">
3687
+ <xs:sequence>
3688
+ </xs:sequence>
3689
+ <xs:attribute name="axisx" type="xs:string" use="required">
3690
+ <xs:annotation>
3691
+ <xs:documentation>integer (X axis coordinate where display was pressed.)</xs:documentation>
3692
+ </xs:annotation>
3693
+ </xs:attribute>
3694
+ <xs:attribute name="axisy" type="xs:string" use="required">
3695
+ <xs:annotation>
3696
+ <xs:documentation>integer (Y axis coordinate where display was pressed.)</xs:documentation>
3697
+ </xs:annotation>
3698
+ </xs:attribute>
3699
+ <xs:attribute name="timeout" type="xs:string" use="required">
3700
+ <xs:annotation>
3701
+ <xs:documentation>integer (Timeout of the function)</xs:documentation>
3702
+ </xs:annotation>
3703
+ </xs:attribute>
3704
+ <xs:attribute name="variablekey" type="xs:string" use="required">
3705
+ <xs:annotation>
3706
+ <xs:documentation>string (Key of the keyboad pressed)</xs:documentation>
3707
+ </xs:annotation>
3708
+ </xs:attribute>
3709
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3710
+ <xs:annotation>
3711
+ <xs:documentation>integer (1: Display was pressed. 0: Display was not pressed. 2: Key of the keyboad pressed. :-1: timeout)</xs:documentation>
3712
+ </xs:annotation>
3713
+ </xs:attribute>
3714
+ </xs:complexType>
3715
+ <xs:complexType name="pinpad.open">
3716
+ <xs:sequence>
3717
+ </xs:sequence>
3718
+ <xs:attribute name="type" type="xs:string" use="required">
3719
+ <xs:annotation>
3720
+ <xs:documentation>integer (0: internal pinpad 1: external pinpad.)</xs:documentation>
3721
+ </xs:annotation>
3722
+ </xs:attribute>
3723
+ <xs:attribute name="variableserialnumber" type="xs:string" use="required">
3724
+ <xs:annotation>
3725
+ <xs:documentation>string (Variable that will store the serial number of the pinpad that has just been opened.)</xs:documentation>
3726
+ </xs:annotation>
3727
+ </xs:attribute>
3728
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3729
+ <xs:annotation>
3730
+ <xs:documentation>integer (0: Pinpad connected. -1: Pinpad not connected.)</xs:documentation>
3731
+ </xs:annotation>
3732
+ </xs:attribute>
3733
+ </xs:complexType>
3734
+ <xs:complexType name="pinpad.display">
3735
+ <xs:sequence>
3736
+ </xs:sequence>
3737
+ <xs:attribute name="message" type="xs:string" use="required">
3738
+ <xs:annotation>
3739
+ <xs:documentation>string (Message that will be displayed on display.)</xs:documentation>
3740
+ </xs:annotation>
3741
+ </xs:attribute>
3742
+ </xs:complexType>
3743
+ <xs:complexType name="pinpad.getkey">
3744
+ <xs:sequence>
3745
+ </xs:sequence>
3746
+ <xs:attribute name="message" type="xs:string" use="required">
3747
+ <xs:annotation>
3748
+ <xs:documentation>string (Message that will be displayed on display.)</xs:documentation>
3749
+ </xs:annotation>
3750
+ </xs:attribute>
3751
+ <xs:attribute name="timeout" type="xs:string" use="required">
3752
+ <xs:annotation>
3753
+ <xs:documentation>integer (Timeout in seconds that the instruction will waiting before continue execution.)</xs:documentation>
3754
+ </xs:annotation>
3755
+ </xs:attribute>
3756
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3757
+ <xs:annotation>
3758
+ <xs:documentation>string (-1: timeout, KEY_ENTER, KEY_CANCEL, KEY_CLEAR, KEY_EXTRAS)</xs:documentation>
3759
+ </xs:annotation>
3760
+ </xs:attribute>
3761
+ </xs:complexType>
3762
+ <xs:complexType name="pinpad.getpindukpt">
3763
+ <xs:sequence>
3764
+ </xs:sequence>
3765
+ <xs:attribute name="message" type="xs:string" use="required">
3766
+ <xs:annotation>
3767
+ <xs:documentation>string (Message that will be displayed on display.)</xs:documentation>
3768
+ </xs:annotation>
3769
+ </xs:attribute>
3770
+ <xs:attribute name="type" type="xs:string" use="required">
3771
+ <xs:annotation>
3772
+ <xs:documentation>integer (0: DES 1: 3DES.)</xs:documentation>
3773
+ </xs:annotation>
3774
+ </xs:attribute>
3775
+ <xs:attribute name="pan" type="xs:string" use="required">
3776
+ <xs:annotation>
3777
+ <xs:documentation>string (Account number.)</xs:documentation>
3778
+ </xs:annotation>
3779
+ </xs:attribute>
3780
+ <xs:attribute name="maxlen" type="xs:string" use="required">
3781
+ <xs:annotation>
3782
+ <xs:documentation>integer (Maximum number of characters typed in the pin.)</xs:documentation>
3783
+ </xs:annotation>
3784
+ </xs:attribute>
3785
+ <xs:attribute name="variablereturnpin" type="xs:string" use="required">
3786
+ <xs:annotation>
3787
+ <xs:documentation>string (Pin encrypted DUKPT DES or 3DES.)</xs:documentation>
3788
+ </xs:annotation>
3789
+ </xs:attribute>
3790
+ <xs:attribute name="variablereturnksn" type="xs:string" use="required">
3791
+ <xs:annotation>
3792
+ <xs:documentation>string (KSN.)</xs:documentation>
3793
+ </xs:annotation>
3794
+ </xs:attribute>
3795
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3796
+ <xs:annotation>
3797
+ <xs:documentation>integer (0: OK, -1: COMM error, -2: Cancel, -3: Error pin)</xs:documentation>
3798
+ </xs:annotation>
3799
+ </xs:attribute>
3800
+ </xs:complexType>
3801
+ <xs:complexType name="pinpad.loadipek">
3802
+ <xs:sequence>
3803
+ </xs:sequence>
3804
+ <xs:attribute name="ipek" type="xs:string" use="required">
3805
+ <xs:annotation>
3806
+ <xs:documentation>string (Initial key in hex ascii format 16 or 32 characters.)</xs:documentation>
3807
+ </xs:annotation>
3808
+ </xs:attribute>
3809
+ <xs:attribute name="ksn" type="xs:string" use="required">
3810
+ <xs:annotation>
3811
+ <xs:documentation>string (Initial ksn in hex ascii format 20 characters.)</xs:documentation>
3812
+ </xs:annotation>
3813
+ </xs:attribute>
3814
+ <xs:attribute name="type" type="xs:string" use="required">
3815
+ <xs:annotation>
3816
+ <xs:documentation>integer (0: DES 1: 3DES.)</xs:documentation>
3817
+ </xs:annotation>
3818
+ </xs:attribute>
3819
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3820
+ <xs:annotation>
3821
+ <xs:documentation>integer (0: OK, -1: Error.)</xs:documentation>
3822
+ </xs:annotation>
3823
+ </xs:attribute>
3824
+ </xs:complexType>
3825
+ <xs:complexType name="pinpad.close">
3826
+ <xs:sequence>
3827
+ </xs:sequence>
3828
+ <xs:attribute name="message" type="xs:string" use="required">
3829
+ <xs:annotation>
3830
+ <xs:documentation>string (Default message that will be displayed on display of pinpad.)</xs:documentation>
3831
+ </xs:annotation>
3832
+ </xs:attribute>
3833
+ </xs:complexType>
3834
+ <xs:complexType name="emv.open">
3835
+ <xs:sequence>
3836
+ </xs:sequence>
3837
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3838
+ <xs:annotation>
3839
+ <xs:documentation>integer (0: OK, 14: Already initialized, 16: Error.)</xs:documentation>
3840
+ </xs:annotation>
3841
+ </xs:attribute>
3842
+ <xs:attribute name="mkslot" type="xs:string" use="required">
3843
+ <xs:annotation>
3844
+ <xs:documentation>integer (Slot of the terminal where is recorded the master key) .</xs:documentation>
3845
+ </xs:annotation>
3846
+ </xs:attribute>
3847
+ <xs:attribute name="pinpadtype" type="xs:string" use="required">
3848
+ <xs:annotation>
3849
+ <xs:documentation>integer (Type of pinpad utilized, external 2 or internal 1).</xs:documentation>
3850
+ </xs:annotation>
3851
+ </xs:attribute>
3852
+ <xs:attribute name="pinpadwk" type="xs:string" use="required">
3853
+ <xs:annotation>
3854
+ <xs:documentation>string (Working Key used in the session with pinpad) .</xs:documentation>
3855
+ </xs:annotation>
3856
+ </xs:attribute>
3857
+ <xs:attribute name="showamount" type="xs:string" use="required">
3858
+ <xs:annotation>
3859
+ <xs:documentation>integer (defines if the library shows amount or not, 1 - show 0 - hide) .</xs:documentation>
3860
+ </xs:annotation>
3861
+ </xs:attribute>
3862
+ </xs:complexType>
3863
+ <xs:complexType name="emv.close">
3864
+ <xs:sequence>
3865
+ </xs:sequence>
3866
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3867
+ <xs:annotation>
3868
+ <xs:documentation>integer (0: OK, >0: Error.)</xs:documentation>
3869
+ </xs:annotation>
3870
+ </xs:attribute>
3871
+ </xs:complexType>
3872
+ <xs:complexType name="emv.settimeout">
3873
+ <xs:sequence />
3874
+ <xs:attribute name="seconds" type="xs:string" use="required">
3875
+ <xs:annotation>
3876
+ <xs:documentation>integer (Time in seconds).</xs:documentation>
3877
+ </xs:annotation>
3878
+ </xs:attribute>
3879
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3880
+ <xs:annotation>
3881
+ <xs:documentation>integer (0: OK, 15: Library EMV not initialized).</xs:documentation>
3882
+ </xs:annotation>
3883
+ </xs:attribute>
3884
+ </xs:complexType>
3885
+ <xs:complexType name="emv.loadtables">
3886
+ <xs:sequence />
3887
+ <xs:attribute name="acquirer" type="xs:string" use="required">
3888
+ <xs:annotation>
3889
+ <xs:documentation>integer (Identification number of acquirer).</xs:documentation>
3890
+ </xs:annotation>
3891
+ </xs:attribute>
3892
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3893
+ <xs:annotation>
3894
+ <xs:documentation>integer (0: OK, 15: Library EMV not initialized, 30: Comunication error (busy), 31: Comunication error (Desconected), 10: Error on startup of the table, 21: Error on write of the table, -1: File .dat not found for this acquirer).</xs:documentation>
3895
+ </xs:annotation>
3896
+ </xs:attribute>
3897
+ </xs:complexType>
3898
+ <xs:complexType name="emv.cleanstructures">
3899
+ <xs:sequence />
3900
+ </xs:complexType>
3901
+ <xs:complexType name="emv.adddata">
3902
+ <xs:sequence />
3903
+ <xs:attribute name="type" type="xs:string" use="required">
3904
+ <xs:annotation>
3905
+ <xs:documentation>string (Type of parameter).</xs:documentation>
3906
+ </xs:annotation>
3907
+ </xs:attribute>
3908
+ <xs:attribute name="parameter" type="xs:string" use="required">
3909
+ <xs:annotation>
3910
+ <xs:documentation>string (Parameter name, that will be assigned in data).</xs:documentation>
3911
+ </xs:annotation>
3912
+ </xs:attribute>
3913
+ <xs:attribute name="value" type="xs:string" use="required">
3914
+ <xs:annotation>
3915
+ <xs:documentation>string (Value that will be assigned to the specified parameter).</xs:documentation>
3916
+ </xs:annotation>
3917
+ </xs:attribute>
3918
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3919
+ <xs:annotation>
3920
+ <xs:documentation>integer (0: OK, -1: Error, type, key or value does not exist).</xs:documentation>
3921
+ </xs:annotation>
3922
+ </xs:attribute>
3923
+ </xs:complexType>
3924
+ <xs:complexType name="emv.getinfo">
3925
+ <xs:sequence />
3926
+ <xs:attribute name="type" type="xs:string" use="required">
3927
+ <xs:annotation>
3928
+ <xs:documentation>string (parameter type).</xs:documentation>
3929
+ </xs:annotation>
3930
+ </xs:attribute>
3931
+ <xs:attribute name="parameter" type="xs:string" use="required">
3932
+ <xs:annotation>
3933
+ <xs:documentation>string (Parameter Name to search).</xs:documentation>
3934
+ </xs:annotation>
3935
+ </xs:attribute>
3936
+ <xs:attribute name="value" type="xs:string" use="required">
3937
+ <xs:annotation>
3938
+ <xs:documentation>string (Parameter value sought).</xs:documentation>
3939
+ </xs:annotation>
3940
+ </xs:attribute>
3941
+ </xs:complexType>
3942
+ <xs:complexType name="emv.inittransaction">
3943
+ <xs:sequence />
3944
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3945
+ <xs:annotation>
3946
+ <xs:documentation>integer (0: OK, 11: Invalid parameter, 12: Timeout, 13: Canceled by the operator, 15: Library EMV not initialized, 40: Internal error, 41: Error reading the magnetic stripe, 43: Card is not inserted).</xs:documentation>
3947
+ </xs:annotation>
3948
+ </xs:attribute>
3949
+ </xs:complexType>
3950
+ <xs:complexType name="emv.processtransaction">
3951
+ <xs:sequence />
3952
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3953
+ <xs:annotation>
3954
+ <xs:documentation>integer (0: OK, 11: Ivalid parameter, 12: Timeout, 13: Operation PIN entry canceled by user, 15: Library EMV not initialized, 19: Absence of data mandatory for processing, 40: Internal error, 41: Error reading the magnetic stripe, 43: Card is not inserted).
3955
+ </xs:documentation>
3956
+ </xs:annotation>
3957
+ </xs:attribute>
3958
+ <xs:attribute name="ctls" type="xs:string" use="required">
3959
+ <xs:annotation>
3960
+ <xs:documentation>integer (defines if transaction will be Contact Less or not, 1 - CTLS 0 - With contact) .</xs:documentation>
3961
+ </xs:annotation>
3962
+ </xs:attribute>
3963
+ </xs:complexType>
3964
+ <xs:complexType name="emv.finishtransaction">
3965
+ <xs:sequence />
3966
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3967
+ <xs:annotation>
3968
+ <xs:documentation>integer (0: OK, 11: Invalid parameter, 12: Timeout, 40: Internal error, 43: Card removed in the middle of the operation).
3969
+ </xs:documentation>
3970
+ </xs:annotation>
3971
+ </xs:attribute>
3972
+ </xs:complexType>
3973
+ <xs:complexType name="emv.removecard">
3974
+ <xs:sequence />
3975
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
3976
+ <xs:annotation>
3977
+ <xs:documentation>integer (0: OK, 12: Timeout, 13: Canceled, 15: Library EMV not initialized).</xs:documentation>
3978
+ </xs:annotation>
3979
+ </xs:attribute>
3980
+ </xs:complexType>
3981
+ <xs:complexType name="parseticket">
3982
+ <xs:sequence />
3983
+ <xs:attribute name="productmenu" type="xs:string" use="required">
3984
+ <xs:annotation>
3985
+ <xs:documentation>string (Name of product that appear in menu).</xs:documentation>
3986
+ </xs:annotation>
3987
+ </xs:attribute>
3988
+ <xs:attribute name="ticket" type="xs:string" use="required">
3989
+ <xs:annotation>
3990
+ <xs:documentation>string (Ticket not parsed).</xs:documentation>
3991
+ </xs:annotation>
3992
+ </xs:attribute>
3993
+ <xs:attribute name="menssage" type="xs:string" use="required">
3994
+ <xs:annotation>
3995
+ <xs:documentation>string (Message not parsed).</xs:documentation>
3996
+ </xs:annotation>
3997
+ </xs:attribute>
3998
+ <xs:attribute name="literal" type="xs:string" use="required">
3999
+ <xs:annotation>
4000
+ <xs:documentation>string (Literal in Walk file DB).</xs:documentation>
4001
+ </xs:annotation>
4002
+ </xs:attribute>
4003
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
4004
+ <xs:annotation>
4005
+ <xs:documentation>string (Ticket parsed).</xs:documentation>
4006
+ </xs:annotation>
4007
+ </xs:attribute>
4008
+ </xs:complexType>
4009
+ <xs:complexType name="file.open">
4010
+ <xs:sequence />
4011
+ <xs:attribute name="mode" type="xs:string" use="required">
4012
+ <xs:annotation>
4013
+ <xs:documentation>string ("w" for write, "r" for read and "a" for append mode).</xs:documentation>
4014
+ </xs:annotation>
4015
+ </xs:attribute>
4016
+ <xs:attribute name="filename" type="xs:string" use="required">
4017
+ <xs:annotation>
4018
+ <xs:documentation>string (Name of file that will be opened).</xs:documentation>
4019
+ </xs:annotation>
4020
+ </xs:attribute>
4021
+ <xs:attribute name="variablehandle" type="xs:string" use="required">
4022
+ <xs:annotation>
4023
+ <xs:documentation>integer (-1: file not opened, >-1: Handle for opened file.).</xs:documentation>
4024
+ </xs:annotation>
4025
+ </xs:attribute>
4026
+ </xs:complexType>
4027
+ <xs:complexType name="file.close">
4028
+ <xs:sequence />
4029
+ <xs:attribute name="handle" type="xs:string" use="required">
4030
+ <xs:annotation>
4031
+ <xs:documentation>integer (Handle of file that will be closed).</xs:documentation>
4032
+ </xs:annotation>
4033
+ </xs:attribute>
4034
+ </xs:complexType>
4035
+ <xs:complexType name="file.read">
4036
+ <xs:sequence />
4037
+ <xs:attribute name="handle" type="xs:string" use="required">
4038
+ <xs:annotation>
4039
+ <xs:documentation>integer (Handle of file for read).</xs:documentation>
4040
+ </xs:annotation>
4041
+ </xs:attribute>
4042
+ <xs:attribute name="size" type="xs:string" use="required">
4043
+ <xs:annotation>
4044
+ <xs:documentation>integer (Number of bytes that we want to read from file).</xs:documentation>
4045
+ </xs:annotation>
4046
+ </xs:attribute>
4047
+ <xs:attribute name="variablebuffer" type="xs:string" use="required">
4048
+ <xs:annotation>
4049
+ <xs:documentation>string (Variable that will store the bytes that was read in format hex ascii).</xs:documentation>
4050
+ </xs:annotation>
4051
+ </xs:attribute>
4052
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
4053
+ <xs:annotation>
4054
+ <xs:documentation>integer (Variable that will store the number of bytes read).</xs:documentation>
4055
+ </xs:annotation>
4056
+ </xs:attribute>
4057
+ </xs:complexType>
4058
+ <xs:complexType name="file.write">
4059
+ <xs:sequence />
4060
+ <xs:attribute name="handle" type="xs:string" use="required">
4061
+ <xs:annotation>
4062
+ <xs:documentation>integer (Handle of file that will be recorded).</xs:documentation>
4063
+ </xs:annotation>
4064
+ </xs:attribute>
4065
+ <xs:attribute name="size" type="xs:string" use="required">
4066
+ <xs:annotation>
4067
+ <xs:documentation>integer (Number of bytes that we want to record on file).</xs:documentation>
4068
+ </xs:annotation>
4069
+ </xs:attribute>
4070
+ <xs:attribute name="buffer" type="xs:string" use="required">
4071
+ <xs:annotation>
4072
+ <xs:documentation>string (Buffer in format hex ascii that will be recorded on file).</xs:documentation>
4073
+ </xs:annotation>
4074
+ </xs:attribute>
4075
+ </xs:complexType>
4076
+ <xs:complexType name="file.concat">
4077
+ <xs:sequence />
4078
+ <xs:attribute name="config" type="xs:string" use="required">
4079
+ <xs:annotation>
4080
+ <xs:documentation>string (Path to configuration file, not required).</xs:documentation>
4081
+ </xs:annotation>
4082
+ </xs:attribute>
4083
+ <xs:attribute name="out" type="xs:string" use="required">
4084
+ <xs:annotation>
4085
+ <xs:documentation>string (Path to file merged).</xs:documentation>
4086
+ </xs:annotation>
4087
+ </xs:attribute>
4088
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
4089
+ <xs:annotation>
4090
+ <xs:documentation>integer (0 - Success; -1 Fail, check out.status).</xs:documentation>
4091
+ </xs:annotation>
4092
+ </xs:attribute>
4093
+ </xs:complexType>
4094
+ <xs:complexType name="input.getvalue">
4095
+ <xs:sequence />
4096
+ <xs:attribute name="linecaption" type="xs:string" use="required">
4097
+ <xs:annotation>
4098
+ <xs:documentation>integer (display of line of caption).</xs:documentation>
4099
+ </xs:annotation>
4100
+ </xs:attribute>
4101
+ <xs:attribute name="columncaption" type="xs:string" use="required">
4102
+ <xs:annotation>
4103
+ <xs:documentation>integer (Display column of caption).</xs:documentation>
4104
+ </xs:annotation>
4105
+ </xs:attribute>
4106
+ <xs:attribute name="caption" type="xs:string" use="required">
4107
+ <xs:annotation>
4108
+ <xs:documentation>string (A message that will be displayed).</xs:documentation>
4109
+ </xs:annotation>
4110
+ </xs:attribute>
4111
+ <xs:attribute name="lineinput" type="xs:string" use="required">
4112
+ <xs:annotation>
4113
+ <xs:documentation>integer (Display line of numbers captured).</xs:documentation>
4114
+ </xs:annotation>
4115
+ </xs:attribute>
4116
+ <xs:attribute name="columninput" type="xs:string" use="required">
4117
+ <xs:annotation>
4118
+ <xs:documentation>integer (Display column of numbers captured).</xs:documentation>
4119
+ </xs:annotation>
4120
+ </xs:attribute>
4121
+ <xs:attribute name="minimun" type="xs:string" use="required">
4122
+ <xs:annotation>
4123
+ <xs:documentation>integer (Minimum size of the string we are waiting).</xs:documentation>
4124
+ </xs:annotation>
4125
+ </xs:attribute>
4126
+ <xs:attribute name="maximum" type="xs:string" use="required">
4127
+ <xs:annotation>
4128
+ <xs:documentation>integer (Maximum size of the string we are waiting).</xs:documentation>
4129
+ </xs:annotation>
4130
+ </xs:attribute>
4131
+ <xs:attribute name="allowsempty" type="xs:string" use="required">
4132
+ <xs:annotation>
4133
+ <xs:documentation>string (Boolean Operator that allows return if any key has been not pressed. true or false).</xs:documentation>
4134
+ </xs:annotation>
4135
+ </xs:attribute>
4136
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
4137
+ <xs:annotation>
4138
+ <xs:documentation>string (Return of command).</xs:documentation>
4139
+ </xs:annotation>
4140
+ </xs:attribute>
4141
+ </xs:complexType>
4142
+ <xs:complexType name="string.pad">
4143
+ <xs:sequence />
4144
+ <xs:attribute name="origin" type="xs:string" use="required">
4145
+ <xs:annotation>
4146
+ <xs:documentation>string (The string that receive the pad).</xs:documentation>
4147
+ </xs:annotation>
4148
+ </xs:attribute>
4149
+ <xs:attribute name="destination" type="xs:string" use="required">
4150
+ <xs:annotation>
4151
+ <xs:documentation>string (The variable that receive the string with pad).</xs:documentation>
4152
+ </xs:annotation>
4153
+ </xs:attribute>
4154
+ <xs:attribute name="character" type="xs:string" use="required">
4155
+ <xs:annotation>
4156
+ <xs:documentation>string (The character that will be use on the pad).</xs:documentation>
4157
+ </xs:annotation>
4158
+ </xs:attribute>
4159
+ <xs:attribute name="length" type="xs:string" use="required">
4160
+ <xs:annotation>
4161
+ <xs:documentation>inteiro (Size of string with the pad).</xs:documentation>
4162
+ </xs:annotation>
4163
+ </xs:attribute>
4164
+ <xs:attribute name="align" type="xs:string" use="required">
4165
+ <xs:annotation>
4166
+ <xs:documentation>string (Alignment of the pad, can be left, right or center).</xs:documentation>
4167
+ </xs:annotation>
4168
+ </xs:attribute>
4169
+ </xs:complexType>
4170
+ <xs:complexType name="time.calculate">
4171
+ <xs:sequence />
4172
+ <xs:attribute name="operation" type="xs:string" use="required">
4173
+ <xs:annotation>
4174
+ <xs:documentation>string (sum, less, difference).</xs:documentation>
4175
+ </xs:annotation>
4176
+ </xs:attribute>
4177
+ <xs:attribute name="type" type="xs:string" use="required">
4178
+ <xs:annotation>
4179
+ <xs:documentation>string (Time to calculate(to sum or less), years, months, days, hours, minutes, seconds).</xs:documentation>
4180
+ </xs:annotation>
4181
+ </xs:attribute>
4182
+ <xs:attribute name="date" type="xs:string" use="required">
4183
+ <xs:annotation>
4184
+ <xs:documentation>string (Variable date to be changed or used as a comparison(if operation difference)).</xs:documentation>
4185
+ </xs:annotation>
4186
+ </xs:attribute>
4187
+ <xs:attribute name="greaterdate" type="xs:string" use="required">
4188
+ <xs:annotation>
4189
+ <xs:documentation>string (Greater variable date to be used as a comparison(if operation difference)).</xs:documentation>
4190
+ </xs:annotation>
4191
+ </xs:attribute>
4192
+ <xs:attribute name="value" type="xs:string" use="required">
4193
+ <xs:annotation>
4194
+ <xs:documentation>integer (Value years, months, days, hours, minutes or seconds to be added or subtracted).</xs:documentation>
4195
+ </xs:annotation>
4196
+ </xs:attribute>
4197
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
4198
+ <xs:annotation>
4199
+ <xs:documentation>integer (If difference is operation return the value of the difference in seconds; If operation is sum or less will return 0 success, -1 error).</xs:documentation>
4200
+ </xs:annotation>
4201
+ </xs:attribute>
4202
+ </xs:complexType>
4203
+ <xs:complexType name="paymentchannel.receive">
4204
+ <xs:sequence />
4205
+ <xs:attribute name="socket" type="xs:string" use="required">
4206
+ <xs:annotation>
4207
+ <xs:documentation>integer (Payment channel SSL socket)</xs:documentation>
4208
+ </xs:annotation>
4209
+ </xs:attribute>
4210
+ <xs:attribute name="compressed" type="xs:string" use="required">
4211
+ <xs:annotation>
4212
+ <xs:documentation>integer (1:receive deflated messages 0: non compressed messages)</xs:documentation>
4213
+ </xs:annotation>
4214
+ </xs:attribute>
4215
+ <xs:attribute name="timeout" type="xs:string" use="required">
4216
+ <xs:annotation>
4217
+ <xs:documentation>integer (Timeout in seconds to receive a message)</xs:documentation>
4218
+ </xs:annotation>
4219
+ </xs:attribute>
4220
+ <xs:attribute name="variableresponse" type="xs:string" use="required">
4221
+ <xs:annotation>
4222
+ <xs:documentation>string(Variable with the host response)</xs:documentation>
4223
+ </xs:annotation>
4224
+ </xs:attribute>
4225
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
4226
+ <xs:annotation>
4227
+ <xs:documentation>integer (Number of bytes received from the host or -1 if timeout. It could be 0 and variableresponse is equal 'OPCODE_PING')</xs:documentation>
4228
+ </xs:annotation>
4229
+ </xs:attribute>
4230
+ </xs:complexType>
4231
+ <xs:complexType name="paymentchannel.send">
4232
+ <xs:sequence />
4233
+ <xs:attribute name="socket" type="xs:string" use="required">
4234
+ <xs:annotation>
4235
+ <xs:documentation>integer (Payment channel SSL socket)</xs:documentation>
4236
+ </xs:annotation>
4237
+ </xs:attribute>
4238
+ <xs:attribute name="compressed" type="xs:string" use="required">
4239
+ <xs:annotation>
4240
+ <xs:documentation>integer (1:send deflated messages 0: non compressed messages)</xs:documentation>
4241
+ </xs:annotation>
4242
+ </xs:attribute>
4243
+ <xs:attribute name="msg" type="xs:string" use="required">
4244
+ <xs:annotation>
4245
+ <xs:documentation>string (Variable with the message to be sent to the host)</xs:documentation>
4246
+ </xs:annotation>
4247
+ </xs:attribute>
4248
+ </xs:complexType>
4249
+ <xs:complexType name="paymentchannel.connect">
4250
+ <xs:sequence />
4251
+ <xs:attribute name="variablecompressed" type="xs:string" use="required">
4252
+ <xs:annotation>
4253
+ <xs:documentation>integer (Variable that return from the handshake that indicates if the messages should be sent or received using, 1: deflated messages or 0: non compressed messages)</xs:documentation>
4254
+ </xs:annotation>
4255
+ </xs:attribute>
4256
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
4257
+ <xs:annotation>
4258
+ <xs:documentation>integer (Variable with the SSL socket to be used in the other paymentchannel instructions or error)</xs:documentation>
4259
+ </xs:annotation>
4260
+ </xs:attribute>
4261
+ </xs:complexType>
4262
+ <xs:complexType name="paymentchannel.close">
4263
+ <xs:sequence />
4264
+ <xs:attribute name="socket" type="xs:string" use="required">
4265
+ <xs:annotation>
4266
+ <xs:documentation>integer (Payment channel SSL socket to be closed)</xs:documentation>
4267
+ </xs:annotation>
4268
+ </xs:attribute>
4269
+ </xs:complexType>
4270
+ <xs:complexType name="iso20022.new">
4271
+ <xs:sequence />
4272
+ <xs:attribute name="document" type="xs:string" use="required">
4273
+ <xs:annotation>
4274
+ <xs:documentation>string (Type of message to be started)</xs:documentation>
4275
+ </xs:annotation>
4276
+ </xs:attribute>
4277
+ </xs:complexType>
4278
+ <xs:complexType name="iso20022.add">
4279
+ <xs:sequence />
4280
+ <xs:attribute name="tag" type="xs:string" use="required">
4281
+ <xs:annotation>
4282
+ <xs:documentation>string (Tag name to be add)</xs:documentation>
4283
+ </xs:annotation>
4284
+ </xs:attribute>
4285
+ <xs:attribute name="value" type="xs:string" use="required">
4286
+ <xs:annotation>
4287
+ <xs:documentation>string (Tag value to be add)</xs:documentation>
4288
+ </xs:annotation>
4289
+ </xs:attribute>
4290
+ </xs:complexType>
4291
+ <xs:complexType name="iso20022.build">
4292
+ <xs:sequence />
4293
+ <xs:attribute name="variablereturn" type="xs:string" use="required">
4294
+ <xs:annotation>
4295
+ <xs:documentation>integer (Variable that return if buffer was successufully built, 0: Success; <0: Error)</xs:documentation>
4296
+ </xs:annotation>
4297
+ </xs:attribute>
4298
+ <xs:attribute name="buffer" type="xs:string" use="required">
4299
+ <xs:annotation>
4300
+ <xs:documentation>string (ISO 20022 message)</xs:documentation>
4301
+ </xs:annotation>
4302
+ </xs:attribute>
4303
+ </xs:complexType>
4304
+ </xs:schema>
4305
+ EOF
4306
+ end