Total Complexity | 2 |
Total Lines | 32 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
17 | class CreateCustomerProfileFromTransactionRequest extends BaseApiRequest |
||
18 | { |
||
19 | /** |
||
20 | * @var string The transaction ID from a successful payment. |
||
21 | */ |
||
22 | protected $transId; |
||
23 | |||
24 | /** |
||
25 | * Constructs a new CreateCustomerProfileFromTransactionRequest object. |
||
26 | * |
||
27 | * @param Configuration $configuration |
||
28 | * The configuration object containing API credentials. |
||
29 | * @param Client $client |
||
30 | * The HTTP client for making requests. |
||
31 | * @param string $transId |
||
32 | * The transaction ID from an existing successful transaction. |
||
33 | */ |
||
34 | public function __construct( |
||
41 | } |
||
42 | |||
43 | /** |
||
44 | * {@inheritdoc} |
||
45 | */ |
||
46 | protected function attachData(RequestInterface $request) |
||
51 |