-
Notifications
You must be signed in to change notification settings - Fork 4
/
basic.php
78 lines (73 loc) · 1.95 KB
/
basic.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
/**
* @author Maksim Khodyrev<[email protected]>
* 30.05.17
*/
require_once __DIR__."/../vendor/autoload.php";
$client = new \Nutnet\RKeeper7Api\Client(array(
'server' => '127.0.0.1'
));
// получить информацию по карте
$client->call(new \Nutnet\RKeeper7Api\Requests\GetCardInfoRequest(array(
'Is_Virtual_Card' => 'yes',
'Image_Format' => array(
'value' => 'JPEG',
'attr' => array(
'Original' => 'yes'
),
),
'Account_Filter' => array(
'children' => array(
'Account_Class' => 2,
'Account_Type_ID' => 1
)
)
)));
$client->call(new \Nutnet\RKeeper7Api\Requests\MakeTransactionRequest(array(
// несколько элементов Transaction
'Transaction' => array(
array(
'children' => array(
'Account_ID' => 1
)
),
array(
'children' => array(
'Account_ID' => 2
)
),
)
)));
// вызвать асинхронно несколько методов
$client->callMulti(array(
new \Nutnet\RKeeper7Api\Requests\MakeTransactionRequest(array(
// несколько элементов Transaction
'Transaction' => array(
array(
'children' => array(
'Account_ID' => 1
)
),
array(
'children' => array(
'Account_ID' => 2
)
),
)
)),
new \Nutnet\RKeeper7Api\Requests\GetCardInfoRequest(array(
'Is_Virtual_Card' => 'yes',
'Image_Format' => array(
'value' => 'JPEG',
'attr' => array(
'Original' => 'yes'
),
),
'Account_Filter' => array(
'children' => array(
'Account_Class' => 2,
'Account_Type_ID' => 1
)
)
))
));