1 | <?php |
||
5 | class SmsClient extends BaseClient |
||
6 | { |
||
7 | protected $aliases = [ |
||
8 | 'getPageCode' => 'RetrievePageSmsCode', |
||
9 | 'updatePageCode' => 'UpdatePageSmsCode', |
||
10 | 'checkCodeAvailability' => 'CheckSmsCodeAvailability', |
||
11 | ]; |
||
12 | |||
13 | 1 | public function getPageCode($pageShortName) |
|
17 | |||
18 | public function updatePageCode($pageShortName, $updatePageSmsCodeRequest) |
||
19 | { |
||
20 | return $this->put("fundraising/pages/" . $pageShortName . "/sms", $updatePageSmsCodeRequest); |
||
21 | } |
||
22 | |||
23 | 1 | public function checkCodeAvailability($urn) |
|
27 | } |
||
28 |