|
1
|
|
|
<?php |
|
2
|
|
|
|
|
3
|
|
|
namespace Commercetools\Core\Request\Payments\Command; |
|
4
|
|
|
|
|
5
|
|
|
use Commercetools\Core\Model\Common\Context; |
|
6
|
|
|
use Commercetools\Core\Request\CustomField\Command\SetCustomFieldAction; |
|
7
|
|
|
|
|
8
|
|
|
/** |
|
9
|
|
|
* @package Commercetools\Core\Request\Payments\Command |
|
10
|
|
|
* |
|
11
|
|
|
* @method string getAction() |
|
12
|
|
|
* @method PaymentSetTransactionCustomFieldAction setAction(string $action = null) |
|
13
|
|
|
* @method string getTransactionId() |
|
14
|
|
|
* @method PaymentSetTransactionCustomFieldAction setTransactionId(string $transactionId = null) |
|
15
|
|
|
* @method string getName() |
|
16
|
|
|
* @method PaymentSetTransactionCustomFieldAction setName(string $name = null) |
|
17
|
|
|
* @method mixed getValue() |
|
18
|
|
|
* @method PaymentSetTransactionCustomFieldAction setValue($value = null) |
|
19
|
|
|
*/ |
|
20
|
|
|
class PaymentSetTransactionCustomFieldAction extends SetCustomFieldAction |
|
21
|
|
|
{ |
|
22
|
|
|
public function fieldDefinitions() |
|
23
|
|
|
{ |
|
24
|
|
|
return [ |
|
25
|
|
|
'action' => [static::TYPE => 'string'], |
|
26
|
|
|
'name' => [static::TYPE => 'string'], |
|
27
|
|
|
'transactionId' => [static::TYPE => 'string'], |
|
28
|
|
|
'value' => [static::TYPE => null], |
|
29
|
|
|
]; |
|
30
|
|
|
} |
|
31
|
|
|
|
|
32
|
|
|
/** |
|
33
|
|
|
* @param array $data |
|
34
|
|
|
* @param Context|callable $context |
|
35
|
|
|
*/ |
|
36
|
|
|
public function __construct(array $data = [], $context = null) |
|
37
|
|
|
{ |
|
38
|
|
|
parent::__construct($data, $context); |
|
39
|
|
|
$this->setAction('setTransactionCustomField'); |
|
40
|
|
|
} |
|
41
|
|
|
|
|
42
|
|
|
/** |
|
43
|
|
|
* @param string $transactionId |
|
44
|
|
|
* @param string $name |
|
45
|
|
|
* @param Context|callable $context |
|
46
|
|
|
* @return static |
|
47
|
|
|
*/ |
|
48
|
|
|
public static function ofTransactionIdAndName($transactionId, $name, $context = null) |
|
49
|
|
|
{ |
|
50
|
|
|
return static::of($context)->setTransactionId($transactionId)->setName($name); |
|
51
|
|
|
} |
|
52
|
|
|
} |
|
53
|
|
|
|