| Total Complexity | 5 |
| Total Lines | 38 |
| Duplicated Lines | 0 % |
| Coverage | 71.43% |
| Changes | 0 | ||
| 1 | <?php |
||
| 12 | class GetCustomerPaymentProfileRequest extends BaseApiRequest |
||
| 13 | { |
||
| 14 | protected $customerProfileId; |
||
| 15 | protected $customerPaymentProfileId; |
||
| 16 | protected $unmaskExpirationDate = false; |
||
| 17 | |||
| 18 | /** |
||
| 19 | * @param mixed $customerProfileId |
||
| 20 | */ |
||
| 21 | 1 | public function setCustomerProfileId($customerProfileId) |
|
| 22 | { |
||
| 23 | 1 | $this->customerProfileId = $customerProfileId; |
|
| 24 | 1 | } |
|
| 25 | |||
| 26 | /** |
||
| 27 | * @param mixed $customerPaymentProfileId |
||
| 28 | */ |
||
| 29 | 1 | public function setCustomerPaymentProfileId($customerPaymentProfileId) |
|
| 32 | 1 | } |
|
| 33 | |||
| 34 | /** |
||
| 35 | * @param boolean $unmaskExpirationDate |
||
| 36 | */ |
||
| 37 | public function setUnmaskExpirationDate($unmaskExpirationDate) |
||
| 40 | } |
||
| 41 | |||
| 42 | |||
| 43 | |||
| 44 | 1 | protected function attachData(RequestInterface $request) |
|
| 53 |