$payment = $client->createPayment(
array(
'amount' => array(
'value' => 100.0,
'currency' => 'RUB',
),
'confirmation' => array(
'type' => 'redirect',
'return_url' => 'http://bossphp.x:8080/#/',
),
'capture' => true,
'description' => 'Заказ №1',
'metadata' => array(
'order_id' => '37',
)
),
uniqid('', true)
);