| Total Complexity | 2 |
| Total Lines | 16 |
| Duplicated Lines | 0 % |
| Coverage | 0% |
| Changes | 0 | ||
| 1 | <?php |
||
| 13 | class DeleteCustomerProfileRequest extends BaseApiRequest |
||
| 14 | { |
||
| 15 | protected $customerProfileId; |
||
| 16 | |||
| 17 | public function __construct( |
||
| 18 | Configuration $configuration, |
||
| 19 | Client $client, |
||
| 20 | $customerProfileId |
||
| 21 | ) { |
||
| 22 | parent::__construct($configuration, $client); |
||
| 23 | $this->customerProfileId = $customerProfileId; |
||
| 24 | } |
||
| 25 | |||
| 26 | protected function attachData(RequestInterface $request) |
||
| 29 | } |
||
| 30 | } |
||
| 31 |