1 | <?php |
||
13 | class UpdateCustomerPaymentProfileRequest extends BaseApiRequest |
||
14 | { |
||
15 | |||
16 | /** |
||
17 | * @var \CommerceGuys\AuthNet\DataTypes\PaymentProfile |
||
18 | */ |
||
19 | protected $paymentProfile; |
||
20 | |||
21 | protected $customerProfileId; |
||
22 | |||
23 | protected $validationMode = 'testMode'; |
||
24 | |||
25 | 1 | public function setPaymentProfile(PaymentProfile $profile) |
|
29 | |||
30 | 1 | public function setCustomerProfileId($id) |
|
34 | |||
35 | 1 | public function setValidationMode($validationMode) |
|
39 | |||
40 | 1 | protected function attachData(RequestInterface $request) |
|
46 | } |
||
47 |