summaryrefslogtreecommitdiff
path: root/examples/cxx/tree/order/element/transactions.xml
blob: 4c317c2adf0fd0e50b3e7a59040d0faed86c8997 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
<?xml version="1.0"?>

<!--

file      : examples/cxx/tree/order/element/transactions.xml
copyright : not copyrighted - public domain

-->

<batch xmlns="http://www.codesynthesis.com/transactions"
       xmlns:te="http://www.codesynthesis.com/transactions-extras"
       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
       xsi:schemaLocation="http://www.codesynthesis.com/transactions transactions.xsd">
  <deposit>
    <account>123456789</account>
    <amount>1000000</amount>
  </deposit>

  <balance>
    <account>123456789</account>
  </balance>

  <te:block>
    <account>123456789</account>
    <amount>500000</amount>
  </te:block>

  <withdraw>
    <account>123456789</account>
    <amount>500000</amount>
  </withdraw>
</batch>