Total Complexity | 3 |
Total Lines | 25 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
12 | class DeleteCustomerPaymentProfileRequest extends BaseApiRequest |
||
13 | { |
||
14 | protected $customerProfileId; |
||
15 | protected $customerPaymentProfileId; |
||
16 | |||
17 | /** |
||
18 | * @param mixed $customerProfileId |
||
19 | */ |
||
20 | 1 | public function setCustomerProfileId($customerProfileId) |
|
21 | { |
||
22 | 1 | $this->customerProfileId = $customerProfileId; |
|
23 | 1 | } |
|
24 | |||
25 | /** |
||
26 | * @param mixed $customerPaymentProfileId |
||
27 | */ |
||
28 | 1 | public function setCustomerPaymentProfileId($customerPaymentProfileId) |
|
29 | { |
||
30 | 1 | $this->customerPaymentProfileId = $customerPaymentProfileId; |
|
31 | 1 | } |
|
32 | |||
33 | 1 | protected function attachData(RequestInterface $request) |
|
37 | 1 | } |
|
38 | } |
||
39 |