| Total Complexity | 545 |
| Total Lines | 5774 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
Complex classes like Telephony often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use Telephony, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 12 | class Telephony extends SoapClientBase |
||
| 13 | { |
||
| 14 | /** |
||
| 15 | * Method to call the operation originally named telephonyNumberInfo |
||
| 16 | * @uses SoapClientBase::getSoapClient() |
||
| 17 | * @uses SoapClientBase::setResult() |
||
| 18 | * @uses SoapClientBase::getResult() |
||
| 19 | * @uses SoapClientBase::saveLastError() |
||
| 20 | * @param \Ovh\StructType\TelephonyNumberInfo $parameters |
||
| 21 | * @return \Ovh\StructType\TelephonyNumberInfoResponse|bool |
||
| 22 | */ |
||
| 23 | public function telephonyNumberInfo(\Ovh\StructType\TelephonyNumberInfo $parameters) |
||
| 24 | { |
||
| 25 | try { |
||
| 26 | $this->setResult($this->getSoapClient()->__soapCall('telephonyNumberInfo', array( |
||
| 27 | $parameters, |
||
| 28 | ), array(), array(), $this->outputHeaders)); |
||
| 29 | return $this->getResult(); |
||
| 30 | } catch (\SoapFault $soapFault) { |
||
| 31 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 32 | return false; |
||
| 33 | } |
||
| 34 | } |
||
| 35 | /** |
||
| 36 | * Method to call the operation originally named telephonyVoicemailOptionsList |
||
| 37 | * @uses SoapClientBase::getSoapClient() |
||
| 38 | * @uses SoapClientBase::setResult() |
||
| 39 | * @uses SoapClientBase::getResult() |
||
| 40 | * @uses SoapClientBase::saveLastError() |
||
| 41 | * @param \Ovh\StructType\TelephonyVoicemailOptionsList $parameters |
||
| 42 | * @return \Ovh\StructType\TelephonyVoicemailOptionsListResponse|bool |
||
| 43 | */ |
||
| 44 | public function telephonyVoicemailOptionsList(\Ovh\StructType\TelephonyVoicemailOptionsList $parameters) |
||
| 45 | { |
||
| 46 | try { |
||
| 47 | $this->setResult($this->getSoapClient()->__soapCall('telephonyVoicemailOptionsList', array( |
||
| 48 | $parameters, |
||
| 49 | ), array(), array(), $this->outputHeaders)); |
||
| 50 | return $this->getResult(); |
||
| 51 | } catch (\SoapFault $soapFault) { |
||
| 52 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 53 | return false; |
||
| 54 | } |
||
| 55 | } |
||
| 56 | /** |
||
| 57 | * Method to call the operation originally named telephonyPhonebookSharePeerList |
||
| 58 | * @uses SoapClientBase::getSoapClient() |
||
| 59 | * @uses SoapClientBase::setResult() |
||
| 60 | * @uses SoapClientBase::getResult() |
||
| 61 | * @uses SoapClientBase::saveLastError() |
||
| 62 | * @param \Ovh\StructType\TelephonyPhonebookSharePeerList $parameters |
||
| 63 | * @return \Ovh\StructType\TelephonyPhonebookSharePeerListResponse|bool |
||
| 64 | */ |
||
| 65 | public function telephonyPhonebookSharePeerList(\Ovh\StructType\TelephonyPhonebookSharePeerList $parameters) |
||
| 66 | { |
||
| 67 | try { |
||
| 68 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPhonebookSharePeerList', array( |
||
| 69 | $parameters, |
||
| 70 | ), array(), array(), $this->outputHeaders)); |
||
| 71 | return $this->getResult(); |
||
| 72 | } catch (\SoapFault $soapFault) { |
||
| 73 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 74 | return false; |
||
| 75 | } |
||
| 76 | } |
||
| 77 | /** |
||
| 78 | * Method to call the operation originally named telephonyRedirectModify |
||
| 79 | * @uses SoapClientBase::getSoapClient() |
||
| 80 | * @uses SoapClientBase::setResult() |
||
| 81 | * @uses SoapClientBase::getResult() |
||
| 82 | * @uses SoapClientBase::saveLastError() |
||
| 83 | * @param \Ovh\StructType\TelephonyRedirectModify $parameters |
||
| 84 | * @return \Ovh\StructType\TelephonyRedirectModifyResponse|bool |
||
| 85 | */ |
||
| 86 | public function telephonyRedirectModify(\Ovh\StructType\TelephonyRedirectModify $parameters) |
||
| 87 | { |
||
| 88 | try { |
||
| 89 | $this->setResult($this->getSoapClient()->__soapCall('telephonyRedirectModify', array( |
||
| 90 | $parameters, |
||
| 91 | ), array(), array(), $this->outputHeaders)); |
||
| 92 | return $this->getResult(); |
||
| 93 | } catch (\SoapFault $soapFault) { |
||
| 94 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 95 | return false; |
||
| 96 | } |
||
| 97 | } |
||
| 98 | /** |
||
| 99 | * Method to call the operation originally named telephonyNumberModify |
||
| 100 | * @uses SoapClientBase::getSoapClient() |
||
| 101 | * @uses SoapClientBase::setResult() |
||
| 102 | * @uses SoapClientBase::getResult() |
||
| 103 | * @uses SoapClientBase::saveLastError() |
||
| 104 | * @param \Ovh\StructType\TelephonyNumberModify $parameters |
||
| 105 | * @return \Ovh\StructType\TelephonyNumberModifyResponse|bool |
||
| 106 | */ |
||
| 107 | public function telephonyNumberModify(\Ovh\StructType\TelephonyNumberModify $parameters) |
||
| 108 | { |
||
| 109 | try { |
||
| 110 | $this->setResult($this->getSoapClient()->__soapCall('telephonyNumberModify', array( |
||
| 111 | $parameters, |
||
| 112 | ), array(), array(), $this->outputHeaders)); |
||
| 113 | return $this->getResult(); |
||
| 114 | } catch (\SoapFault $soapFault) { |
||
| 115 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 116 | return false; |
||
| 117 | } |
||
| 118 | } |
||
| 119 | /** |
||
| 120 | * Method to call the operation originally named telephonyGetCitiesFromZip |
||
| 121 | * @uses SoapClientBase::getSoapClient() |
||
| 122 | * @uses SoapClientBase::setResult() |
||
| 123 | * @uses SoapClientBase::getResult() |
||
| 124 | * @uses SoapClientBase::saveLastError() |
||
| 125 | * @param \Ovh\StructType\TelephonyGetCitiesFromZip $parameters |
||
| 126 | * @return \Ovh\StructType\TelephonyGetCitiesFromZipResponse|bool |
||
| 127 | */ |
||
| 128 | public function telephonyGetCitiesFromZip(\Ovh\StructType\TelephonyGetCitiesFromZip $parameters) |
||
| 129 | { |
||
| 130 | try { |
||
| 131 | $this->setResult($this->getSoapClient()->__soapCall('telephonyGetCitiesFromZip', array( |
||
| 132 | $parameters, |
||
| 133 | ), array(), array(), $this->outputHeaders)); |
||
| 134 | return $this->getResult(); |
||
| 135 | } catch (\SoapFault $soapFault) { |
||
| 136 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 137 | return false; |
||
| 138 | } |
||
| 139 | } |
||
| 140 | /** |
||
| 141 | * Method to call the operation originally named telephonySmsplusSendSmsMt |
||
| 142 | * @uses SoapClientBase::getSoapClient() |
||
| 143 | * @uses SoapClientBase::setResult() |
||
| 144 | * @uses SoapClientBase::getResult() |
||
| 145 | * @uses SoapClientBase::saveLastError() |
||
| 146 | * @param \Ovh\StructType\TelephonySmsplusSendSmsMt $parameters |
||
| 147 | * @return \Ovh\StructType\TelephonySmsplusSendSmsMtResponse|bool |
||
| 148 | */ |
||
| 149 | public function telephonySmsplusSendSmsMt(\Ovh\StructType\TelephonySmsplusSendSmsMt $parameters) |
||
| 150 | { |
||
| 151 | try { |
||
| 152 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsplusSendSmsMt', array( |
||
| 153 | $parameters, |
||
| 154 | ), array(), array(), $this->outputHeaders)); |
||
| 155 | return $this->getResult(); |
||
| 156 | } catch (\SoapFault $soapFault) { |
||
| 157 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 158 | return false; |
||
| 159 | } |
||
| 160 | } |
||
| 161 | /** |
||
| 162 | * Method to call the operation originally named telephonySmsUserGetCsvAttachment |
||
| 163 | * @uses SoapClientBase::getSoapClient() |
||
| 164 | * @uses SoapClientBase::setResult() |
||
| 165 | * @uses SoapClientBase::getResult() |
||
| 166 | * @uses SoapClientBase::saveLastError() |
||
| 167 | * @param \Ovh\StructType\TelephonySmsUserGetCsvAttachment $parameters |
||
| 168 | * @return \Ovh\StructType\TelephonySmsUserGetCsvAttachmentResponse|bool |
||
| 169 | */ |
||
| 170 | public function telephonySmsUserGetCsvAttachment(\Ovh\StructType\TelephonySmsUserGetCsvAttachment $parameters) |
||
| 171 | { |
||
| 172 | try { |
||
| 173 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsUserGetCsvAttachment', array( |
||
| 174 | $parameters, |
||
| 175 | ), array(), array(), $this->outputHeaders)); |
||
| 176 | return $this->getResult(); |
||
| 177 | } catch (\SoapFault $soapFault) { |
||
| 178 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 179 | return false; |
||
| 180 | } |
||
| 181 | } |
||
| 182 | /** |
||
| 183 | * Method to call the operation originally named telephonyPhonebookOnSmsList |
||
| 184 | * @uses SoapClientBase::getSoapClient() |
||
| 185 | * @uses SoapClientBase::setResult() |
||
| 186 | * @uses SoapClientBase::getResult() |
||
| 187 | * @uses SoapClientBase::saveLastError() |
||
| 188 | * @param \Ovh\StructType\TelephonyPhonebookOnSmsList $parameters |
||
| 189 | * @return \Ovh\StructType\TelephonyPhonebookOnSmsListResponse|bool |
||
| 190 | */ |
||
| 191 | public function telephonyPhonebookOnSmsList(\Ovh\StructType\TelephonyPhonebookOnSmsList $parameters) |
||
| 192 | { |
||
| 193 | try { |
||
| 194 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPhonebookOnSmsList', array( |
||
| 195 | $parameters, |
||
| 196 | ), array(), array(), $this->outputHeaders)); |
||
| 197 | return $this->getResult(); |
||
| 198 | } catch (\SoapFault $soapFault) { |
||
| 199 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 200 | return false; |
||
| 201 | } |
||
| 202 | } |
||
| 203 | /** |
||
| 204 | * Method to call the operation originally named telephonySetClosureEvents |
||
| 205 | * @uses SoapClientBase::getSoapClient() |
||
| 206 | * @uses SoapClientBase::setResult() |
||
| 207 | * @uses SoapClientBase::getResult() |
||
| 208 | * @uses SoapClientBase::saveLastError() |
||
| 209 | * @param \Ovh\StructType\TelephonySetClosureEvents $parameters |
||
| 210 | * @return \Ovh\StructType\TelephonySetClosureEventsResponse|bool |
||
| 211 | */ |
||
| 212 | public function telephonySetClosureEvents(\Ovh\StructType\TelephonySetClosureEvents $parameters) |
||
| 213 | { |
||
| 214 | try { |
||
| 215 | $this->setResult($this->getSoapClient()->__soapCall('telephonySetClosureEvents', array( |
||
| 216 | $parameters, |
||
| 217 | ), array(), array(), $this->outputHeaders)); |
||
| 218 | return $this->getResult(); |
||
| 219 | } catch (\SoapFault $soapFault) { |
||
| 220 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 221 | return false; |
||
| 222 | } |
||
| 223 | } |
||
| 224 | /** |
||
| 225 | * Method to call the operation originally named telephonyNicSetSipDomain |
||
| 226 | * @uses SoapClientBase::getSoapClient() |
||
| 227 | * @uses SoapClientBase::setResult() |
||
| 228 | * @uses SoapClientBase::getResult() |
||
| 229 | * @uses SoapClientBase::saveLastError() |
||
| 230 | * @param \Ovh\StructType\TelephonyNicSetSipDomain $parameters |
||
| 231 | * @return \Ovh\StructType\TelephonyNicSetSipDomainResponse|bool |
||
| 232 | */ |
||
| 233 | public function telephonyNicSetSipDomain(\Ovh\StructType\TelephonyNicSetSipDomain $parameters) |
||
| 234 | { |
||
| 235 | try { |
||
| 236 | $this->setResult($this->getSoapClient()->__soapCall('telephonyNicSetSipDomain', array( |
||
| 237 | $parameters, |
||
| 238 | ), array(), array(), $this->outputHeaders)); |
||
| 239 | return $this->getResult(); |
||
| 240 | } catch (\SoapFault $soapFault) { |
||
| 241 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 242 | return false; |
||
| 243 | } |
||
| 244 | } |
||
| 245 | /** |
||
| 246 | * Method to call the operation originally named telephonySmsMultiSend |
||
| 247 | * @uses SoapClientBase::getSoapClient() |
||
| 248 | * @uses SoapClientBase::setResult() |
||
| 249 | * @uses SoapClientBase::getResult() |
||
| 250 | * @uses SoapClientBase::saveLastError() |
||
| 251 | * @param \Ovh\StructType\TelephonySmsMultiSend $parameters |
||
| 252 | * @return \Ovh\StructType\TelephonySmsMultiSendResponse|bool |
||
| 253 | */ |
||
| 254 | public function telephonySmsMultiSend(\Ovh\StructType\TelephonySmsMultiSend $parameters) |
||
| 255 | { |
||
| 256 | try { |
||
| 257 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsMultiSend', array( |
||
| 258 | $parameters, |
||
| 259 | ), array(), array(), $this->outputHeaders)); |
||
| 260 | return $this->getResult(); |
||
| 261 | } catch (\SoapFault $soapFault) { |
||
| 262 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 263 | return false; |
||
| 264 | } |
||
| 265 | } |
||
| 266 | /** |
||
| 267 | * Method to call the operation originally named telephonySmsUserAddCsvAttachment |
||
| 268 | * @uses SoapClientBase::getSoapClient() |
||
| 269 | * @uses SoapClientBase::setResult() |
||
| 270 | * @uses SoapClientBase::getResult() |
||
| 271 | * @uses SoapClientBase::saveLastError() |
||
| 272 | * @param \Ovh\StructType\TelephonySmsUserAddCsvAttachment $parameters |
||
| 273 | * @return \Ovh\StructType\TelephonySmsUserAddCsvAttachmentResponse|bool |
||
| 274 | */ |
||
| 275 | public function telephonySmsUserAddCsvAttachment(\Ovh\StructType\TelephonySmsUserAddCsvAttachment $parameters) |
||
| 276 | { |
||
| 277 | try { |
||
| 278 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsUserAddCsvAttachment', array( |
||
| 279 | $parameters, |
||
| 280 | ), array(), array(), $this->outputHeaders)); |
||
| 281 | return $this->getResult(); |
||
| 282 | } catch (\SoapFault $soapFault) { |
||
| 283 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 284 | return false; |
||
| 285 | } |
||
| 286 | } |
||
| 287 | /** |
||
| 288 | * Method to call the operation originally named telephonySpareDel |
||
| 289 | * @uses SoapClientBase::getSoapClient() |
||
| 290 | * @uses SoapClientBase::setResult() |
||
| 291 | * @uses SoapClientBase::getResult() |
||
| 292 | * @uses SoapClientBase::saveLastError() |
||
| 293 | * @param \Ovh\StructType\TelephonySpareDel $parameters |
||
| 294 | * @return \Ovh\StructType\TelephonySpareDelResponse|bool |
||
| 295 | */ |
||
| 296 | public function telephonySpareDel(\Ovh\StructType\TelephonySpareDel $parameters) |
||
| 297 | { |
||
| 298 | try { |
||
| 299 | $this->setResult($this->getSoapClient()->__soapCall('telephonySpareDel', array( |
||
| 300 | $parameters, |
||
| 301 | ), array(), array(), $this->outputHeaders)); |
||
| 302 | return $this->getResult(); |
||
| 303 | } catch (\SoapFault $soapFault) { |
||
| 304 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 305 | return false; |
||
| 306 | } |
||
| 307 | } |
||
| 308 | /** |
||
| 309 | * Method to call the operation originally named telephonyFaxHistory |
||
| 310 | * @uses SoapClientBase::getSoapClient() |
||
| 311 | * @uses SoapClientBase::setResult() |
||
| 312 | * @uses SoapClientBase::getResult() |
||
| 313 | * @uses SoapClientBase::saveLastError() |
||
| 314 | * @param \Ovh\StructType\TelephonyFaxHistory $parameters |
||
| 315 | * @return \Ovh\StructType\TelephonyFaxHistoryResponse|bool |
||
| 316 | */ |
||
| 317 | public function telephonyFaxHistory(\Ovh\StructType\TelephonyFaxHistory $parameters) |
||
| 318 | { |
||
| 319 | try { |
||
| 320 | $this->setResult($this->getSoapClient()->__soapCall('telephonyFaxHistory', array( |
||
| 321 | $parameters, |
||
| 322 | ), array(), array(), $this->outputHeaders)); |
||
| 323 | return $this->getResult(); |
||
| 324 | } catch (\SoapFault $soapFault) { |
||
| 325 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 326 | return false; |
||
| 327 | } |
||
| 328 | } |
||
| 329 | /** |
||
| 330 | * Method to call the operation originally named telephonyFreefaxToVoicefax |
||
| 331 | * @uses SoapClientBase::getSoapClient() |
||
| 332 | * @uses SoapClientBase::setResult() |
||
| 333 | * @uses SoapClientBase::getResult() |
||
| 334 | * @uses SoapClientBase::saveLastError() |
||
| 335 | * @param \Ovh\StructType\TelephonyFreefaxToVoicefax $parameters |
||
| 336 | * @return \Ovh\StructType\TelephonyFreefaxToVoicefaxResponse|bool |
||
| 337 | */ |
||
| 338 | public function telephonyFreefaxToVoicefax(\Ovh\StructType\TelephonyFreefaxToVoicefax $parameters) |
||
| 339 | { |
||
| 340 | try { |
||
| 341 | $this->setResult($this->getSoapClient()->__soapCall('telephonyFreefaxToVoicefax', array( |
||
| 342 | $parameters, |
||
| 343 | ), array(), array(), $this->outputHeaders)); |
||
| 344 | return $this->getResult(); |
||
| 345 | } catch (\SoapFault $soapFault) { |
||
| 346 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 347 | return false; |
||
| 348 | } |
||
| 349 | } |
||
| 350 | /** |
||
| 351 | * Method to call the operation originally named telephonyFaxSend |
||
| 352 | * @uses SoapClientBase::getSoapClient() |
||
| 353 | * @uses SoapClientBase::setResult() |
||
| 354 | * @uses SoapClientBase::getResult() |
||
| 355 | * @uses SoapClientBase::saveLastError() |
||
| 356 | * @param \Ovh\StructType\TelephonyFaxSend $parameters |
||
| 357 | * @return \Ovh\StructType\TelephonyFaxSendResponse|bool |
||
| 358 | */ |
||
| 359 | public function telephonyFaxSend(\Ovh\StructType\TelephonyFaxSend $parameters) |
||
| 360 | { |
||
| 361 | try { |
||
| 362 | $this->setResult($this->getSoapClient()->__soapCall('telephonyFaxSend', array( |
||
| 363 | $parameters, |
||
| 364 | ), array(), array(), $this->outputHeaders)); |
||
| 365 | return $this->getResult(); |
||
| 366 | } catch (\SoapFault $soapFault) { |
||
| 367 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 368 | return false; |
||
| 369 | } |
||
| 370 | } |
||
| 371 | /** |
||
| 372 | * Method to call the operation originally named telephonyRestrictionList |
||
| 373 | * @uses SoapClientBase::getSoapClient() |
||
| 374 | * @uses SoapClientBase::setResult() |
||
| 375 | * @uses SoapClientBase::getResult() |
||
| 376 | * @uses SoapClientBase::saveLastError() |
||
| 377 | * @param \Ovh\StructType\TelephonyRestrictionList $parameters |
||
| 378 | * @return \Ovh\StructType\TelephonyRestrictionListResponse|bool |
||
| 379 | */ |
||
| 380 | public function telephonyRestrictionList(\Ovh\StructType\TelephonyRestrictionList $parameters) |
||
| 381 | { |
||
| 382 | try { |
||
| 383 | $this->setResult($this->getSoapClient()->__soapCall('telephonyRestrictionList', array( |
||
| 384 | $parameters, |
||
| 385 | ), array(), array(), $this->outputHeaders)); |
||
| 386 | return $this->getResult(); |
||
| 387 | } catch (\SoapFault $soapFault) { |
||
| 388 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 389 | return false; |
||
| 390 | } |
||
| 391 | } |
||
| 392 | /** |
||
| 393 | * Method to call the operation originally named telephonyBillList |
||
| 394 | * @uses SoapClientBase::getSoapClient() |
||
| 395 | * @uses SoapClientBase::setResult() |
||
| 396 | * @uses SoapClientBase::getResult() |
||
| 397 | * @uses SoapClientBase::saveLastError() |
||
| 398 | * @param \Ovh\StructType\TelephonyBillList $parameters |
||
| 399 | * @return \Ovh\StructType\TelephonyBillListResponse|bool |
||
| 400 | */ |
||
| 401 | public function telephonyBillList(\Ovh\StructType\TelephonyBillList $parameters) |
||
| 402 | { |
||
| 403 | try { |
||
| 404 | $this->setResult($this->getSoapClient()->__soapCall('telephonyBillList', array( |
||
| 405 | $parameters, |
||
| 406 | ), array(), array(), $this->outputHeaders)); |
||
| 407 | return $this->getResult(); |
||
| 408 | } catch (\SoapFault $soapFault) { |
||
| 409 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 410 | return false; |
||
| 411 | } |
||
| 412 | } |
||
| 413 | /** |
||
| 414 | * Method to call the operation originally named telephonyNumberCustomList |
||
| 415 | * @uses SoapClientBase::getSoapClient() |
||
| 416 | * @uses SoapClientBase::setResult() |
||
| 417 | * @uses SoapClientBase::getResult() |
||
| 418 | * @uses SoapClientBase::saveLastError() |
||
| 419 | * @param \Ovh\StructType\TelephonyNumberCustomList $parameters |
||
| 420 | * @return \Ovh\StructType\TelephonyNumberCustomListResponse|bool |
||
| 421 | */ |
||
| 422 | public function telephonyNumberCustomList(\Ovh\StructType\TelephonyNumberCustomList $parameters) |
||
| 423 | { |
||
| 424 | try { |
||
| 425 | $this->setResult($this->getSoapClient()->__soapCall('telephonyNumberCustomList', array( |
||
| 426 | $parameters, |
||
| 427 | ), array(), array(), $this->outputHeaders)); |
||
| 428 | return $this->getResult(); |
||
| 429 | } catch (\SoapFault $soapFault) { |
||
| 430 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 431 | return false; |
||
| 432 | } |
||
| 433 | } |
||
| 434 | /** |
||
| 435 | * Method to call the operation originally named telephonyPlugAndPhoneSkinModify |
||
| 436 | * @uses SoapClientBase::getSoapClient() |
||
| 437 | * @uses SoapClientBase::setResult() |
||
| 438 | * @uses SoapClientBase::getResult() |
||
| 439 | * @uses SoapClientBase::saveLastError() |
||
| 440 | * @param \Ovh\StructType\TelephonyPlugAndPhoneSkinModify $parameters |
||
| 441 | * @return \Ovh\StructType\TelephonyPlugAndPhoneSkinModifyResponse|bool |
||
| 442 | */ |
||
| 443 | public function telephonyPlugAndPhoneSkinModify(\Ovh\StructType\TelephonyPlugAndPhoneSkinModify $parameters) |
||
| 444 | { |
||
| 445 | try { |
||
| 446 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPlugAndPhoneSkinModify', array( |
||
| 447 | $parameters, |
||
| 448 | ), array(), array(), $this->outputHeaders)); |
||
| 449 | return $this->getResult(); |
||
| 450 | } catch (\SoapFault $soapFault) { |
||
| 451 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 452 | return false; |
||
| 453 | } |
||
| 454 | } |
||
| 455 | /** |
||
| 456 | * Method to call the operation originally named telephonyFaxOptionsModify |
||
| 457 | * @uses SoapClientBase::getSoapClient() |
||
| 458 | * @uses SoapClientBase::setResult() |
||
| 459 | * @uses SoapClientBase::getResult() |
||
| 460 | * @uses SoapClientBase::saveLastError() |
||
| 461 | * @param \Ovh\StructType\TelephonyFaxOptionsModify $parameters |
||
| 462 | * @return \Ovh\StructType\TelephonyFaxOptionsModifyResponse|bool |
||
| 463 | */ |
||
| 464 | public function telephonyFaxOptionsModify(\Ovh\StructType\TelephonyFaxOptionsModify $parameters) |
||
| 465 | { |
||
| 466 | try { |
||
| 467 | $this->setResult($this->getSoapClient()->__soapCall('telephonyFaxOptionsModify', array( |
||
| 468 | $parameters, |
||
| 469 | ), array(), array(), $this->outputHeaders)); |
||
| 470 | return $this->getResult(); |
||
| 471 | } catch (\SoapFault $soapFault) { |
||
| 472 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 473 | return false; |
||
| 474 | } |
||
| 475 | } |
||
| 476 | /** |
||
| 477 | * Method to call the operation originally named telephonyBillingAccountSummary |
||
| 478 | * @uses SoapClientBase::getSoapClient() |
||
| 479 | * @uses SoapClientBase::setResult() |
||
| 480 | * @uses SoapClientBase::getResult() |
||
| 481 | * @uses SoapClientBase::saveLastError() |
||
| 482 | * @param \Ovh\StructType\TelephonyBillingAccountSummary $parameters |
||
| 483 | * @return \Ovh\StructType\TelephonyBillingAccountSummaryResponse|bool |
||
| 484 | */ |
||
| 485 | public function telephonyBillingAccountSummary(\Ovh\StructType\TelephonyBillingAccountSummary $parameters) |
||
| 486 | { |
||
| 487 | try { |
||
| 488 | $this->setResult($this->getSoapClient()->__soapCall('telephonyBillingAccountSummary', array( |
||
| 489 | $parameters, |
||
| 490 | ), array(), array(), $this->outputHeaders)); |
||
| 491 | return $this->getResult(); |
||
| 492 | } catch (\SoapFault $soapFault) { |
||
| 493 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 494 | return false; |
||
| 495 | } |
||
| 496 | } |
||
| 497 | /** |
||
| 498 | * Method to call the operation originally named telephonyConferenceSetAnnounceFile |
||
| 499 | * @uses SoapClientBase::getSoapClient() |
||
| 500 | * @uses SoapClientBase::setResult() |
||
| 501 | * @uses SoapClientBase::getResult() |
||
| 502 | * @uses SoapClientBase::saveLastError() |
||
| 503 | * @param \Ovh\StructType\TelephonyConferenceSetAnnounceFile $parameters |
||
| 504 | * @return \Ovh\StructType\TelephonyConferenceSetAnnounceFileResponse|bool |
||
| 505 | */ |
||
| 506 | public function telephonyConferenceSetAnnounceFile(\Ovh\StructType\TelephonyConferenceSetAnnounceFile $parameters) |
||
| 507 | { |
||
| 508 | try { |
||
| 509 | $this->setResult($this->getSoapClient()->__soapCall('telephonyConferenceSetAnnounceFile', array( |
||
| 510 | $parameters, |
||
| 511 | ), array(), array(), $this->outputHeaders)); |
||
| 512 | return $this->getResult(); |
||
| 513 | } catch (\SoapFault $soapFault) { |
||
| 514 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 515 | return false; |
||
| 516 | } |
||
| 517 | } |
||
| 518 | /** |
||
| 519 | * Method to call the operation originally named telephonyPhonebookOnSmsAdd |
||
| 520 | * @uses SoapClientBase::getSoapClient() |
||
| 521 | * @uses SoapClientBase::setResult() |
||
| 522 | * @uses SoapClientBase::getResult() |
||
| 523 | * @uses SoapClientBase::saveLastError() |
||
| 524 | * @param \Ovh\StructType\TelephonyPhonebookOnSmsAdd $parameters |
||
| 525 | * @return \Ovh\StructType\TelephonyPhonebookOnSmsAddResponse|bool |
||
| 526 | */ |
||
| 527 | public function telephonyPhonebookOnSmsAdd(\Ovh\StructType\TelephonyPhonebookOnSmsAdd $parameters) |
||
| 528 | { |
||
| 529 | try { |
||
| 530 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPhonebookOnSmsAdd', array( |
||
| 531 | $parameters, |
||
| 532 | ), array(), array(), $this->outputHeaders)); |
||
| 533 | return $this->getResult(); |
||
| 534 | } catch (\SoapFault $soapFault) { |
||
| 535 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 536 | return false; |
||
| 537 | } |
||
| 538 | } |
||
| 539 | /** |
||
| 540 | * Method to call the operation originally named telephonyClick2CallUserDel |
||
| 541 | * @uses SoapClientBase::getSoapClient() |
||
| 542 | * @uses SoapClientBase::setResult() |
||
| 543 | * @uses SoapClientBase::getResult() |
||
| 544 | * @uses SoapClientBase::saveLastError() |
||
| 545 | * @param \Ovh\StructType\TelephonyClick2CallUserDel $parameters |
||
| 546 | * @return \Ovh\StructType\TelephonyClick2CallUserDelResponse|bool |
||
| 547 | */ |
||
| 548 | public function telephonyClick2CallUserDel(\Ovh\StructType\TelephonyClick2CallUserDel $parameters) |
||
| 549 | { |
||
| 550 | try { |
||
| 551 | $this->setResult($this->getSoapClient()->__soapCall('telephonyClick2CallUserDel', array( |
||
| 552 | $parameters, |
||
| 553 | ), array(), array(), $this->outputHeaders)); |
||
| 554 | return $this->getResult(); |
||
| 555 | } catch (\SoapFault $soapFault) { |
||
| 556 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 557 | return false; |
||
| 558 | } |
||
| 559 | } |
||
| 560 | /** |
||
| 561 | * Method to call the operation originally named telephonySmsAccountList |
||
| 562 | * @uses SoapClientBase::getSoapClient() |
||
| 563 | * @uses SoapClientBase::setResult() |
||
| 564 | * @uses SoapClientBase::getResult() |
||
| 565 | * @uses SoapClientBase::saveLastError() |
||
| 566 | * @param \Ovh\StructType\TelephonySmsAccountList $parameters |
||
| 567 | * @return \Ovh\StructType\TelephonySmsAccountListResponse|bool |
||
| 568 | */ |
||
| 569 | public function telephonySmsAccountList(\Ovh\StructType\TelephonySmsAccountList $parameters) |
||
| 570 | { |
||
| 571 | try { |
||
| 572 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsAccountList', array( |
||
| 573 | $parameters, |
||
| 574 | ), array(), array(), $this->outputHeaders)); |
||
| 575 | return $this->getResult(); |
||
| 576 | } catch (\SoapFault $soapFault) { |
||
| 577 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 578 | return false; |
||
| 579 | } |
||
| 580 | } |
||
| 581 | /** |
||
| 582 | * Method to call the operation originally named |
||
| 583 | * telephonyBillingAccountConsumptionCSVByMail |
||
| 584 | * @uses SoapClientBase::getSoapClient() |
||
| 585 | * @uses SoapClientBase::setResult() |
||
| 586 | * @uses SoapClientBase::getResult() |
||
| 587 | * @uses SoapClientBase::saveLastError() |
||
| 588 | * @param \Ovh\StructType\TelephonyBillingAccountConsumptionCSVByMail $parameters |
||
| 589 | * @return \Ovh\StructType\TelephonyBillingAccountConsumptionCSVByMailResponse|bool |
||
| 590 | */ |
||
| 591 | public function telephonyBillingAccountConsumptionCSVByMail(\Ovh\StructType\TelephonyBillingAccountConsumptionCSVByMail $parameters) |
||
| 592 | { |
||
| 593 | try { |
||
| 594 | $this->setResult($this->getSoapClient()->__soapCall('telephonyBillingAccountConsumptionCSVByMail', array( |
||
| 595 | $parameters, |
||
| 596 | ), array(), array(), $this->outputHeaders)); |
||
| 597 | return $this->getResult(); |
||
| 598 | } catch (\SoapFault $soapFault) { |
||
| 599 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 600 | return false; |
||
| 601 | } |
||
| 602 | } |
||
| 603 | /** |
||
| 604 | * Method to call the operation originally named |
||
| 605 | * telephonyFMHuntingModificationVoicemail |
||
| 606 | * @uses SoapClientBase::getSoapClient() |
||
| 607 | * @uses SoapClientBase::setResult() |
||
| 608 | * @uses SoapClientBase::getResult() |
||
| 609 | * @uses SoapClientBase::saveLastError() |
||
| 610 | * @param \Ovh\StructType\TelephonyFMHuntingModificationVoicemail $parameters |
||
| 611 | * @return \Ovh\StructType\TelephonyFMHuntingModificationVoicemailResponse|bool |
||
| 612 | */ |
||
| 613 | public function telephonyFMHuntingModificationVoicemail(\Ovh\StructType\TelephonyFMHuntingModificationVoicemail $parameters) |
||
| 614 | { |
||
| 615 | try { |
||
| 616 | $this->setResult($this->getSoapClient()->__soapCall('telephonyFMHuntingModificationVoicemail', array( |
||
| 617 | $parameters, |
||
| 618 | ), array(), array(), $this->outputHeaders)); |
||
| 619 | return $this->getResult(); |
||
| 620 | } catch (\SoapFault $soapFault) { |
||
| 621 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 622 | return false; |
||
| 623 | } |
||
| 624 | } |
||
| 625 | /** |
||
| 626 | * Method to call the operation originally named telephonyOrdersFollowingUp |
||
| 627 | * @uses SoapClientBase::getSoapClient() |
||
| 628 | * @uses SoapClientBase::setResult() |
||
| 629 | * @uses SoapClientBase::getResult() |
||
| 630 | * @uses SoapClientBase::saveLastError() |
||
| 631 | * @param \Ovh\StructType\TelephonyOrdersFollowingUp $parameters |
||
| 632 | * @return \Ovh\StructType\TelephonyOrdersFollowingUpResponse|bool |
||
| 633 | */ |
||
| 634 | public function telephonyOrdersFollowingUp(\Ovh\StructType\TelephonyOrdersFollowingUp $parameters) |
||
| 635 | { |
||
| 636 | try { |
||
| 637 | $this->setResult($this->getSoapClient()->__soapCall('telephonyOrdersFollowingUp', array( |
||
| 638 | $parameters, |
||
| 639 | ), array(), array(), $this->outputHeaders)); |
||
| 640 | return $this->getResult(); |
||
| 641 | } catch (\SoapFault $soapFault) { |
||
| 642 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 643 | return false; |
||
| 644 | } |
||
| 645 | } |
||
| 646 | /** |
||
| 647 | * Method to call the operation originally named |
||
| 648 | * telephonyPhonebookOnGroupContactAdd |
||
| 649 | * @uses SoapClientBase::getSoapClient() |
||
| 650 | * @uses SoapClientBase::setResult() |
||
| 651 | * @uses SoapClientBase::getResult() |
||
| 652 | * @uses SoapClientBase::saveLastError() |
||
| 653 | * @param \Ovh\StructType\TelephonyPhonebookOnGroupContactAdd $parameters |
||
| 654 | * @return \Ovh\StructType\TelephonyPhonebookOnGroupContactAddResponse|bool |
||
| 655 | */ |
||
| 656 | public function telephonyPhonebookOnGroupContactAdd(\Ovh\StructType\TelephonyPhonebookOnGroupContactAdd $parameters) |
||
| 657 | { |
||
| 658 | try { |
||
| 659 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPhonebookOnGroupContactAdd', array( |
||
| 660 | $parameters, |
||
| 661 | ), array(), array(), $this->outputHeaders)); |
||
| 662 | return $this->getResult(); |
||
| 663 | } catch (\SoapFault $soapFault) { |
||
| 664 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 665 | return false; |
||
| 666 | } |
||
| 667 | } |
||
| 668 | /** |
||
| 669 | * Method to call the operation originally named telephonyBillDetailsCSV |
||
| 670 | * @uses SoapClientBase::getSoapClient() |
||
| 671 | * @uses SoapClientBase::setResult() |
||
| 672 | * @uses SoapClientBase::getResult() |
||
| 673 | * @uses SoapClientBase::saveLastError() |
||
| 674 | * @param \Ovh\StructType\TelephonyBillDetailsCSV $parameters |
||
| 675 | * @return \Ovh\StructType\TelephonyBillDetailsCSVResponse|bool |
||
| 676 | */ |
||
| 677 | public function telephonyBillDetailsCSV(\Ovh\StructType\TelephonyBillDetailsCSV $parameters) |
||
| 678 | { |
||
| 679 | try { |
||
| 680 | $this->setResult($this->getSoapClient()->__soapCall('telephonyBillDetailsCSV', array( |
||
| 681 | $parameters, |
||
| 682 | ), array(), array(), $this->outputHeaders)); |
||
| 683 | return $this->getResult(); |
||
| 684 | } catch (\SoapFault $soapFault) { |
||
| 685 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 686 | return false; |
||
| 687 | } |
||
| 688 | } |
||
| 689 | /** |
||
| 690 | * Method to call the operation originally named telephonySmsCreditLeft |
||
| 691 | * @uses SoapClientBase::getSoapClient() |
||
| 692 | * @uses SoapClientBase::setResult() |
||
| 693 | * @uses SoapClientBase::getResult() |
||
| 694 | * @uses SoapClientBase::saveLastError() |
||
| 695 | * @param \Ovh\StructType\TelephonySmsCreditLeft $parameters |
||
| 696 | * @return \Ovh\StructType\TelephonySmsCreditLeftResponse|bool |
||
| 697 | */ |
||
| 698 | public function telephonySmsCreditLeft(\Ovh\StructType\TelephonySmsCreditLeft $parameters) |
||
| 699 | { |
||
| 700 | try { |
||
| 701 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsCreditLeft', array( |
||
| 702 | $parameters, |
||
| 703 | ), array(), array(), $this->outputHeaders)); |
||
| 704 | return $this->getResult(); |
||
| 705 | } catch (\SoapFault $soapFault) { |
||
| 706 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 707 | return false; |
||
| 708 | } |
||
| 709 | } |
||
| 710 | /** |
||
| 711 | * Method to call the operation originally named telephonyDirectoryPJCode |
||
| 712 | * @uses SoapClientBase::getSoapClient() |
||
| 713 | * @uses SoapClientBase::setResult() |
||
| 714 | * @uses SoapClientBase::getResult() |
||
| 715 | * @uses SoapClientBase::saveLastError() |
||
| 716 | * @param \Ovh\StructType\TelephonyDirectoryPJCode $parameters |
||
| 717 | * @return \Ovh\StructType\TelephonyDirectoryPJCodeResponse|bool |
||
| 718 | */ |
||
| 719 | public function telephonyDirectoryPJCode(\Ovh\StructType\TelephonyDirectoryPJCode $parameters) |
||
| 720 | { |
||
| 721 | try { |
||
| 722 | $this->setResult($this->getSoapClient()->__soapCall('telephonyDirectoryPJCode', array( |
||
| 723 | $parameters, |
||
| 724 | ), array(), array(), $this->outputHeaders)); |
||
| 725 | return $this->getResult(); |
||
| 726 | } catch (\SoapFault $soapFault) { |
||
| 727 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 728 | return false; |
||
| 729 | } |
||
| 730 | } |
||
| 731 | /** |
||
| 732 | * Method to call the operation originally named |
||
| 733 | * telephonyListSummationCallsFromBillingAccount |
||
| 734 | * @uses SoapClientBase::getSoapClient() |
||
| 735 | * @uses SoapClientBase::setResult() |
||
| 736 | * @uses SoapClientBase::getResult() |
||
| 737 | * @uses SoapClientBase::saveLastError() |
||
| 738 | * @param \Ovh\StructType\TelephonyListSummationCallsFromBillingAccount $parameters |
||
| 739 | * @return \Ovh\StructType\TelephonyListSummationCallsFromBillingAccountResponse|bool |
||
| 740 | */ |
||
| 741 | public function telephonyListSummationCallsFromBillingAccount(\Ovh\StructType\TelephonyListSummationCallsFromBillingAccount $parameters) |
||
| 742 | { |
||
| 743 | try { |
||
| 744 | $this->setResult($this->getSoapClient()->__soapCall('telephonyListSummationCallsFromBillingAccount', array( |
||
| 745 | $parameters, |
||
| 746 | ), array(), array(), $this->outputHeaders)); |
||
| 747 | return $this->getResult(); |
||
| 748 | } catch (\SoapFault $soapFault) { |
||
| 749 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 750 | return false; |
||
| 751 | } |
||
| 752 | } |
||
| 753 | /** |
||
| 754 | * Method to call the operation originally named |
||
| 755 | * telephonyBillingAccountDescriptionModify |
||
| 756 | * @uses SoapClientBase::getSoapClient() |
||
| 757 | * @uses SoapClientBase::setResult() |
||
| 758 | * @uses SoapClientBase::getResult() |
||
| 759 | * @uses SoapClientBase::saveLastError() |
||
| 760 | * @param \Ovh\StructType\TelephonyBillingAccountDescriptionModify $parameters |
||
| 761 | * @return \Ovh\StructType\TelephonyBillingAccountDescriptionModifyResponse|bool |
||
| 762 | */ |
||
| 763 | public function telephonyBillingAccountDescriptionModify(\Ovh\StructType\TelephonyBillingAccountDescriptionModify $parameters) |
||
| 764 | { |
||
| 765 | try { |
||
| 766 | $this->setResult($this->getSoapClient()->__soapCall('telephonyBillingAccountDescriptionModify', array( |
||
| 767 | $parameters, |
||
| 768 | ), array(), array(), $this->outputHeaders)); |
||
| 769 | return $this->getResult(); |
||
| 770 | } catch (\SoapFault $soapFault) { |
||
| 771 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 772 | return false; |
||
| 773 | } |
||
| 774 | } |
||
| 775 | /** |
||
| 776 | * Method to call the operation originally named telephonyAbbreviatedNumberDel |
||
| 777 | * @uses SoapClientBase::getSoapClient() |
||
| 778 | * @uses SoapClientBase::setResult() |
||
| 779 | * @uses SoapClientBase::getResult() |
||
| 780 | * @uses SoapClientBase::saveLastError() |
||
| 781 | * @param \Ovh\StructType\TelephonyAbbreviatedNumberDel $parameters |
||
| 782 | * @return \Ovh\StructType\TelephonyAbbreviatedNumberDelResponse|bool |
||
| 783 | */ |
||
| 784 | public function telephonyAbbreviatedNumberDel(\Ovh\StructType\TelephonyAbbreviatedNumberDel $parameters) |
||
| 785 | { |
||
| 786 | try { |
||
| 787 | $this->setResult($this->getSoapClient()->__soapCall('telephonyAbbreviatedNumberDel', array( |
||
| 788 | $parameters, |
||
| 789 | ), array(), array(), $this->outputHeaders)); |
||
| 790 | return $this->getResult(); |
||
| 791 | } catch (\SoapFault $soapFault) { |
||
| 792 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 793 | return false; |
||
| 794 | } |
||
| 795 | } |
||
| 796 | /** |
||
| 797 | * Method to call the operation originally named telephonyFaxOptionsList |
||
| 798 | * @uses SoapClientBase::getSoapClient() |
||
| 799 | * @uses SoapClientBase::setResult() |
||
| 800 | * @uses SoapClientBase::getResult() |
||
| 801 | * @uses SoapClientBase::saveLastError() |
||
| 802 | * @param \Ovh\StructType\TelephonyFaxOptionsList $parameters |
||
| 803 | * @return \Ovh\StructType\TelephonyFaxOptionsListResponse|bool |
||
| 804 | */ |
||
| 805 | public function telephonyFaxOptionsList(\Ovh\StructType\TelephonyFaxOptionsList $parameters) |
||
| 806 | { |
||
| 807 | try { |
||
| 808 | $this->setResult($this->getSoapClient()->__soapCall('telephonyFaxOptionsList', array( |
||
| 809 | $parameters, |
||
| 810 | ), array(), array(), $this->outputHeaders)); |
||
| 811 | return $this->getResult(); |
||
| 812 | } catch (\SoapFault $soapFault) { |
||
| 813 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 814 | return false; |
||
| 815 | } |
||
| 816 | } |
||
| 817 | /** |
||
| 818 | * Method to call the operation originally named |
||
| 819 | * telephonyTrunkExternalDisplayedNumberAdd |
||
| 820 | * @uses SoapClientBase::getSoapClient() |
||
| 821 | * @uses SoapClientBase::setResult() |
||
| 822 | * @uses SoapClientBase::getResult() |
||
| 823 | * @uses SoapClientBase::saveLastError() |
||
| 824 | * @param \Ovh\StructType\TelephonyTrunkExternalDisplayedNumberAdd $parameters |
||
| 825 | * @return \Ovh\StructType\TelephonyTrunkExternalDisplayedNumberAddResponse|bool |
||
| 826 | */ |
||
| 827 | public function telephonyTrunkExternalDisplayedNumberAdd(\Ovh\StructType\TelephonyTrunkExternalDisplayedNumberAdd $parameters) |
||
| 828 | { |
||
| 829 | try { |
||
| 830 | $this->setResult($this->getSoapClient()->__soapCall('telephonyTrunkExternalDisplayedNumberAdd', array( |
||
| 831 | $parameters, |
||
| 832 | ), array(), array(), $this->outputHeaders)); |
||
| 833 | return $this->getResult(); |
||
| 834 | } catch (\SoapFault $soapFault) { |
||
| 835 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 836 | return false; |
||
| 837 | } |
||
| 838 | } |
||
| 839 | /** |
||
| 840 | * Method to call the operation originally named telephonyBillingAccountSet |
||
| 841 | * @uses SoapClientBase::getSoapClient() |
||
| 842 | * @uses SoapClientBase::setResult() |
||
| 843 | * @uses SoapClientBase::getResult() |
||
| 844 | * @uses SoapClientBase::saveLastError() |
||
| 845 | * @param \Ovh\StructType\TelephonyBillingAccountSet $parameters |
||
| 846 | * @return \Ovh\StructType\TelephonyBillingAccountSetResponse|bool |
||
| 847 | */ |
||
| 848 | public function telephonyBillingAccountSet(\Ovh\StructType\TelephonyBillingAccountSet $parameters) |
||
| 849 | { |
||
| 850 | try { |
||
| 851 | $this->setResult($this->getSoapClient()->__soapCall('telephonyBillingAccountSet', array( |
||
| 852 | $parameters, |
||
| 853 | ), array(), array(), $this->outputHeaders)); |
||
| 854 | return $this->getResult(); |
||
| 855 | } catch (\SoapFault $soapFault) { |
||
| 856 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 857 | return false; |
||
| 858 | } |
||
| 859 | } |
||
| 860 | /** |
||
| 861 | * Method to call the operation originally named telephonyDepositMovementModify |
||
| 862 | * @uses SoapClientBase::getSoapClient() |
||
| 863 | * @uses SoapClientBase::setResult() |
||
| 864 | * @uses SoapClientBase::getResult() |
||
| 865 | * @uses SoapClientBase::saveLastError() |
||
| 866 | * @param \Ovh\StructType\TelephonyDepositMovementModify $parameters |
||
| 867 | * @return \Ovh\StructType\TelephonyDepositMovementModifyResponse|bool |
||
| 868 | */ |
||
| 869 | public function telephonyDepositMovementModify(\Ovh\StructType\TelephonyDepositMovementModify $parameters) |
||
| 870 | { |
||
| 871 | try { |
||
| 872 | $this->setResult($this->getSoapClient()->__soapCall('telephonyDepositMovementModify', array( |
||
| 873 | $parameters, |
||
| 874 | ), array(), array(), $this->outputHeaders)); |
||
| 875 | return $this->getResult(); |
||
| 876 | } catch (\SoapFault $soapFault) { |
||
| 877 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 878 | return false; |
||
| 879 | } |
||
| 880 | } |
||
| 881 | /** |
||
| 882 | * Method to call the operation originally named telephonyClick2CallDo |
||
| 883 | * @uses SoapClientBase::getSoapClient() |
||
| 884 | * @uses SoapClientBase::setResult() |
||
| 885 | * @uses SoapClientBase::getResult() |
||
| 886 | * @uses SoapClientBase::saveLastError() |
||
| 887 | * @param \Ovh\StructType\TelephonyClick2CallDo $parameters |
||
| 888 | * @return \Ovh\StructType\TelephonyClick2CallDoResponse|bool |
||
| 889 | */ |
||
| 890 | public function telephonyClick2CallDo(\Ovh\StructType\TelephonyClick2CallDo $parameters) |
||
| 891 | { |
||
| 892 | try { |
||
| 893 | $this->setResult($this->getSoapClient()->__soapCall('telephonyClick2CallDo', array( |
||
| 894 | $parameters, |
||
| 895 | ), array(), array(), $this->outputHeaders)); |
||
| 896 | return $this->getResult(); |
||
| 897 | } catch (\SoapFault $soapFault) { |
||
| 898 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 899 | return false; |
||
| 900 | } |
||
| 901 | } |
||
| 902 | /** |
||
| 903 | * Method to call the operation originally named telephonySpecialNumberOrder |
||
| 904 | * @uses SoapClientBase::getSoapClient() |
||
| 905 | * @uses SoapClientBase::setResult() |
||
| 906 | * @uses SoapClientBase::getResult() |
||
| 907 | * @uses SoapClientBase::saveLastError() |
||
| 908 | * @param \Ovh\StructType\TelephonySpecialNumberOrder $parameters |
||
| 909 | * @return \Ovh\StructType\TelephonySpecialNumberOrderResponse|bool |
||
| 910 | */ |
||
| 911 | public function telephonySpecialNumberOrder(\Ovh\StructType\TelephonySpecialNumberOrder $parameters) |
||
| 912 | { |
||
| 913 | try { |
||
| 914 | $this->setResult($this->getSoapClient()->__soapCall('telephonySpecialNumberOrder', array( |
||
| 915 | $parameters, |
||
| 916 | ), array(), array(), $this->outputHeaders)); |
||
| 917 | return $this->getResult(); |
||
| 918 | } catch (\SoapFault $soapFault) { |
||
| 919 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 920 | return false; |
||
| 921 | } |
||
| 922 | } |
||
| 923 | /** |
||
| 924 | * Method to call the operation originally named telephonyVoicemailOptionsModify |
||
| 925 | * @uses SoapClientBase::getSoapClient() |
||
| 926 | * @uses SoapClientBase::setResult() |
||
| 927 | * @uses SoapClientBase::getResult() |
||
| 928 | * @uses SoapClientBase::saveLastError() |
||
| 929 | * @param \Ovh\StructType\TelephonyVoicemailOptionsModify $parameters |
||
| 930 | * @return \Ovh\StructType\TelephonyVoicemailOptionsModifyResponse|bool |
||
| 931 | */ |
||
| 932 | public function telephonyVoicemailOptionsModify(\Ovh\StructType\TelephonyVoicemailOptionsModify $parameters) |
||
| 933 | { |
||
| 934 | try { |
||
| 935 | $this->setResult($this->getSoapClient()->__soapCall('telephonyVoicemailOptionsModify', array( |
||
| 936 | $parameters, |
||
| 937 | ), array(), array(), $this->outputHeaders)); |
||
| 938 | return $this->getResult(); |
||
| 939 | } catch (\SoapFault $soapFault) { |
||
| 940 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 941 | return false; |
||
| 942 | } |
||
| 943 | } |
||
| 944 | /** |
||
| 945 | * Method to call the operation originally named telephonyLineSwitchOldOffer |
||
| 946 | * @uses SoapClientBase::getSoapClient() |
||
| 947 | * @uses SoapClientBase::setResult() |
||
| 948 | * @uses SoapClientBase::getResult() |
||
| 949 | * @uses SoapClientBase::saveLastError() |
||
| 950 | * @param \Ovh\StructType\TelephonyLineSwitchOldOffer $parameters |
||
| 951 | * @return \Ovh\StructType\TelephonyLineSwitchOldOfferResponse|bool |
||
| 952 | */ |
||
| 953 | public function telephonyLineSwitchOldOffer(\Ovh\StructType\TelephonyLineSwitchOldOffer $parameters) |
||
| 954 | { |
||
| 955 | try { |
||
| 956 | $this->setResult($this->getSoapClient()->__soapCall('telephonyLineSwitchOldOffer', array( |
||
| 957 | $parameters, |
||
| 958 | ), array(), array(), $this->outputHeaders)); |
||
| 959 | return $this->getResult(); |
||
| 960 | } catch (\SoapFault $soapFault) { |
||
| 961 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 962 | return false; |
||
| 963 | } |
||
| 964 | } |
||
| 965 | /** |
||
| 966 | * Method to call the operation originally named |
||
| 967 | * telephonyPhonebookOnGroupContactDel |
||
| 968 | * @uses SoapClientBase::getSoapClient() |
||
| 969 | * @uses SoapClientBase::setResult() |
||
| 970 | * @uses SoapClientBase::getResult() |
||
| 971 | * @uses SoapClientBase::saveLastError() |
||
| 972 | * @param \Ovh\StructType\TelephonyPhonebookOnGroupContactDel $parameters |
||
| 973 | * @return \Ovh\StructType\TelephonyPhonebookOnGroupContactDelResponse|bool |
||
| 974 | */ |
||
| 975 | public function telephonyPhonebookOnGroupContactDel(\Ovh\StructType\TelephonyPhonebookOnGroupContactDel $parameters) |
||
| 976 | { |
||
| 977 | try { |
||
| 978 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPhonebookOnGroupContactDel', array( |
||
| 979 | $parameters, |
||
| 980 | ), array(), array(), $this->outputHeaders)); |
||
| 981 | return $this->getResult(); |
||
| 982 | } catch (\SoapFault $soapFault) { |
||
| 983 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 984 | return false; |
||
| 985 | } |
||
| 986 | } |
||
| 987 | /** |
||
| 988 | * Method to call the operation originally named telephonySpareAdd |
||
| 989 | * @uses SoapClientBase::getSoapClient() |
||
| 990 | * @uses SoapClientBase::setResult() |
||
| 991 | * @uses SoapClientBase::getResult() |
||
| 992 | * @uses SoapClientBase::saveLastError() |
||
| 993 | * @param \Ovh\StructType\TelephonySpareAdd $parameters |
||
| 994 | * @return \Ovh\StructType\TelephonySpareAddResponse|bool |
||
| 995 | */ |
||
| 996 | public function telephonySpareAdd(\Ovh\StructType\TelephonySpareAdd $parameters) |
||
| 997 | { |
||
| 998 | try { |
||
| 999 | $this->setResult($this->getSoapClient()->__soapCall('telephonySpareAdd', array( |
||
| 1000 | $parameters, |
||
| 1001 | ), array(), array(), $this->outputHeaders)); |
||
| 1002 | return $this->getResult(); |
||
| 1003 | } catch (\SoapFault $soapFault) { |
||
| 1004 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1005 | return false; |
||
| 1006 | } |
||
| 1007 | } |
||
| 1008 | /** |
||
| 1009 | * Method to call the operation originally named telephonySmsAddCsvAttachment |
||
| 1010 | * @uses SoapClientBase::getSoapClient() |
||
| 1011 | * @uses SoapClientBase::setResult() |
||
| 1012 | * @uses SoapClientBase::getResult() |
||
| 1013 | * @uses SoapClientBase::saveLastError() |
||
| 1014 | * @param \Ovh\StructType\TelephonySmsAddCsvAttachment $parameters |
||
| 1015 | * @return \Ovh\StructType\TelephonySmsAddCsvAttachmentResponse|bool |
||
| 1016 | */ |
||
| 1017 | public function telephonySmsAddCsvAttachment(\Ovh\StructType\TelephonySmsAddCsvAttachment $parameters) |
||
| 1018 | { |
||
| 1019 | try { |
||
| 1020 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsAddCsvAttachment', array( |
||
| 1021 | $parameters, |
||
| 1022 | ), array(), array(), $this->outputHeaders)); |
||
| 1023 | return $this->getResult(); |
||
| 1024 | } catch (\SoapFault $soapFault) { |
||
| 1025 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1026 | return false; |
||
| 1027 | } |
||
| 1028 | } |
||
| 1029 | /** |
||
| 1030 | * Method to call the operation originally named |
||
| 1031 | * telephonyDefaultPrivateHolidaysEvents |
||
| 1032 | * @uses SoapClientBase::getSoapClient() |
||
| 1033 | * @uses SoapClientBase::setResult() |
||
| 1034 | * @uses SoapClientBase::getResult() |
||
| 1035 | * @uses SoapClientBase::saveLastError() |
||
| 1036 | * @param \Ovh\StructType\TelephonyDefaultPrivateHolidaysEvents $parameters |
||
| 1037 | * @return \Ovh\StructType\TelephonyDefaultPrivateHolidaysEventsResponse|bool |
||
| 1038 | */ |
||
| 1039 | public function telephonyDefaultPrivateHolidaysEvents(\Ovh\StructType\TelephonyDefaultPrivateHolidaysEvents $parameters) |
||
| 1040 | { |
||
| 1041 | try { |
||
| 1042 | $this->setResult($this->getSoapClient()->__soapCall('telephonyDefaultPrivateHolidaysEvents', array( |
||
| 1043 | $parameters, |
||
| 1044 | ), array(), array(), $this->outputHeaders)); |
||
| 1045 | return $this->getResult(); |
||
| 1046 | } catch (\SoapFault $soapFault) { |
||
| 1047 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1048 | return false; |
||
| 1049 | } |
||
| 1050 | } |
||
| 1051 | /** |
||
| 1052 | * Method to call the operation originally named telephonyToneRemoteUpload |
||
| 1053 | * @uses SoapClientBase::getSoapClient() |
||
| 1054 | * @uses SoapClientBase::setResult() |
||
| 1055 | * @uses SoapClientBase::getResult() |
||
| 1056 | * @uses SoapClientBase::saveLastError() |
||
| 1057 | * @param \Ovh\StructType\TelephonyToneRemoteUpload $parameters |
||
| 1058 | * @return \Ovh\StructType\TelephonyToneRemoteUploadResponse|bool |
||
| 1059 | */ |
||
| 1060 | public function telephonyToneRemoteUpload(\Ovh\StructType\TelephonyToneRemoteUpload $parameters) |
||
| 1061 | { |
||
| 1062 | try { |
||
| 1063 | $this->setResult($this->getSoapClient()->__soapCall('telephonyToneRemoteUpload', array( |
||
| 1064 | $parameters, |
||
| 1065 | ), array(), array(), $this->outputHeaders)); |
||
| 1066 | return $this->getResult(); |
||
| 1067 | } catch (\SoapFault $soapFault) { |
||
| 1068 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1069 | return false; |
||
| 1070 | } |
||
| 1071 | } |
||
| 1072 | /** |
||
| 1073 | * Method to call the operation originally named |
||
| 1074 | * telephonyNumberGetFrWayNamesFromInsee |
||
| 1075 | * @uses SoapClientBase::getSoapClient() |
||
| 1076 | * @uses SoapClientBase::setResult() |
||
| 1077 | * @uses SoapClientBase::getResult() |
||
| 1078 | * @uses SoapClientBase::saveLastError() |
||
| 1079 | * @param \Ovh\StructType\TelephonyNumberGetFrWayNamesFromInsee $parameters |
||
| 1080 | * @return \Ovh\StructType\TelephonyNumberGetFrWayNamesFromInseeResponse|bool |
||
| 1081 | */ |
||
| 1082 | public function telephonyNumberGetFrWayNamesFromInsee(\Ovh\StructType\TelephonyNumberGetFrWayNamesFromInsee $parameters) |
||
| 1083 | { |
||
| 1084 | try { |
||
| 1085 | $this->setResult($this->getSoapClient()->__soapCall('telephonyNumberGetFrWayNamesFromInsee', array( |
||
| 1086 | $parameters, |
||
| 1087 | ), array(), array(), $this->outputHeaders)); |
||
| 1088 | return $this->getResult(); |
||
| 1089 | } catch (\SoapFault $soapFault) { |
||
| 1090 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1091 | return false; |
||
| 1092 | } |
||
| 1093 | } |
||
| 1094 | /** |
||
| 1095 | * Method to call the operation originally named telephonyFMHuntingModificationMode |
||
| 1096 | * @uses SoapClientBase::getSoapClient() |
||
| 1097 | * @uses SoapClientBase::setResult() |
||
| 1098 | * @uses SoapClientBase::getResult() |
||
| 1099 | * @uses SoapClientBase::saveLastError() |
||
| 1100 | * @param \Ovh\StructType\TelephonyFMHuntingModificationMode $parameters |
||
| 1101 | * @return \Ovh\StructType\TelephonyFMHuntingModificationModeResponse|bool |
||
| 1102 | */ |
||
| 1103 | public function telephonyFMHuntingModificationMode(\Ovh\StructType\TelephonyFMHuntingModificationMode $parameters) |
||
| 1104 | { |
||
| 1105 | try { |
||
| 1106 | $this->setResult($this->getSoapClient()->__soapCall('telephonyFMHuntingModificationMode', array( |
||
| 1107 | $parameters, |
||
| 1108 | ), array(), array(), $this->outputHeaders)); |
||
| 1109 | return $this->getResult(); |
||
| 1110 | } catch (\SoapFault $soapFault) { |
||
| 1111 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1112 | return false; |
||
| 1113 | } |
||
| 1114 | } |
||
| 1115 | /** |
||
| 1116 | * Method to call the operation originally named telephonyAliasToSipOffer |
||
| 1117 | * @uses SoapClientBase::getSoapClient() |
||
| 1118 | * @uses SoapClientBase::setResult() |
||
| 1119 | * @uses SoapClientBase::getResult() |
||
| 1120 | * @uses SoapClientBase::saveLastError() |
||
| 1121 | * @param \Ovh\StructType\TelephonyAliasToSipOffer $parameters |
||
| 1122 | * @return \Ovh\StructType\TelephonyAliasToSipOfferResponse|bool |
||
| 1123 | */ |
||
| 1124 | public function telephonyAliasToSipOffer(\Ovh\StructType\TelephonyAliasToSipOffer $parameters) |
||
| 1125 | { |
||
| 1126 | try { |
||
| 1127 | $this->setResult($this->getSoapClient()->__soapCall('telephonyAliasToSipOffer', array( |
||
| 1128 | $parameters, |
||
| 1129 | ), array(), array(), $this->outputHeaders)); |
||
| 1130 | return $this->getResult(); |
||
| 1131 | } catch (\SoapFault $soapFault) { |
||
| 1132 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1133 | return false; |
||
| 1134 | } |
||
| 1135 | } |
||
| 1136 | /** |
||
| 1137 | * Method to call the operation originally named telephonySmsUserMultiSend |
||
| 1138 | * @uses SoapClientBase::getSoapClient() |
||
| 1139 | * @uses SoapClientBase::setResult() |
||
| 1140 | * @uses SoapClientBase::getResult() |
||
| 1141 | * @uses SoapClientBase::saveLastError() |
||
| 1142 | * @param \Ovh\StructType\TelephonySmsUserMultiSend $parameters |
||
| 1143 | * @return \Ovh\StructType\TelephonySmsUserMultiSendResponse|bool |
||
| 1144 | */ |
||
| 1145 | public function telephonySmsUserMultiSend(\Ovh\StructType\TelephonySmsUserMultiSend $parameters) |
||
| 1146 | { |
||
| 1147 | try { |
||
| 1148 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsUserMultiSend', array( |
||
| 1149 | $parameters, |
||
| 1150 | ), array(), array(), $this->outputHeaders)); |
||
| 1151 | return $this->getResult(); |
||
| 1152 | } catch (\SoapFault $soapFault) { |
||
| 1153 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1154 | return false; |
||
| 1155 | } |
||
| 1156 | } |
||
| 1157 | /** |
||
| 1158 | * Method to call the operation originally named telephonySmsGetCsvAttachment |
||
| 1159 | * @uses SoapClientBase::getSoapClient() |
||
| 1160 | * @uses SoapClientBase::setResult() |
||
| 1161 | * @uses SoapClientBase::getResult() |
||
| 1162 | * @uses SoapClientBase::saveLastError() |
||
| 1163 | * @param \Ovh\StructType\TelephonySmsGetCsvAttachment $parameters |
||
| 1164 | * @return \Ovh\StructType\TelephonySmsGetCsvAttachmentResponse|bool |
||
| 1165 | */ |
||
| 1166 | public function telephonySmsGetCsvAttachment(\Ovh\StructType\TelephonySmsGetCsvAttachment $parameters) |
||
| 1167 | { |
||
| 1168 | try { |
||
| 1169 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsGetCsvAttachment', array( |
||
| 1170 | $parameters, |
||
| 1171 | ), array(), array(), $this->outputHeaders)); |
||
| 1172 | return $this->getResult(); |
||
| 1173 | } catch (\SoapFault $soapFault) { |
||
| 1174 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1175 | return false; |
||
| 1176 | } |
||
| 1177 | } |
||
| 1178 | /** |
||
| 1179 | * Method to call the operation originally named telephonySmsHistory |
||
| 1180 | * @uses SoapClientBase::getSoapClient() |
||
| 1181 | * @uses SoapClientBase::setResult() |
||
| 1182 | * @uses SoapClientBase::getResult() |
||
| 1183 | * @uses SoapClientBase::saveLastError() |
||
| 1184 | * @param \Ovh\StructType\TelephonySmsHistory $parameters |
||
| 1185 | * @return \Ovh\StructType\TelephonySmsHistoryResponse|bool |
||
| 1186 | */ |
||
| 1187 | public function telephonySmsHistory(\Ovh\StructType\TelephonySmsHistory $parameters) |
||
| 1188 | { |
||
| 1189 | try { |
||
| 1190 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsHistory', array( |
||
| 1191 | $parameters, |
||
| 1192 | ), array(), array(), $this->outputHeaders)); |
||
| 1193 | return $this->getResult(); |
||
| 1194 | } catch (\SoapFault $soapFault) { |
||
| 1195 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1196 | return false; |
||
| 1197 | } |
||
| 1198 | } |
||
| 1199 | /** |
||
| 1200 | * Method to call the operation originally named |
||
| 1201 | * telephonyAbbreviatedNumberOnGroupModify |
||
| 1202 | * @uses SoapClientBase::getSoapClient() |
||
| 1203 | * @uses SoapClientBase::setResult() |
||
| 1204 | * @uses SoapClientBase::getResult() |
||
| 1205 | * @uses SoapClientBase::saveLastError() |
||
| 1206 | * @param \Ovh\StructType\TelephonyAbbreviatedNumberOnGroupModify $parameters |
||
| 1207 | * @return \Ovh\StructType\TelephonyAbbreviatedNumberOnGroupModifyResponse|bool |
||
| 1208 | */ |
||
| 1209 | public function telephonyAbbreviatedNumberOnGroupModify(\Ovh\StructType\TelephonyAbbreviatedNumberOnGroupModify $parameters) |
||
| 1210 | { |
||
| 1211 | try { |
||
| 1212 | $this->setResult($this->getSoapClient()->__soapCall('telephonyAbbreviatedNumberOnGroupModify', array( |
||
| 1213 | $parameters, |
||
| 1214 | ), array(), array(), $this->outputHeaders)); |
||
| 1215 | return $this->getResult(); |
||
| 1216 | } catch (\SoapFault $soapFault) { |
||
| 1217 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1218 | return false; |
||
| 1219 | } |
||
| 1220 | } |
||
| 1221 | /** |
||
| 1222 | * Method to call the operation originally named telephonyHuntingGenericScreenList |
||
| 1223 | * @uses SoapClientBase::getSoapClient() |
||
| 1224 | * @uses SoapClientBase::setResult() |
||
| 1225 | * @uses SoapClientBase::getResult() |
||
| 1226 | * @uses SoapClientBase::saveLastError() |
||
| 1227 | * @param \Ovh\StructType\TelephonyHuntingGenericScreenList $parameters |
||
| 1228 | * @return \Ovh\StructType\TelephonyHuntingGenericScreenListResponse|bool |
||
| 1229 | */ |
||
| 1230 | public function telephonyHuntingGenericScreenList(\Ovh\StructType\TelephonyHuntingGenericScreenList $parameters) |
||
| 1231 | { |
||
| 1232 | try { |
||
| 1233 | $this->setResult($this->getSoapClient()->__soapCall('telephonyHuntingGenericScreenList', array( |
||
| 1234 | $parameters, |
||
| 1235 | ), array(), array(), $this->outputHeaders)); |
||
| 1236 | return $this->getResult(); |
||
| 1237 | } catch (\SoapFault $soapFault) { |
||
| 1238 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1239 | return false; |
||
| 1240 | } |
||
| 1241 | } |
||
| 1242 | /** |
||
| 1243 | * Method to call the operation originally named |
||
| 1244 | * telephonyHuntingGenericScreenStatus |
||
| 1245 | * @uses SoapClientBase::getSoapClient() |
||
| 1246 | * @uses SoapClientBase::setResult() |
||
| 1247 | * @uses SoapClientBase::getResult() |
||
| 1248 | * @uses SoapClientBase::saveLastError() |
||
| 1249 | * @param \Ovh\StructType\TelephonyHuntingGenericScreenStatus $parameters |
||
| 1250 | * @return \Ovh\StructType\TelephonyHuntingGenericScreenStatusResponse|bool |
||
| 1251 | */ |
||
| 1252 | public function telephonyHuntingGenericScreenStatus(\Ovh\StructType\TelephonyHuntingGenericScreenStatus $parameters) |
||
| 1253 | { |
||
| 1254 | try { |
||
| 1255 | $this->setResult($this->getSoapClient()->__soapCall('telephonyHuntingGenericScreenStatus', array( |
||
| 1256 | $parameters, |
||
| 1257 | ), array(), array(), $this->outputHeaders)); |
||
| 1258 | return $this->getResult(); |
||
| 1259 | } catch (\SoapFault $soapFault) { |
||
| 1260 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1261 | return false; |
||
| 1262 | } |
||
| 1263 | } |
||
| 1264 | /** |
||
| 1265 | * Method to call the operation originally named |
||
| 1266 | * telephonyHuntingModificationMembers |
||
| 1267 | * @uses SoapClientBase::getSoapClient() |
||
| 1268 | * @uses SoapClientBase::setResult() |
||
| 1269 | * @uses SoapClientBase::getResult() |
||
| 1270 | * @uses SoapClientBase::saveLastError() |
||
| 1271 | * @param \Ovh\StructType\TelephonyHuntingModificationMembers $parameters |
||
| 1272 | * @return \Ovh\StructType\TelephonyHuntingModificationMembersResponse|bool |
||
| 1273 | */ |
||
| 1274 | public function telephonyHuntingModificationMembers(\Ovh\StructType\TelephonyHuntingModificationMembers $parameters) |
||
| 1275 | { |
||
| 1276 | try { |
||
| 1277 | $this->setResult($this->getSoapClient()->__soapCall('telephonyHuntingModificationMembers', array( |
||
| 1278 | $parameters, |
||
| 1279 | ), array(), array(), $this->outputHeaders)); |
||
| 1280 | return $this->getResult(); |
||
| 1281 | } catch (\SoapFault $soapFault) { |
||
| 1282 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1283 | return false; |
||
| 1284 | } |
||
| 1285 | } |
||
| 1286 | /** |
||
| 1287 | * Method to call the operation originally named telephonyVoicemailMessagesDownload |
||
| 1288 | * @uses SoapClientBase::getSoapClient() |
||
| 1289 | * @uses SoapClientBase::setResult() |
||
| 1290 | * @uses SoapClientBase::getResult() |
||
| 1291 | * @uses SoapClientBase::saveLastError() |
||
| 1292 | * @param \Ovh\StructType\TelephonyVoicemailMessagesDownload $parameters |
||
| 1293 | * @return \Ovh\StructType\TelephonyVoicemailMessagesDownloadResponse|bool |
||
| 1294 | */ |
||
| 1295 | public function telephonyVoicemailMessagesDownload(\Ovh\StructType\TelephonyVoicemailMessagesDownload $parameters) |
||
| 1296 | { |
||
| 1297 | try { |
||
| 1298 | $this->setResult($this->getSoapClient()->__soapCall('telephonyVoicemailMessagesDownload', array( |
||
| 1299 | $parameters, |
||
| 1300 | ), array(), array(), $this->outputHeaders)); |
||
| 1301 | return $this->getResult(); |
||
| 1302 | } catch (\SoapFault $soapFault) { |
||
| 1303 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1304 | return false; |
||
| 1305 | } |
||
| 1306 | } |
||
| 1307 | /** |
||
| 1308 | * Method to call the operation originally named telephonyFaxCampaignCreation |
||
| 1309 | * @uses SoapClientBase::getSoapClient() |
||
| 1310 | * @uses SoapClientBase::setResult() |
||
| 1311 | * @uses SoapClientBase::getResult() |
||
| 1312 | * @uses SoapClientBase::saveLastError() |
||
| 1313 | * @param \Ovh\StructType\TelephonyFaxCampaignCreation $parameters |
||
| 1314 | * @return \Ovh\StructType\TelephonyFaxCampaignCreationResponse|bool |
||
| 1315 | */ |
||
| 1316 | public function telephonyFaxCampaignCreation(\Ovh\StructType\TelephonyFaxCampaignCreation $parameters) |
||
| 1317 | { |
||
| 1318 | try { |
||
| 1319 | $this->setResult($this->getSoapClient()->__soapCall('telephonyFaxCampaignCreation', array( |
||
| 1320 | $parameters, |
||
| 1321 | ), array(), array(), $this->outputHeaders)); |
||
| 1322 | return $this->getResult(); |
||
| 1323 | } catch (\SoapFault $soapFault) { |
||
| 1324 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1325 | return false; |
||
| 1326 | } |
||
| 1327 | } |
||
| 1328 | /** |
||
| 1329 | * Method to call the operation originally named |
||
| 1330 | * telephonyLineLogsNotificationOptions |
||
| 1331 | * @uses SoapClientBase::getSoapClient() |
||
| 1332 | * @uses SoapClientBase::setResult() |
||
| 1333 | * @uses SoapClientBase::getResult() |
||
| 1334 | * @uses SoapClientBase::saveLastError() |
||
| 1335 | * @param \Ovh\StructType\TelephonyLineLogsNotificationOptions $parameters |
||
| 1336 | * @return \Ovh\StructType\TelephonyLineLogsNotificationOptionsResponse|bool |
||
| 1337 | */ |
||
| 1338 | public function telephonyLineLogsNotificationOptions(\Ovh\StructType\TelephonyLineLogsNotificationOptions $parameters) |
||
| 1339 | { |
||
| 1340 | try { |
||
| 1341 | $this->setResult($this->getSoapClient()->__soapCall('telephonyLineLogsNotificationOptions', array( |
||
| 1342 | $parameters, |
||
| 1343 | ), array(), array(), $this->outputHeaders)); |
||
| 1344 | return $this->getResult(); |
||
| 1345 | } catch (\SoapFault $soapFault) { |
||
| 1346 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1347 | return false; |
||
| 1348 | } |
||
| 1349 | } |
||
| 1350 | /** |
||
| 1351 | * Method to call the operation originally named telephonyLineGetIpRestriction |
||
| 1352 | * @uses SoapClientBase::getSoapClient() |
||
| 1353 | * @uses SoapClientBase::setResult() |
||
| 1354 | * @uses SoapClientBase::getResult() |
||
| 1355 | * @uses SoapClientBase::saveLastError() |
||
| 1356 | * @param \Ovh\StructType\TelephonyLineGetIpRestriction $parameters |
||
| 1357 | * @return \Ovh\StructType\TelephonyLineGetIpRestrictionResponse|bool |
||
| 1358 | */ |
||
| 1359 | public function telephonyLineGetIpRestriction(\Ovh\StructType\TelephonyLineGetIpRestriction $parameters) |
||
| 1360 | { |
||
| 1361 | try { |
||
| 1362 | $this->setResult($this->getSoapClient()->__soapCall('telephonyLineGetIpRestriction', array( |
||
| 1363 | $parameters, |
||
| 1364 | ), array(), array(), $this->outputHeaders)); |
||
| 1365 | return $this->getResult(); |
||
| 1366 | } catch (\SoapFault $soapFault) { |
||
| 1367 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1368 | return false; |
||
| 1369 | } |
||
| 1370 | } |
||
| 1371 | /** |
||
| 1372 | * Method to call the operation originally named telephonyGetTimeZoneNumber |
||
| 1373 | * @uses SoapClientBase::getSoapClient() |
||
| 1374 | * @uses SoapClientBase::setResult() |
||
| 1375 | * @uses SoapClientBase::getResult() |
||
| 1376 | * @uses SoapClientBase::saveLastError() |
||
| 1377 | * @param \Ovh\StructType\TelephonyGetTimeZoneNumber $parameters |
||
| 1378 | * @return \Ovh\StructType\TelephonyGetTimeZoneNumberResponse|bool |
||
| 1379 | */ |
||
| 1380 | public function telephonyGetTimeZoneNumber(\Ovh\StructType\TelephonyGetTimeZoneNumber $parameters) |
||
| 1381 | { |
||
| 1382 | try { |
||
| 1383 | $this->setResult($this->getSoapClient()->__soapCall('telephonyGetTimeZoneNumber', array( |
||
| 1384 | $parameters, |
||
| 1385 | ), array(), array(), $this->outputHeaders)); |
||
| 1386 | return $this->getResult(); |
||
| 1387 | } catch (\SoapFault $soapFault) { |
||
| 1388 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1389 | return false; |
||
| 1390 | } |
||
| 1391 | } |
||
| 1392 | /** |
||
| 1393 | * Method to call the operation originally named |
||
| 1394 | * telephonyFMHuntingModificationMembers |
||
| 1395 | * @uses SoapClientBase::getSoapClient() |
||
| 1396 | * @uses SoapClientBase::setResult() |
||
| 1397 | * @uses SoapClientBase::getResult() |
||
| 1398 | * @uses SoapClientBase::saveLastError() |
||
| 1399 | * @param \Ovh\StructType\TelephonyFMHuntingModificationMembers $parameters |
||
| 1400 | * @return \Ovh\StructType\TelephonyFMHuntingModificationMembersResponse|bool |
||
| 1401 | */ |
||
| 1402 | public function telephonyFMHuntingModificationMembers(\Ovh\StructType\TelephonyFMHuntingModificationMembers $parameters) |
||
| 1403 | { |
||
| 1404 | try { |
||
| 1405 | $this->setResult($this->getSoapClient()->__soapCall('telephonyFMHuntingModificationMembers', array( |
||
| 1406 | $parameters, |
||
| 1407 | ), array(), array(), $this->outputHeaders)); |
||
| 1408 | return $this->getResult(); |
||
| 1409 | } catch (\SoapFault $soapFault) { |
||
| 1410 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1411 | return false; |
||
| 1412 | } |
||
| 1413 | } |
||
| 1414 | /** |
||
| 1415 | * Method to call the operation originally named telephonyPhonebookAdd |
||
| 1416 | * @uses SoapClientBase::getSoapClient() |
||
| 1417 | * @uses SoapClientBase::setResult() |
||
| 1418 | * @uses SoapClientBase::getResult() |
||
| 1419 | * @uses SoapClientBase::saveLastError() |
||
| 1420 | * @param \Ovh\StructType\TelephonyPhonebookAdd $parameters |
||
| 1421 | * @return \Ovh\StructType\TelephonyPhonebookAddResponse|bool |
||
| 1422 | */ |
||
| 1423 | public function telephonyPhonebookAdd(\Ovh\StructType\TelephonyPhonebookAdd $parameters) |
||
| 1424 | { |
||
| 1425 | try { |
||
| 1426 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPhonebookAdd', array( |
||
| 1427 | $parameters, |
||
| 1428 | ), array(), array(), $this->outputHeaders)); |
||
| 1429 | return $this->getResult(); |
||
| 1430 | } catch (\SoapFault $soapFault) { |
||
| 1431 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1432 | return false; |
||
| 1433 | } |
||
| 1434 | } |
||
| 1435 | /** |
||
| 1436 | * Method to call the operation originally named telephonyRestrictionModify |
||
| 1437 | * @uses SoapClientBase::getSoapClient() |
||
| 1438 | * @uses SoapClientBase::setResult() |
||
| 1439 | * @uses SoapClientBase::getResult() |
||
| 1440 | * @uses SoapClientBase::saveLastError() |
||
| 1441 | * @param \Ovh\StructType\TelephonyRestrictionModify $parameters |
||
| 1442 | * @return \Ovh\StructType\TelephonyRestrictionModifyResponse|bool |
||
| 1443 | */ |
||
| 1444 | public function telephonyRestrictionModify(\Ovh\StructType\TelephonyRestrictionModify $parameters) |
||
| 1445 | { |
||
| 1446 | try { |
||
| 1447 | $this->setResult($this->getSoapClient()->__soapCall('telephonyRestrictionModify', array( |
||
| 1448 | $parameters, |
||
| 1449 | ), array(), array(), $this->outputHeaders)); |
||
| 1450 | return $this->getResult(); |
||
| 1451 | } catch (\SoapFault $soapFault) { |
||
| 1452 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1453 | return false; |
||
| 1454 | } |
||
| 1455 | } |
||
| 1456 | /** |
||
| 1457 | * Method to call the operation originally named telephonyRatesList |
||
| 1458 | * @uses SoapClientBase::getSoapClient() |
||
| 1459 | * @uses SoapClientBase::setResult() |
||
| 1460 | * @uses SoapClientBase::getResult() |
||
| 1461 | * @uses SoapClientBase::saveLastError() |
||
| 1462 | * @param \Ovh\StructType\TelephonyRatesList $parameters |
||
| 1463 | * @return \Ovh\StructType\TelephonyRatesListResponse|bool |
||
| 1464 | */ |
||
| 1465 | public function telephonyRatesList(\Ovh\StructType\TelephonyRatesList $parameters) |
||
| 1466 | { |
||
| 1467 | try { |
||
| 1468 | $this->setResult($this->getSoapClient()->__soapCall('telephonyRatesList', array( |
||
| 1469 | $parameters, |
||
| 1470 | ), array(), array(), $this->outputHeaders)); |
||
| 1471 | return $this->getResult(); |
||
| 1472 | } catch (\SoapFault $soapFault) { |
||
| 1473 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1474 | return false; |
||
| 1475 | } |
||
| 1476 | } |
||
| 1477 | /** |
||
| 1478 | * Method to call the operation originally named |
||
| 1479 | * telephonyHuntingGenericScreenOptions |
||
| 1480 | * @uses SoapClientBase::getSoapClient() |
||
| 1481 | * @uses SoapClientBase::setResult() |
||
| 1482 | * @uses SoapClientBase::getResult() |
||
| 1483 | * @uses SoapClientBase::saveLastError() |
||
| 1484 | * @param \Ovh\StructType\TelephonyHuntingGenericScreenOptions $parameters |
||
| 1485 | * @return \Ovh\StructType\TelephonyHuntingGenericScreenOptionsResponse|bool |
||
| 1486 | */ |
||
| 1487 | public function telephonyHuntingGenericScreenOptions(\Ovh\StructType\TelephonyHuntingGenericScreenOptions $parameters) |
||
| 1488 | { |
||
| 1489 | try { |
||
| 1490 | $this->setResult($this->getSoapClient()->__soapCall('telephonyHuntingGenericScreenOptions', array( |
||
| 1491 | $parameters, |
||
| 1492 | ), array(), array(), $this->outputHeaders)); |
||
| 1493 | return $this->getResult(); |
||
| 1494 | } catch (\SoapFault $soapFault) { |
||
| 1495 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1496 | return false; |
||
| 1497 | } |
||
| 1498 | } |
||
| 1499 | /** |
||
| 1500 | * Method to call the operation originally named telephonyBillingAccountAdd |
||
| 1501 | * @uses SoapClientBase::getSoapClient() |
||
| 1502 | * @uses SoapClientBase::setResult() |
||
| 1503 | * @uses SoapClientBase::getResult() |
||
| 1504 | * @uses SoapClientBase::saveLastError() |
||
| 1505 | * @param \Ovh\StructType\TelephonyBillingAccountAdd $parameters |
||
| 1506 | * @return \Ovh\StructType\TelephonyBillingAccountAddResponse|bool |
||
| 1507 | */ |
||
| 1508 | public function telephonyBillingAccountAdd(\Ovh\StructType\TelephonyBillingAccountAdd $parameters) |
||
| 1509 | { |
||
| 1510 | try { |
||
| 1511 | $this->setResult($this->getSoapClient()->__soapCall('telephonyBillingAccountAdd', array( |
||
| 1512 | $parameters, |
||
| 1513 | ), array(), array(), $this->outputHeaders)); |
||
| 1514 | return $this->getResult(); |
||
| 1515 | } catch (\SoapFault $soapFault) { |
||
| 1516 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1517 | return false; |
||
| 1518 | } |
||
| 1519 | } |
||
| 1520 | /** |
||
| 1521 | * Method to call the operation originally named telephonySmsplusIsFreeKeyword |
||
| 1522 | * @uses SoapClientBase::getSoapClient() |
||
| 1523 | * @uses SoapClientBase::setResult() |
||
| 1524 | * @uses SoapClientBase::getResult() |
||
| 1525 | * @uses SoapClientBase::saveLastError() |
||
| 1526 | * @param \Ovh\StructType\TelephonySmsplusIsFreeKeyword $parameters |
||
| 1527 | * @return \Ovh\StructType\TelephonySmsplusIsFreeKeywordResponse|bool |
||
| 1528 | */ |
||
| 1529 | public function telephonySmsplusIsFreeKeyword(\Ovh\StructType\TelephonySmsplusIsFreeKeyword $parameters) |
||
| 1530 | { |
||
| 1531 | try { |
||
| 1532 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsplusIsFreeKeyword', array( |
||
| 1533 | $parameters, |
||
| 1534 | ), array(), array(), $this->outputHeaders)); |
||
| 1535 | return $this->getResult(); |
||
| 1536 | } catch (\SoapFault $soapFault) { |
||
| 1537 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1538 | return false; |
||
| 1539 | } |
||
| 1540 | } |
||
| 1541 | /** |
||
| 1542 | * Method to call the operation originally named telephonyLineGetCodecs |
||
| 1543 | * @uses SoapClientBase::getSoapClient() |
||
| 1544 | * @uses SoapClientBase::setResult() |
||
| 1545 | * @uses SoapClientBase::getResult() |
||
| 1546 | * @uses SoapClientBase::saveLastError() |
||
| 1547 | * @param \Ovh\StructType\TelephonyLineGetCodecs $parameters |
||
| 1548 | * @return \Ovh\StructType\TelephonyLineGetCodecsResponse|bool |
||
| 1549 | */ |
||
| 1550 | public function telephonyLineGetCodecs(\Ovh\StructType\TelephonyLineGetCodecs $parameters) |
||
| 1551 | { |
||
| 1552 | try { |
||
| 1553 | $this->setResult($this->getSoapClient()->__soapCall('telephonyLineGetCodecs', array( |
||
| 1554 | $parameters, |
||
| 1555 | ), array(), array(), $this->outputHeaders)); |
||
| 1556 | return $this->getResult(); |
||
| 1557 | } catch (\SoapFault $soapFault) { |
||
| 1558 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1559 | return false; |
||
| 1560 | } |
||
| 1561 | } |
||
| 1562 | /** |
||
| 1563 | * Method to call the operation originally named telephonySmsSenderValidate |
||
| 1564 | * @uses SoapClientBase::getSoapClient() |
||
| 1565 | * @uses SoapClientBase::setResult() |
||
| 1566 | * @uses SoapClientBase::getResult() |
||
| 1567 | * @uses SoapClientBase::saveLastError() |
||
| 1568 | * @param \Ovh\StructType\TelephonySmsSenderValidate $parameters |
||
| 1569 | * @return \Ovh\StructType\TelephonySmsSenderValidateResponse|bool |
||
| 1570 | */ |
||
| 1571 | public function telephonySmsSenderValidate(\Ovh\StructType\TelephonySmsSenderValidate $parameters) |
||
| 1572 | { |
||
| 1573 | try { |
||
| 1574 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsSenderValidate', array( |
||
| 1575 | $parameters, |
||
| 1576 | ), array(), array(), $this->outputHeaders)); |
||
| 1577 | return $this->getResult(); |
||
| 1578 | } catch (\SoapFault $soapFault) { |
||
| 1579 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1580 | return false; |
||
| 1581 | } |
||
| 1582 | } |
||
| 1583 | /** |
||
| 1584 | * Method to call the operation originally named |
||
| 1585 | * telephonyHuntingModificationSimultaneousCalls |
||
| 1586 | * @uses SoapClientBase::getSoapClient() |
||
| 1587 | * @uses SoapClientBase::setResult() |
||
| 1588 | * @uses SoapClientBase::getResult() |
||
| 1589 | * @uses SoapClientBase::saveLastError() |
||
| 1590 | * @param \Ovh\StructType\TelephonyHuntingModificationSimultaneousCalls $parameters |
||
| 1591 | * @return \Ovh\StructType\TelephonyHuntingModificationSimultaneousCallsResponse|bool |
||
| 1592 | */ |
||
| 1593 | public function telephonyHuntingModificationSimultaneousCalls(\Ovh\StructType\TelephonyHuntingModificationSimultaneousCalls $parameters) |
||
| 1594 | { |
||
| 1595 | try { |
||
| 1596 | $this->setResult($this->getSoapClient()->__soapCall('telephonyHuntingModificationSimultaneousCalls', array( |
||
| 1597 | $parameters, |
||
| 1598 | ), array(), array(), $this->outputHeaders)); |
||
| 1599 | return $this->getResult(); |
||
| 1600 | } catch (\SoapFault $soapFault) { |
||
| 1601 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1602 | return false; |
||
| 1603 | } |
||
| 1604 | } |
||
| 1605 | /** |
||
| 1606 | * Method to call the operation originally named telephonyDirectoryInfoGetSameSiret |
||
| 1607 | * @uses SoapClientBase::getSoapClient() |
||
| 1608 | * @uses SoapClientBase::setResult() |
||
| 1609 | * @uses SoapClientBase::getResult() |
||
| 1610 | * @uses SoapClientBase::saveLastError() |
||
| 1611 | * @param \Ovh\StructType\TelephonyDirectoryInfoGetSameSiret $parameters |
||
| 1612 | * @return \Ovh\StructType\TelephonyDirectoryInfoGetSameSiretResponse|bool |
||
| 1613 | */ |
||
| 1614 | public function telephonyDirectoryInfoGetSameSiret(\Ovh\StructType\TelephonyDirectoryInfoGetSameSiret $parameters) |
||
| 1615 | { |
||
| 1616 | try { |
||
| 1617 | $this->setResult($this->getSoapClient()->__soapCall('telephonyDirectoryInfoGetSameSiret', array( |
||
| 1618 | $parameters, |
||
| 1619 | ), array(), array(), $this->outputHeaders)); |
||
| 1620 | return $this->getResult(); |
||
| 1621 | } catch (\SoapFault $soapFault) { |
||
| 1622 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1623 | return false; |
||
| 1624 | } |
||
| 1625 | } |
||
| 1626 | /** |
||
| 1627 | * Method to call the operation originally named telephonyConferenceSetParams |
||
| 1628 | * @uses SoapClientBase::getSoapClient() |
||
| 1629 | * @uses SoapClientBase::setResult() |
||
| 1630 | * @uses SoapClientBase::getResult() |
||
| 1631 | * @uses SoapClientBase::saveLastError() |
||
| 1632 | * @param \Ovh\StructType\TelephonyConferenceSetParams $parameters |
||
| 1633 | * @return \Ovh\StructType\TelephonyConferenceSetParamsResponse|bool |
||
| 1634 | */ |
||
| 1635 | public function telephonyConferenceSetParams(\Ovh\StructType\TelephonyConferenceSetParams $parameters) |
||
| 1636 | { |
||
| 1637 | try { |
||
| 1638 | $this->setResult($this->getSoapClient()->__soapCall('telephonyConferenceSetParams', array( |
||
| 1639 | $parameters, |
||
| 1640 | ), array(), array(), $this->outputHeaders)); |
||
| 1641 | return $this->getResult(); |
||
| 1642 | } catch (\SoapFault $soapFault) { |
||
| 1643 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1644 | return false; |
||
| 1645 | } |
||
| 1646 | } |
||
| 1647 | /** |
||
| 1648 | * Method to call the operation originally named telephonySparePurchase |
||
| 1649 | * @uses SoapClientBase::getSoapClient() |
||
| 1650 | * @uses SoapClientBase::setResult() |
||
| 1651 | * @uses SoapClientBase::getResult() |
||
| 1652 | * @uses SoapClientBase::saveLastError() |
||
| 1653 | * @param \Ovh\StructType\TelephonySparePurchase $parameters |
||
| 1654 | * @return \Ovh\StructType\TelephonySparePurchaseResponse|bool |
||
| 1655 | */ |
||
| 1656 | public function telephonySparePurchase(\Ovh\StructType\TelephonySparePurchase $parameters) |
||
| 1657 | { |
||
| 1658 | try { |
||
| 1659 | $this->setResult($this->getSoapClient()->__soapCall('telephonySparePurchase', array( |
||
| 1660 | $parameters, |
||
| 1661 | ), array(), array(), $this->outputHeaders)); |
||
| 1662 | return $this->getResult(); |
||
| 1663 | } catch (\SoapFault $soapFault) { |
||
| 1664 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1665 | return false; |
||
| 1666 | } |
||
| 1667 | } |
||
| 1668 | /** |
||
| 1669 | * Method to call the operation originally named telephonyFaxCampaignList |
||
| 1670 | * @uses SoapClientBase::getSoapClient() |
||
| 1671 | * @uses SoapClientBase::setResult() |
||
| 1672 | * @uses SoapClientBase::getResult() |
||
| 1673 | * @uses SoapClientBase::saveLastError() |
||
| 1674 | * @param \Ovh\StructType\TelephonyFaxCampaignList $parameters |
||
| 1675 | * @return \Ovh\StructType\TelephonyFaxCampaignListResponse|bool |
||
| 1676 | */ |
||
| 1677 | public function telephonyFaxCampaignList(\Ovh\StructType\TelephonyFaxCampaignList $parameters) |
||
| 1678 | { |
||
| 1679 | try { |
||
| 1680 | $this->setResult($this->getSoapClient()->__soapCall('telephonyFaxCampaignList', array( |
||
| 1681 | $parameters, |
||
| 1682 | ), array(), array(), $this->outputHeaders)); |
||
| 1683 | return $this->getResult(); |
||
| 1684 | } catch (\SoapFault $soapFault) { |
||
| 1685 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1686 | return false; |
||
| 1687 | } |
||
| 1688 | } |
||
| 1689 | /** |
||
| 1690 | * Method to call the operation originally named telephonyNicGetMgcpIpRestriction |
||
| 1691 | * @uses SoapClientBase::getSoapClient() |
||
| 1692 | * @uses SoapClientBase::setResult() |
||
| 1693 | * @uses SoapClientBase::getResult() |
||
| 1694 | * @uses SoapClientBase::saveLastError() |
||
| 1695 | * @param \Ovh\StructType\TelephonyNicGetMgcpIpRestriction $parameters |
||
| 1696 | * @return \Ovh\StructType\TelephonyNicGetMgcpIpRestrictionResponse|bool |
||
| 1697 | */ |
||
| 1698 | public function telephonyNicGetMgcpIpRestriction(\Ovh\StructType\TelephonyNicGetMgcpIpRestriction $parameters) |
||
| 1699 | { |
||
| 1700 | try { |
||
| 1701 | $this->setResult($this->getSoapClient()->__soapCall('telephonyNicGetMgcpIpRestriction', array( |
||
| 1702 | $parameters, |
||
| 1703 | ), array(), array(), $this->outputHeaders)); |
||
| 1704 | return $this->getResult(); |
||
| 1705 | } catch (\SoapFault $soapFault) { |
||
| 1706 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1707 | return false; |
||
| 1708 | } |
||
| 1709 | } |
||
| 1710 | /** |
||
| 1711 | * Method to call the operation originally named telephonySmsGetUserQuotaForUser |
||
| 1712 | * @uses SoapClientBase::getSoapClient() |
||
| 1713 | * @uses SoapClientBase::setResult() |
||
| 1714 | * @uses SoapClientBase::getResult() |
||
| 1715 | * @uses SoapClientBase::saveLastError() |
||
| 1716 | * @param \Ovh\StructType\TelephonySmsGetUserQuotaForUser $parameters |
||
| 1717 | * @return \Ovh\StructType\TelephonySmsGetUserQuotaForUserResponse|bool |
||
| 1718 | */ |
||
| 1719 | public function telephonySmsGetUserQuotaForUser(\Ovh\StructType\TelephonySmsGetUserQuotaForUser $parameters) |
||
| 1720 | { |
||
| 1721 | try { |
||
| 1722 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsGetUserQuotaForUser', array( |
||
| 1723 | $parameters, |
||
| 1724 | ), array(), array(), $this->outputHeaders)); |
||
| 1725 | return $this->getResult(); |
||
| 1726 | } catch (\SoapFault $soapFault) { |
||
| 1727 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1728 | return false; |
||
| 1729 | } |
||
| 1730 | } |
||
| 1731 | /** |
||
| 1732 | * Method to call the operation originally named telephonyDirectoryInfoGetSiret |
||
| 1733 | * @uses SoapClientBase::getSoapClient() |
||
| 1734 | * @uses SoapClientBase::setResult() |
||
| 1735 | * @uses SoapClientBase::getResult() |
||
| 1736 | * @uses SoapClientBase::saveLastError() |
||
| 1737 | * @param \Ovh\StructType\TelephonyDirectoryInfoGetSiret $parameters |
||
| 1738 | * @return \Ovh\StructType\TelephonyDirectoryInfoGetSiretResponse|bool |
||
| 1739 | */ |
||
| 1740 | public function telephonyDirectoryInfoGetSiret(\Ovh\StructType\TelephonyDirectoryInfoGetSiret $parameters) |
||
| 1741 | { |
||
| 1742 | try { |
||
| 1743 | $this->setResult($this->getSoapClient()->__soapCall('telephonyDirectoryInfoGetSiret', array( |
||
| 1744 | $parameters, |
||
| 1745 | ), array(), array(), $this->outputHeaders)); |
||
| 1746 | return $this->getResult(); |
||
| 1747 | } catch (\SoapFault $soapFault) { |
||
| 1748 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1749 | return false; |
||
| 1750 | } |
||
| 1751 | } |
||
| 1752 | /** |
||
| 1753 | * Method to call the operation originally named telephonyFunctionKeyModify |
||
| 1754 | * @uses SoapClientBase::getSoapClient() |
||
| 1755 | * @uses SoapClientBase::setResult() |
||
| 1756 | * @uses SoapClientBase::getResult() |
||
| 1757 | * @uses SoapClientBase::saveLastError() |
||
| 1758 | * @param \Ovh\StructType\TelephonyFunctionKeyModify $parameters |
||
| 1759 | * @return \Ovh\StructType\TelephonyFunctionKeyModifyResponse|bool |
||
| 1760 | */ |
||
| 1761 | public function telephonyFunctionKeyModify(\Ovh\StructType\TelephonyFunctionKeyModify $parameters) |
||
| 1762 | { |
||
| 1763 | try { |
||
| 1764 | $this->setResult($this->getSoapClient()->__soapCall('telephonyFunctionKeyModify', array( |
||
| 1765 | $parameters, |
||
| 1766 | ), array(), array(), $this->outputHeaders)); |
||
| 1767 | return $this->getResult(); |
||
| 1768 | } catch (\SoapFault $soapFault) { |
||
| 1769 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1770 | return false; |
||
| 1771 | } |
||
| 1772 | } |
||
| 1773 | /** |
||
| 1774 | * Method to call the operation originally named telephonyAbbreviatedNumberList |
||
| 1775 | * @uses SoapClientBase::getSoapClient() |
||
| 1776 | * @uses SoapClientBase::setResult() |
||
| 1777 | * @uses SoapClientBase::getResult() |
||
| 1778 | * @uses SoapClientBase::saveLastError() |
||
| 1779 | * @param \Ovh\StructType\TelephonyAbbreviatedNumberList $parameters |
||
| 1780 | * @return \Ovh\StructType\TelephonyAbbreviatedNumberListResponse|bool |
||
| 1781 | */ |
||
| 1782 | public function telephonyAbbreviatedNumberList(\Ovh\StructType\TelephonyAbbreviatedNumberList $parameters) |
||
| 1783 | { |
||
| 1784 | try { |
||
| 1785 | $this->setResult($this->getSoapClient()->__soapCall('telephonyAbbreviatedNumberList', array( |
||
| 1786 | $parameters, |
||
| 1787 | ), array(), array(), $this->outputHeaders)); |
||
| 1788 | return $this->getResult(); |
||
| 1789 | } catch (\SoapFault $soapFault) { |
||
| 1790 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1791 | return false; |
||
| 1792 | } |
||
| 1793 | } |
||
| 1794 | /** |
||
| 1795 | * Method to call the operation originally named telephonyFaxModifyPassword |
||
| 1796 | * @uses SoapClientBase::getSoapClient() |
||
| 1797 | * @uses SoapClientBase::setResult() |
||
| 1798 | * @uses SoapClientBase::getResult() |
||
| 1799 | * @uses SoapClientBase::saveLastError() |
||
| 1800 | * @param \Ovh\StructType\TelephonyFaxModifyPassword $parameters |
||
| 1801 | * @return \Ovh\StructType\TelephonyFaxModifyPasswordResponse|bool |
||
| 1802 | */ |
||
| 1803 | public function telephonyFaxModifyPassword(\Ovh\StructType\TelephonyFaxModifyPassword $parameters) |
||
| 1804 | { |
||
| 1805 | try { |
||
| 1806 | $this->setResult($this->getSoapClient()->__soapCall('telephonyFaxModifyPassword', array( |
||
| 1807 | $parameters, |
||
| 1808 | ), array(), array(), $this->outputHeaders)); |
||
| 1809 | return $this->getResult(); |
||
| 1810 | } catch (\SoapFault $soapFault) { |
||
| 1811 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1812 | return false; |
||
| 1813 | } |
||
| 1814 | } |
||
| 1815 | /** |
||
| 1816 | * Method to call the operation originally named telephonySmsDelete |
||
| 1817 | * @uses SoapClientBase::getSoapClient() |
||
| 1818 | * @uses SoapClientBase::setResult() |
||
| 1819 | * @uses SoapClientBase::getResult() |
||
| 1820 | * @uses SoapClientBase::saveLastError() |
||
| 1821 | * @param \Ovh\StructType\TelephonySmsDelete $parameters |
||
| 1822 | * @return \Ovh\StructType\TelephonySmsDeleteResponse|bool |
||
| 1823 | */ |
||
| 1824 | public function telephonySmsDelete(\Ovh\StructType\TelephonySmsDelete $parameters) |
||
| 1825 | { |
||
| 1826 | try { |
||
| 1827 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsDelete', array( |
||
| 1828 | $parameters, |
||
| 1829 | ), array(), array(), $this->outputHeaders)); |
||
| 1830 | return $this->getResult(); |
||
| 1831 | } catch (\SoapFault $soapFault) { |
||
| 1832 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1833 | return false; |
||
| 1834 | } |
||
| 1835 | } |
||
| 1836 | /** |
||
| 1837 | * Method to call the operation originally named |
||
| 1838 | * telephonyDirectoryModifyPublication |
||
| 1839 | * @uses SoapClientBase::getSoapClient() |
||
| 1840 | * @uses SoapClientBase::setResult() |
||
| 1841 | * @uses SoapClientBase::getResult() |
||
| 1842 | * @uses SoapClientBase::saveLastError() |
||
| 1843 | * @param \Ovh\StructType\TelephonyDirectoryModifyPublication $parameters |
||
| 1844 | * @return \Ovh\StructType\TelephonyDirectoryModifyPublicationResponse|bool |
||
| 1845 | */ |
||
| 1846 | public function telephonyDirectoryModifyPublication(\Ovh\StructType\TelephonyDirectoryModifyPublication $parameters) |
||
| 1847 | { |
||
| 1848 | try { |
||
| 1849 | $this->setResult($this->getSoapClient()->__soapCall('telephonyDirectoryModifyPublication', array( |
||
| 1850 | $parameters, |
||
| 1851 | ), array(), array(), $this->outputHeaders)); |
||
| 1852 | return $this->getResult(); |
||
| 1853 | } catch (\SoapFault $soapFault) { |
||
| 1854 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1855 | return false; |
||
| 1856 | } |
||
| 1857 | } |
||
| 1858 | /** |
||
| 1859 | * Method to call the operation originally named telephonyPhonebookOnGroupAdd |
||
| 1860 | * @uses SoapClientBase::getSoapClient() |
||
| 1861 | * @uses SoapClientBase::setResult() |
||
| 1862 | * @uses SoapClientBase::getResult() |
||
| 1863 | * @uses SoapClientBase::saveLastError() |
||
| 1864 | * @param \Ovh\StructType\TelephonyPhonebookOnGroupAdd $parameters |
||
| 1865 | * @return \Ovh\StructType\TelephonyPhonebookOnGroupAddResponse|bool |
||
| 1866 | */ |
||
| 1867 | public function telephonyPhonebookOnGroupAdd(\Ovh\StructType\TelephonyPhonebookOnGroupAdd $parameters) |
||
| 1868 | { |
||
| 1869 | try { |
||
| 1870 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPhonebookOnGroupAdd', array( |
||
| 1871 | $parameters, |
||
| 1872 | ), array(), array(), $this->outputHeaders)); |
||
| 1873 | return $this->getResult(); |
||
| 1874 | } catch (\SoapFault $soapFault) { |
||
| 1875 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1876 | return false; |
||
| 1877 | } |
||
| 1878 | } |
||
| 1879 | /** |
||
| 1880 | * Method to call the operation originally named |
||
| 1881 | * telephonyLineSwitchOfferPossibility |
||
| 1882 | * @uses SoapClientBase::getSoapClient() |
||
| 1883 | * @uses SoapClientBase::setResult() |
||
| 1884 | * @uses SoapClientBase::getResult() |
||
| 1885 | * @uses SoapClientBase::saveLastError() |
||
| 1886 | * @param \Ovh\StructType\TelephonyLineSwitchOfferPossibility $parameters |
||
| 1887 | * @return \Ovh\StructType\TelephonyLineSwitchOfferPossibilityResponse|bool |
||
| 1888 | */ |
||
| 1889 | public function telephonyLineSwitchOfferPossibility(\Ovh\StructType\TelephonyLineSwitchOfferPossibility $parameters) |
||
| 1890 | { |
||
| 1891 | try { |
||
| 1892 | $this->setResult($this->getSoapClient()->__soapCall('telephonyLineSwitchOfferPossibility', array( |
||
| 1893 | $parameters, |
||
| 1894 | ), array(), array(), $this->outputHeaders)); |
||
| 1895 | return $this->getResult(); |
||
| 1896 | } catch (\SoapFault $soapFault) { |
||
| 1897 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1898 | return false; |
||
| 1899 | } |
||
| 1900 | } |
||
| 1901 | /** |
||
| 1902 | * Method to call the operation originally named telephonySmsSenderList |
||
| 1903 | * @uses SoapClientBase::getSoapClient() |
||
| 1904 | * @uses SoapClientBase::setResult() |
||
| 1905 | * @uses SoapClientBase::getResult() |
||
| 1906 | * @uses SoapClientBase::saveLastError() |
||
| 1907 | * @param \Ovh\StructType\TelephonySmsSenderList $parameters |
||
| 1908 | * @return \Ovh\StructType\TelephonySmsSenderListResponse|bool |
||
| 1909 | */ |
||
| 1910 | public function telephonySmsSenderList(\Ovh\StructType\TelephonySmsSenderList $parameters) |
||
| 1911 | { |
||
| 1912 | try { |
||
| 1913 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsSenderList', array( |
||
| 1914 | $parameters, |
||
| 1915 | ), array(), array(), $this->outputHeaders)); |
||
| 1916 | return $this->getResult(); |
||
| 1917 | } catch (\SoapFault $soapFault) { |
||
| 1918 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1919 | return false; |
||
| 1920 | } |
||
| 1921 | } |
||
| 1922 | /** |
||
| 1923 | * Method to call the operation originally named telephonySipToAliasOffer |
||
| 1924 | * @uses SoapClientBase::getSoapClient() |
||
| 1925 | * @uses SoapClientBase::setResult() |
||
| 1926 | * @uses SoapClientBase::getResult() |
||
| 1927 | * @uses SoapClientBase::saveLastError() |
||
| 1928 | * @param \Ovh\StructType\TelephonySipToAliasOffer $parameters |
||
| 1929 | * @return \Ovh\StructType\TelephonySipToAliasOfferResponse|bool |
||
| 1930 | */ |
||
| 1931 | public function telephonySipToAliasOffer(\Ovh\StructType\TelephonySipToAliasOffer $parameters) |
||
| 1932 | { |
||
| 1933 | try { |
||
| 1934 | $this->setResult($this->getSoapClient()->__soapCall('telephonySipToAliasOffer', array( |
||
| 1935 | $parameters, |
||
| 1936 | ), array(), array(), $this->outputHeaders)); |
||
| 1937 | return $this->getResult(); |
||
| 1938 | } catch (\SoapFault $soapFault) { |
||
| 1939 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1940 | return false; |
||
| 1941 | } |
||
| 1942 | } |
||
| 1943 | /** |
||
| 1944 | * Method to call the operation originally named telephonyFunctionKeyList |
||
| 1945 | * @uses SoapClientBase::getSoapClient() |
||
| 1946 | * @uses SoapClientBase::setResult() |
||
| 1947 | * @uses SoapClientBase::getResult() |
||
| 1948 | * @uses SoapClientBase::saveLastError() |
||
| 1949 | * @param \Ovh\StructType\TelephonyFunctionKeyList $parameters |
||
| 1950 | * @return \Ovh\StructType\TelephonyFunctionKeyListResponse|bool |
||
| 1951 | */ |
||
| 1952 | public function telephonyFunctionKeyList(\Ovh\StructType\TelephonyFunctionKeyList $parameters) |
||
| 1953 | { |
||
| 1954 | try { |
||
| 1955 | $this->setResult($this->getSoapClient()->__soapCall('telephonyFunctionKeyList', array( |
||
| 1956 | $parameters, |
||
| 1957 | ), array(), array(), $this->outputHeaders)); |
||
| 1958 | return $this->getResult(); |
||
| 1959 | } catch (\SoapFault $soapFault) { |
||
| 1960 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1961 | return false; |
||
| 1962 | } |
||
| 1963 | } |
||
| 1964 | /** |
||
| 1965 | * Method to call the operation originally named telephonySmsGetCallBack |
||
| 1966 | * @uses SoapClientBase::getSoapClient() |
||
| 1967 | * @uses SoapClientBase::setResult() |
||
| 1968 | * @uses SoapClientBase::getResult() |
||
| 1969 | * @uses SoapClientBase::saveLastError() |
||
| 1970 | * @param \Ovh\StructType\TelephonySmsGetCallBack $parameters |
||
| 1971 | * @return \Ovh\StructType\TelephonySmsGetCallBackResponse|bool |
||
| 1972 | */ |
||
| 1973 | public function telephonySmsGetCallBack(\Ovh\StructType\TelephonySmsGetCallBack $parameters) |
||
| 1974 | { |
||
| 1975 | try { |
||
| 1976 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsGetCallBack', array( |
||
| 1977 | $parameters, |
||
| 1978 | ), array(), array(), $this->outputHeaders)); |
||
| 1979 | return $this->getResult(); |
||
| 1980 | } catch (\SoapFault $soapFault) { |
||
| 1981 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 1982 | return false; |
||
| 1983 | } |
||
| 1984 | } |
||
| 1985 | /** |
||
| 1986 | * Method to call the operation originally named telephonySviModify |
||
| 1987 | * @uses SoapClientBase::getSoapClient() |
||
| 1988 | * @uses SoapClientBase::setResult() |
||
| 1989 | * @uses SoapClientBase::getResult() |
||
| 1990 | * @uses SoapClientBase::saveLastError() |
||
| 1991 | * @param \Ovh\StructType\TelephonySviModify $parameters |
||
| 1992 | * @return \Ovh\StructType\TelephonySviModifyResponse|bool |
||
| 1993 | */ |
||
| 1994 | public function telephonySviModify(\Ovh\StructType\TelephonySviModify $parameters) |
||
| 1995 | { |
||
| 1996 | try { |
||
| 1997 | $this->setResult($this->getSoapClient()->__soapCall('telephonySviModify', array( |
||
| 1998 | $parameters, |
||
| 1999 | ), array(), array(), $this->outputHeaders)); |
||
| 2000 | return $this->getResult(); |
||
| 2001 | } catch (\SoapFault $soapFault) { |
||
| 2002 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2003 | return false; |
||
| 2004 | } |
||
| 2005 | } |
||
| 2006 | /** |
||
| 2007 | * Method to call the operation originally named telephonySmsplusServiceDelete |
||
| 2008 | * @uses SoapClientBase::getSoapClient() |
||
| 2009 | * @uses SoapClientBase::setResult() |
||
| 2010 | * @uses SoapClientBase::getResult() |
||
| 2011 | * @uses SoapClientBase::saveLastError() |
||
| 2012 | * @param \Ovh\StructType\TelephonySmsplusServiceDelete $parameters |
||
| 2013 | * @return \Ovh\StructType\TelephonySmsplusServiceDeleteResponse|bool |
||
| 2014 | */ |
||
| 2015 | public function telephonySmsplusServiceDelete(\Ovh\StructType\TelephonySmsplusServiceDelete $parameters) |
||
| 2016 | { |
||
| 2017 | try { |
||
| 2018 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsplusServiceDelete', array( |
||
| 2019 | $parameters, |
||
| 2020 | ), array(), array(), $this->outputHeaders)); |
||
| 2021 | return $this->getResult(); |
||
| 2022 | } catch (\SoapFault $soapFault) { |
||
| 2023 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2024 | return false; |
||
| 2025 | } |
||
| 2026 | } |
||
| 2027 | /** |
||
| 2028 | * Method to call the operation originally named telephonyLineSwitchOffer |
||
| 2029 | * @uses SoapClientBase::getSoapClient() |
||
| 2030 | * @uses SoapClientBase::setResult() |
||
| 2031 | * @uses SoapClientBase::getResult() |
||
| 2032 | * @uses SoapClientBase::saveLastError() |
||
| 2033 | * @param \Ovh\StructType\TelephonyLineSwitchOffer $parameters |
||
| 2034 | * @return \Ovh\StructType\TelephonyLineSwitchOfferResponse|bool |
||
| 2035 | */ |
||
| 2036 | public function telephonyLineSwitchOffer(\Ovh\StructType\TelephonyLineSwitchOffer $parameters) |
||
| 2037 | { |
||
| 2038 | try { |
||
| 2039 | $this->setResult($this->getSoapClient()->__soapCall('telephonyLineSwitchOffer', array( |
||
| 2040 | $parameters, |
||
| 2041 | ), array(), array(), $this->outputHeaders)); |
||
| 2042 | return $this->getResult(); |
||
| 2043 | } catch (\SoapFault $soapFault) { |
||
| 2044 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2045 | return false; |
||
| 2046 | } |
||
| 2047 | } |
||
| 2048 | /** |
||
| 2049 | * Method to call the operation originally named |
||
| 2050 | * telephonyTrunkExternalDisplayedNumberCheck |
||
| 2051 | * @uses SoapClientBase::getSoapClient() |
||
| 2052 | * @uses SoapClientBase::setResult() |
||
| 2053 | * @uses SoapClientBase::getResult() |
||
| 2054 | * @uses SoapClientBase::saveLastError() |
||
| 2055 | * @param \Ovh\StructType\TelephonyTrunkExternalDisplayedNumberCheck $parameters |
||
| 2056 | * @return \Ovh\StructType\TelephonyTrunkExternalDisplayedNumberCheckResponse|bool |
||
| 2057 | */ |
||
| 2058 | public function telephonyTrunkExternalDisplayedNumberCheck(\Ovh\StructType\TelephonyTrunkExternalDisplayedNumberCheck $parameters) |
||
| 2059 | { |
||
| 2060 | try { |
||
| 2061 | $this->setResult($this->getSoapClient()->__soapCall('telephonyTrunkExternalDisplayedNumberCheck', array( |
||
| 2062 | $parameters, |
||
| 2063 | ), array(), array(), $this->outputHeaders)); |
||
| 2064 | return $this->getResult(); |
||
| 2065 | } catch (\SoapFault $soapFault) { |
||
| 2066 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2067 | return false; |
||
| 2068 | } |
||
| 2069 | } |
||
| 2070 | /** |
||
| 2071 | * Method to call the operation originally named telephonyDelClosureEvents |
||
| 2072 | * @uses SoapClientBase::getSoapClient() |
||
| 2073 | * @uses SoapClientBase::setResult() |
||
| 2074 | * @uses SoapClientBase::getResult() |
||
| 2075 | * @uses SoapClientBase::saveLastError() |
||
| 2076 | * @param \Ovh\StructType\TelephonyDelClosureEvents $parameters |
||
| 2077 | * @return \Ovh\StructType\TelephonyDelClosureEventsResponse|bool |
||
| 2078 | */ |
||
| 2079 | public function telephonyDelClosureEvents(\Ovh\StructType\TelephonyDelClosureEvents $parameters) |
||
| 2080 | { |
||
| 2081 | try { |
||
| 2082 | $this->setResult($this->getSoapClient()->__soapCall('telephonyDelClosureEvents', array( |
||
| 2083 | $parameters, |
||
| 2084 | ), array(), array(), $this->outputHeaders)); |
||
| 2085 | return $this->getResult(); |
||
| 2086 | } catch (\SoapFault $soapFault) { |
||
| 2087 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2088 | return false; |
||
| 2089 | } |
||
| 2090 | } |
||
| 2091 | /** |
||
| 2092 | * Method to call the operation originally named |
||
| 2093 | * telephonyFreefaxToVoicefaxCheckList |
||
| 2094 | * @uses SoapClientBase::getSoapClient() |
||
| 2095 | * @uses SoapClientBase::setResult() |
||
| 2096 | * @uses SoapClientBase::getResult() |
||
| 2097 | * @uses SoapClientBase::saveLastError() |
||
| 2098 | * @param \Ovh\StructType\TelephonyFreefaxToVoicefaxCheckList $parameters |
||
| 2099 | * @return \Ovh\StructType\TelephonyFreefaxToVoicefaxCheckListResponse|bool |
||
| 2100 | */ |
||
| 2101 | public function telephonyFreefaxToVoicefaxCheckList(\Ovh\StructType\TelephonyFreefaxToVoicefaxCheckList $parameters) |
||
| 2102 | { |
||
| 2103 | try { |
||
| 2104 | $this->setResult($this->getSoapClient()->__soapCall('telephonyFreefaxToVoicefaxCheckList', array( |
||
| 2105 | $parameters, |
||
| 2106 | ), array(), array(), $this->outputHeaders)); |
||
| 2107 | return $this->getResult(); |
||
| 2108 | } catch (\SoapFault $soapFault) { |
||
| 2109 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2110 | return false; |
||
| 2111 | } |
||
| 2112 | } |
||
| 2113 | /** |
||
| 2114 | * Method to call the operation originally named telephonyVoicemailModifyPassword |
||
| 2115 | * @uses SoapClientBase::getSoapClient() |
||
| 2116 | * @uses SoapClientBase::setResult() |
||
| 2117 | * @uses SoapClientBase::getResult() |
||
| 2118 | * @uses SoapClientBase::saveLastError() |
||
| 2119 | * @param \Ovh\StructType\TelephonyVoicemailModifyPassword $parameters |
||
| 2120 | * @return \Ovh\StructType\TelephonyVoicemailModifyPasswordResponse|bool |
||
| 2121 | */ |
||
| 2122 | public function telephonyVoicemailModifyPassword(\Ovh\StructType\TelephonyVoicemailModifyPassword $parameters) |
||
| 2123 | { |
||
| 2124 | try { |
||
| 2125 | $this->setResult($this->getSoapClient()->__soapCall('telephonyVoicemailModifyPassword', array( |
||
| 2126 | $parameters, |
||
| 2127 | ), array(), array(), $this->outputHeaders)); |
||
| 2128 | return $this->getResult(); |
||
| 2129 | } catch (\SoapFault $soapFault) { |
||
| 2130 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2131 | return false; |
||
| 2132 | } |
||
| 2133 | } |
||
| 2134 | /** |
||
| 2135 | * Method to call the operation originally named telephonySpareCapabilities |
||
| 2136 | * @uses SoapClientBase::getSoapClient() |
||
| 2137 | * @uses SoapClientBase::setResult() |
||
| 2138 | * @uses SoapClientBase::getResult() |
||
| 2139 | * @uses SoapClientBase::saveLastError() |
||
| 2140 | * @param \Ovh\StructType\TelephonySpareCapabilities $parameters |
||
| 2141 | * @return \Ovh\StructType\TelephonySpareCapabilitiesResponse|bool |
||
| 2142 | */ |
||
| 2143 | public function telephonySpareCapabilities(\Ovh\StructType\TelephonySpareCapabilities $parameters) |
||
| 2144 | { |
||
| 2145 | try { |
||
| 2146 | $this->setResult($this->getSoapClient()->__soapCall('telephonySpareCapabilities', array( |
||
| 2147 | $parameters, |
||
| 2148 | ), array(), array(), $this->outputHeaders)); |
||
| 2149 | return $this->getResult(); |
||
| 2150 | } catch (\SoapFault $soapFault) { |
||
| 2151 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2152 | return false; |
||
| 2153 | } |
||
| 2154 | } |
||
| 2155 | /** |
||
| 2156 | * Method to call the operation originally named telephonyPhonebookOnSmsDel |
||
| 2157 | * @uses SoapClientBase::getSoapClient() |
||
| 2158 | * @uses SoapClientBase::setResult() |
||
| 2159 | * @uses SoapClientBase::getResult() |
||
| 2160 | * @uses SoapClientBase::saveLastError() |
||
| 2161 | * @param \Ovh\StructType\TelephonyPhonebookOnSmsDel $parameters |
||
| 2162 | * @return \Ovh\StructType\TelephonyPhonebookOnSmsDelResponse|bool |
||
| 2163 | */ |
||
| 2164 | public function telephonyPhonebookOnSmsDel(\Ovh\StructType\TelephonyPhonebookOnSmsDel $parameters) |
||
| 2165 | { |
||
| 2166 | try { |
||
| 2167 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPhonebookOnSmsDel', array( |
||
| 2168 | $parameters, |
||
| 2169 | ), array(), array(), $this->outputHeaders)); |
||
| 2170 | return $this->getResult(); |
||
| 2171 | } catch (\SoapFault $soapFault) { |
||
| 2172 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2173 | return false; |
||
| 2174 | } |
||
| 2175 | } |
||
| 2176 | /** |
||
| 2177 | * Method to call the operation originally named telephonyPhonebookShare |
||
| 2178 | * @uses SoapClientBase::getSoapClient() |
||
| 2179 | * @uses SoapClientBase::setResult() |
||
| 2180 | * @uses SoapClientBase::getResult() |
||
| 2181 | * @uses SoapClientBase::saveLastError() |
||
| 2182 | * @param \Ovh\StructType\TelephonyPhonebookShare $parameters |
||
| 2183 | * @return \Ovh\StructType\TelephonyPhonebookShareResponse|bool |
||
| 2184 | */ |
||
| 2185 | public function telephonyPhonebookShare(\Ovh\StructType\TelephonyPhonebookShare $parameters) |
||
| 2186 | { |
||
| 2187 | try { |
||
| 2188 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPhonebookShare', array( |
||
| 2189 | $parameters, |
||
| 2190 | ), array(), array(), $this->outputHeaders)); |
||
| 2191 | return $this->getResult(); |
||
| 2192 | } catch (\SoapFault $soapFault) { |
||
| 2193 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2194 | return false; |
||
| 2195 | } |
||
| 2196 | } |
||
| 2197 | /** |
||
| 2198 | * Method to call the operation originally named telephonySmsSetUserQuota |
||
| 2199 | * @uses SoapClientBase::getSoapClient() |
||
| 2200 | * @uses SoapClientBase::setResult() |
||
| 2201 | * @uses SoapClientBase::getResult() |
||
| 2202 | * @uses SoapClientBase::saveLastError() |
||
| 2203 | * @param \Ovh\StructType\TelephonySmsSetUserQuota $parameters |
||
| 2204 | * @return \Ovh\StructType\TelephonySmsSetUserQuotaResponse|bool |
||
| 2205 | */ |
||
| 2206 | public function telephonySmsSetUserQuota(\Ovh\StructType\TelephonySmsSetUserQuota $parameters) |
||
| 2207 | { |
||
| 2208 | try { |
||
| 2209 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsSetUserQuota', array( |
||
| 2210 | $parameters, |
||
| 2211 | ), array(), array(), $this->outputHeaders)); |
||
| 2212 | return $this->getResult(); |
||
| 2213 | } catch (\SoapFault $soapFault) { |
||
| 2214 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2215 | return false; |
||
| 2216 | } |
||
| 2217 | } |
||
| 2218 | /** |
||
| 2219 | * Method to call the operation originally named telephonySmsHistoryCsv |
||
| 2220 | * @uses SoapClientBase::getSoapClient() |
||
| 2221 | * @uses SoapClientBase::setResult() |
||
| 2222 | * @uses SoapClientBase::getResult() |
||
| 2223 | * @uses SoapClientBase::saveLastError() |
||
| 2224 | * @param \Ovh\StructType\TelephonySmsHistoryCsv $parameters |
||
| 2225 | * @return \Ovh\StructType\TelephonySmsHistoryCsvResponse|bool |
||
| 2226 | */ |
||
| 2227 | public function telephonySmsHistoryCsv(\Ovh\StructType\TelephonySmsHistoryCsv $parameters) |
||
| 2228 | { |
||
| 2229 | try { |
||
| 2230 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsHistoryCsv', array( |
||
| 2231 | $parameters, |
||
| 2232 | ), array(), array(), $this->outputHeaders)); |
||
| 2233 | return $this->getResult(); |
||
| 2234 | } catch (\SoapFault $soapFault) { |
||
| 2235 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2236 | return false; |
||
| 2237 | } |
||
| 2238 | } |
||
| 2239 | /** |
||
| 2240 | * Method to call the operation originally named |
||
| 2241 | * telephonyAbbreviatedNumberOnGroupList |
||
| 2242 | * @uses SoapClientBase::getSoapClient() |
||
| 2243 | * @uses SoapClientBase::setResult() |
||
| 2244 | * @uses SoapClientBase::getResult() |
||
| 2245 | * @uses SoapClientBase::saveLastError() |
||
| 2246 | * @param \Ovh\StructType\TelephonyAbbreviatedNumberOnGroupList $parameters |
||
| 2247 | * @return \Ovh\StructType\TelephonyAbbreviatedNumberOnGroupListResponse|bool |
||
| 2248 | */ |
||
| 2249 | public function telephonyAbbreviatedNumberOnGroupList(\Ovh\StructType\TelephonyAbbreviatedNumberOnGroupList $parameters) |
||
| 2250 | { |
||
| 2251 | try { |
||
| 2252 | $this->setResult($this->getSoapClient()->__soapCall('telephonyAbbreviatedNumberOnGroupList', array( |
||
| 2253 | $parameters, |
||
| 2254 | ), array(), array(), $this->outputHeaders)); |
||
| 2255 | return $this->getResult(); |
||
| 2256 | } catch (\SoapFault $soapFault) { |
||
| 2257 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2258 | return false; |
||
| 2259 | } |
||
| 2260 | } |
||
| 2261 | /** |
||
| 2262 | * Method to call the operation originally named telephonyLineLogs |
||
| 2263 | * @uses SoapClientBase::getSoapClient() |
||
| 2264 | * @uses SoapClientBase::setResult() |
||
| 2265 | * @uses SoapClientBase::getResult() |
||
| 2266 | * @uses SoapClientBase::saveLastError() |
||
| 2267 | * @param \Ovh\StructType\TelephonyLineLogs $parameters |
||
| 2268 | * @return \Ovh\StructType\TelephonyLineLogsResponse|bool |
||
| 2269 | */ |
||
| 2270 | public function telephonyLineLogs(\Ovh\StructType\TelephonyLineLogs $parameters) |
||
| 2271 | { |
||
| 2272 | try { |
||
| 2273 | $this->setResult($this->getSoapClient()->__soapCall('telephonyLineLogs', array( |
||
| 2274 | $parameters, |
||
| 2275 | ), array(), array(), $this->outputHeaders)); |
||
| 2276 | return $this->getResult(); |
||
| 2277 | } catch (\SoapFault $soapFault) { |
||
| 2278 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2279 | return false; |
||
| 2280 | } |
||
| 2281 | } |
||
| 2282 | /** |
||
| 2283 | * Method to call the operation originally named telephonySpareReplace |
||
| 2284 | * @uses SoapClientBase::getSoapClient() |
||
| 2285 | * @uses SoapClientBase::setResult() |
||
| 2286 | * @uses SoapClientBase::getResult() |
||
| 2287 | * @uses SoapClientBase::saveLastError() |
||
| 2288 | * @param \Ovh\StructType\TelephonySpareReplace $parameters |
||
| 2289 | * @return \Ovh\StructType\TelephonySpareReplaceResponse|bool |
||
| 2290 | */ |
||
| 2291 | public function telephonySpareReplace(\Ovh\StructType\TelephonySpareReplace $parameters) |
||
| 2292 | { |
||
| 2293 | try { |
||
| 2294 | $this->setResult($this->getSoapClient()->__soapCall('telephonySpareReplace', array( |
||
| 2295 | $parameters, |
||
| 2296 | ), array(), array(), $this->outputHeaders)); |
||
| 2297 | return $this->getResult(); |
||
| 2298 | } catch (\SoapFault $soapFault) { |
||
| 2299 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2300 | return false; |
||
| 2301 | } |
||
| 2302 | } |
||
| 2303 | /** |
||
| 2304 | * Method to call the operation originally named telephonyClick2CallUserList |
||
| 2305 | * @uses SoapClientBase::getSoapClient() |
||
| 2306 | * @uses SoapClientBase::setResult() |
||
| 2307 | * @uses SoapClientBase::getResult() |
||
| 2308 | * @uses SoapClientBase::saveLastError() |
||
| 2309 | * @param \Ovh\StructType\TelephonyClick2CallUserList $parameters |
||
| 2310 | * @return \Ovh\StructType\TelephonyClick2CallUserListResponse|bool |
||
| 2311 | */ |
||
| 2312 | public function telephonyClick2CallUserList(\Ovh\StructType\TelephonyClick2CallUserList $parameters) |
||
| 2313 | { |
||
| 2314 | try { |
||
| 2315 | $this->setResult($this->getSoapClient()->__soapCall('telephonyClick2CallUserList', array( |
||
| 2316 | $parameters, |
||
| 2317 | ), array(), array(), $this->outputHeaders)); |
||
| 2318 | return $this->getResult(); |
||
| 2319 | } catch (\SoapFault $soapFault) { |
||
| 2320 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2321 | return false; |
||
| 2322 | } |
||
| 2323 | } |
||
| 2324 | /** |
||
| 2325 | * Method to call the operation originally named telephonyVoicemailMailboxList |
||
| 2326 | * @uses SoapClientBase::getSoapClient() |
||
| 2327 | * @uses SoapClientBase::setResult() |
||
| 2328 | * @uses SoapClientBase::getResult() |
||
| 2329 | * @uses SoapClientBase::saveLastError() |
||
| 2330 | * @param \Ovh\StructType\TelephonyVoicemailMailboxList $parameters |
||
| 2331 | * @return \Ovh\StructType\TelephonyVoicemailMailboxListResponse|bool |
||
| 2332 | */ |
||
| 2333 | public function telephonyVoicemailMailboxList(\Ovh\StructType\TelephonyVoicemailMailboxList $parameters) |
||
| 2334 | { |
||
| 2335 | try { |
||
| 2336 | $this->setResult($this->getSoapClient()->__soapCall('telephonyVoicemailMailboxList', array( |
||
| 2337 | $parameters, |
||
| 2338 | ), array(), array(), $this->outputHeaders)); |
||
| 2339 | return $this->getResult(); |
||
| 2340 | } catch (\SoapFault $soapFault) { |
||
| 2341 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2342 | return false; |
||
| 2343 | } |
||
| 2344 | } |
||
| 2345 | /** |
||
| 2346 | * Method to call the operation originally named telephonyFaxCampaignDetails |
||
| 2347 | * @uses SoapClientBase::getSoapClient() |
||
| 2348 | * @uses SoapClientBase::setResult() |
||
| 2349 | * @uses SoapClientBase::getResult() |
||
| 2350 | * @uses SoapClientBase::saveLastError() |
||
| 2351 | * @param \Ovh\StructType\TelephonyFaxCampaignDetails $parameters |
||
| 2352 | * @return \Ovh\StructType\TelephonyFaxCampaignDetailsResponse|bool |
||
| 2353 | */ |
||
| 2354 | public function telephonyFaxCampaignDetails(\Ovh\StructType\TelephonyFaxCampaignDetails $parameters) |
||
| 2355 | { |
||
| 2356 | try { |
||
| 2357 | $this->setResult($this->getSoapClient()->__soapCall('telephonyFaxCampaignDetails', array( |
||
| 2358 | $parameters, |
||
| 2359 | ), array(), array(), $this->outputHeaders)); |
||
| 2360 | return $this->getResult(); |
||
| 2361 | } catch (\SoapFault $soapFault) { |
||
| 2362 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2363 | return false; |
||
| 2364 | } |
||
| 2365 | } |
||
| 2366 | /** |
||
| 2367 | * Method to call the operation originally named telephonyPhonebookOnGroupDel |
||
| 2368 | * @uses SoapClientBase::getSoapClient() |
||
| 2369 | * @uses SoapClientBase::setResult() |
||
| 2370 | * @uses SoapClientBase::getResult() |
||
| 2371 | * @uses SoapClientBase::saveLastError() |
||
| 2372 | * @param \Ovh\StructType\TelephonyPhonebookOnGroupDel $parameters |
||
| 2373 | * @return \Ovh\StructType\TelephonyPhonebookOnGroupDelResponse|bool |
||
| 2374 | */ |
||
| 2375 | public function telephonyPhonebookOnGroupDel(\Ovh\StructType\TelephonyPhonebookOnGroupDel $parameters) |
||
| 2376 | { |
||
| 2377 | try { |
||
| 2378 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPhonebookOnGroupDel', array( |
||
| 2379 | $parameters, |
||
| 2380 | ), array(), array(), $this->outputHeaders)); |
||
| 2381 | return $this->getResult(); |
||
| 2382 | } catch (\SoapFault $soapFault) { |
||
| 2383 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2384 | return false; |
||
| 2385 | } |
||
| 2386 | } |
||
| 2387 | /** |
||
| 2388 | * Method to call the operation originally named telephonyPhonebookOnGroupList |
||
| 2389 | * @uses SoapClientBase::getSoapClient() |
||
| 2390 | * @uses SoapClientBase::setResult() |
||
| 2391 | * @uses SoapClientBase::getResult() |
||
| 2392 | * @uses SoapClientBase::saveLastError() |
||
| 2393 | * @param \Ovh\StructType\TelephonyPhonebookOnGroupList $parameters |
||
| 2394 | * @return \Ovh\StructType\TelephonyPhonebookOnGroupListResponse|bool |
||
| 2395 | */ |
||
| 2396 | public function telephonyPhonebookOnGroupList(\Ovh\StructType\TelephonyPhonebookOnGroupList $parameters) |
||
| 2397 | { |
||
| 2398 | try { |
||
| 2399 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPhonebookOnGroupList', array( |
||
| 2400 | $parameters, |
||
| 2401 | ), array(), array(), $this->outputHeaders)); |
||
| 2402 | return $this->getResult(); |
||
| 2403 | } catch (\SoapFault $soapFault) { |
||
| 2404 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2405 | return false; |
||
| 2406 | } |
||
| 2407 | } |
||
| 2408 | /** |
||
| 2409 | * Method to call the operation originally named telephonySpecialNumberCustomList |
||
| 2410 | * @uses SoapClientBase::getSoapClient() |
||
| 2411 | * @uses SoapClientBase::setResult() |
||
| 2412 | * @uses SoapClientBase::getResult() |
||
| 2413 | * @uses SoapClientBase::saveLastError() |
||
| 2414 | * @param \Ovh\StructType\TelephonySpecialNumberCustomList $parameters |
||
| 2415 | * @return \Ovh\StructType\TelephonySpecialNumberCustomListResponse|bool |
||
| 2416 | */ |
||
| 2417 | public function telephonySpecialNumberCustomList(\Ovh\StructType\TelephonySpecialNumberCustomList $parameters) |
||
| 2418 | { |
||
| 2419 | try { |
||
| 2420 | $this->setResult($this->getSoapClient()->__soapCall('telephonySpecialNumberCustomList', array( |
||
| 2421 | $parameters, |
||
| 2422 | ), array(), array(), $this->outputHeaders)); |
||
| 2423 | return $this->getResult(); |
||
| 2424 | } catch (\SoapFault $soapFault) { |
||
| 2425 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2426 | return false; |
||
| 2427 | } |
||
| 2428 | } |
||
| 2429 | /** |
||
| 2430 | * Method to call the operation originally named |
||
| 2431 | * telephonyFMHuntingModificationSimultaneousCalls |
||
| 2432 | * @uses SoapClientBase::getSoapClient() |
||
| 2433 | * @uses SoapClientBase::setResult() |
||
| 2434 | * @uses SoapClientBase::getResult() |
||
| 2435 | * @uses SoapClientBase::saveLastError() |
||
| 2436 | * @param \Ovh\StructType\TelephonyFMHuntingModificationSimultaneousCalls $parameters |
||
| 2437 | * @return \Ovh\StructType\TelephonyFMHuntingModificationSimultaneousCallsResponse|bool |
||
| 2438 | */ |
||
| 2439 | public function telephonyFMHuntingModificationSimultaneousCalls(\Ovh\StructType\TelephonyFMHuntingModificationSimultaneousCalls $parameters) |
||
| 2440 | { |
||
| 2441 | try { |
||
| 2442 | $this->setResult($this->getSoapClient()->__soapCall('telephonyFMHuntingModificationSimultaneousCalls', array( |
||
| 2443 | $parameters, |
||
| 2444 | ), array(), array(), $this->outputHeaders)); |
||
| 2445 | return $this->getResult(); |
||
| 2446 | } catch (\SoapFault $soapFault) { |
||
| 2447 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2448 | return false; |
||
| 2449 | } |
||
| 2450 | } |
||
| 2451 | /** |
||
| 2452 | * Method to call the operation originally named telephonyVoicemailMailboxDownload |
||
| 2453 | * @uses SoapClientBase::getSoapClient() |
||
| 2454 | * @uses SoapClientBase::setResult() |
||
| 2455 | * @uses SoapClientBase::getResult() |
||
| 2456 | * @uses SoapClientBase::saveLastError() |
||
| 2457 | * @param \Ovh\StructType\TelephonyVoicemailMailboxDownload $parameters |
||
| 2458 | * @return \Ovh\StructType\TelephonyVoicemailMailboxDownloadResponse|bool |
||
| 2459 | */ |
||
| 2460 | public function telephonyVoicemailMailboxDownload(\Ovh\StructType\TelephonyVoicemailMailboxDownload $parameters) |
||
| 2461 | { |
||
| 2462 | try { |
||
| 2463 | $this->setResult($this->getSoapClient()->__soapCall('telephonyVoicemailMailboxDownload', array( |
||
| 2464 | $parameters, |
||
| 2465 | ), array(), array(), $this->outputHeaders)); |
||
| 2466 | return $this->getResult(); |
||
| 2467 | } catch (\SoapFault $soapFault) { |
||
| 2468 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2469 | return false; |
||
| 2470 | } |
||
| 2471 | } |
||
| 2472 | /** |
||
| 2473 | * Method to call the operation originally named telephonyNicGetIpRestriction |
||
| 2474 | * @uses SoapClientBase::getSoapClient() |
||
| 2475 | * @uses SoapClientBase::setResult() |
||
| 2476 | * @uses SoapClientBase::getResult() |
||
| 2477 | * @uses SoapClientBase::saveLastError() |
||
| 2478 | * @param \Ovh\StructType\TelephonyNicGetIpRestriction $parameters |
||
| 2479 | * @return \Ovh\StructType\TelephonyNicGetIpRestrictionResponse|bool |
||
| 2480 | */ |
||
| 2481 | public function telephonyNicGetIpRestriction(\Ovh\StructType\TelephonyNicGetIpRestriction $parameters) |
||
| 2482 | { |
||
| 2483 | try { |
||
| 2484 | $this->setResult($this->getSoapClient()->__soapCall('telephonyNicGetIpRestriction', array( |
||
| 2485 | $parameters, |
||
| 2486 | ), array(), array(), $this->outputHeaders)); |
||
| 2487 | return $this->getResult(); |
||
| 2488 | } catch (\SoapFault $soapFault) { |
||
| 2489 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2490 | return false; |
||
| 2491 | } |
||
| 2492 | } |
||
| 2493 | /** |
||
| 2494 | * Method to call the operation originally named telephonyGetClosureEventsAsArray |
||
| 2495 | * @uses SoapClientBase::getSoapClient() |
||
| 2496 | * @uses SoapClientBase::setResult() |
||
| 2497 | * @uses SoapClientBase::getResult() |
||
| 2498 | * @uses SoapClientBase::saveLastError() |
||
| 2499 | * @param \Ovh\StructType\TelephonyGetClosureEventsAsArray $parameters |
||
| 2500 | * @return \Ovh\ArrayType\TelephonyGetClosureEventsAsArrayResponse|bool |
||
| 2501 | */ |
||
| 2502 | public function telephonyGetClosureEventsAsArray(\Ovh\StructType\TelephonyGetClosureEventsAsArray $parameters) |
||
| 2503 | { |
||
| 2504 | try { |
||
| 2505 | $this->setResult($this->getSoapClient()->__soapCall('telephonyGetClosureEventsAsArray', array( |
||
| 2506 | $parameters, |
||
| 2507 | ), array(), array(), $this->outputHeaders)); |
||
| 2508 | return $this->getResult(); |
||
| 2509 | } catch (\SoapFault $soapFault) { |
||
| 2510 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2511 | return false; |
||
| 2512 | } |
||
| 2513 | } |
||
| 2514 | /** |
||
| 2515 | * Method to call the operation originally named telephonyPhonebookOnSmsContactDel |
||
| 2516 | * @uses SoapClientBase::getSoapClient() |
||
| 2517 | * @uses SoapClientBase::setResult() |
||
| 2518 | * @uses SoapClientBase::getResult() |
||
| 2519 | * @uses SoapClientBase::saveLastError() |
||
| 2520 | * @param \Ovh\StructType\TelephonyPhonebookOnSmsContactDel $parameters |
||
| 2521 | * @return \Ovh\StructType\TelephonyPhonebookOnSmsContactDelResponse|bool |
||
| 2522 | */ |
||
| 2523 | public function telephonyPhonebookOnSmsContactDel(\Ovh\StructType\TelephonyPhonebookOnSmsContactDel $parameters) |
||
| 2533 | } |
||
| 2534 | } |
||
| 2535 | /** |
||
| 2536 | * Method to call the operation originally named |
||
| 2537 | * telephonyReversmentsRefundIsPending |
||
| 2538 | * @uses SoapClientBase::getSoapClient() |
||
| 2539 | * @uses SoapClientBase::setResult() |
||
| 2540 | * @uses SoapClientBase::getResult() |
||
| 2541 | * @uses SoapClientBase::saveLastError() |
||
| 2542 | * @param \Ovh\StructType\TelephonyReversmentsRefundIsPending $parameters |
||
| 2543 | * @return \Ovh\StructType\TelephonyReversmentsRefundIsPendingResponse|bool |
||
| 2544 | */ |
||
| 2545 | public function telephonyReversmentsRefundIsPending(\Ovh\StructType\TelephonyReversmentsRefundIsPending $parameters) |
||
| 2546 | { |
||
| 2547 | try { |
||
| 2548 | $this->setResult($this->getSoapClient()->__soapCall('telephonyReversmentsRefundIsPending', array( |
||
| 2549 | $parameters, |
||
| 2550 | ), array(), array(), $this->outputHeaders)); |
||
| 2551 | return $this->getResult(); |
||
| 2552 | } catch (\SoapFault $soapFault) { |
||
| 2553 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2554 | return false; |
||
| 2555 | } |
||
| 2556 | } |
||
| 2557 | /** |
||
| 2558 | * Method to call the operation originally named telephonyScreenListInfoModify |
||
| 2559 | * @uses SoapClientBase::getSoapClient() |
||
| 2560 | * @uses SoapClientBase::setResult() |
||
| 2561 | * @uses SoapClientBase::getResult() |
||
| 2562 | * @uses SoapClientBase::saveLastError() |
||
| 2563 | * @param \Ovh\StructType\TelephonyScreenListInfoModify $parameters |
||
| 2564 | * @return \Ovh\StructType\TelephonyScreenListInfoModifyResponse|bool |
||
| 2565 | */ |
||
| 2566 | public function telephonyScreenListInfoModify(\Ovh\StructType\TelephonyScreenListInfoModify $parameters) |
||
| 2567 | { |
||
| 2568 | try { |
||
| 2569 | $this->setResult($this->getSoapClient()->__soapCall('telephonyScreenListInfoModify', array( |
||
| 2570 | $parameters, |
||
| 2571 | ), array(), array(), $this->outputHeaders)); |
||
| 2572 | return $this->getResult(); |
||
| 2573 | } catch (\SoapFault $soapFault) { |
||
| 2574 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2575 | return false; |
||
| 2576 | } |
||
| 2577 | } |
||
| 2578 | /** |
||
| 2579 | * Method to call the operation originally named |
||
| 2580 | * telephonySmsplusServiceReversableTicketsList |
||
| 2581 | * @uses SoapClientBase::getSoapClient() |
||
| 2582 | * @uses SoapClientBase::setResult() |
||
| 2583 | * @uses SoapClientBase::getResult() |
||
| 2584 | * @uses SoapClientBase::saveLastError() |
||
| 2585 | * @param \Ovh\StructType\TelephonySmsplusServiceReversableTicketsList $parameters |
||
| 2586 | * @return \Ovh\StructType\TelephonySmsplusServiceReversableTicketsListResponse|bool |
||
| 2587 | */ |
||
| 2588 | public function telephonySmsplusServiceReversableTicketsList(\Ovh\StructType\TelephonySmsplusServiceReversableTicketsList $parameters) |
||
| 2589 | { |
||
| 2590 | try { |
||
| 2591 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsplusServiceReversableTicketsList', array( |
||
| 2592 | $parameters, |
||
| 2593 | ), array(), array(), $this->outputHeaders)); |
||
| 2594 | return $this->getResult(); |
||
| 2595 | } catch (\SoapFault $soapFault) { |
||
| 2596 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2597 | return false; |
||
| 2598 | } |
||
| 2599 | } |
||
| 2600 | /** |
||
| 2601 | * Method to call the operation originally named |
||
| 2602 | * telephonyHuntingGenericScreenStatusModify |
||
| 2603 | * @uses SoapClientBase::getSoapClient() |
||
| 2604 | * @uses SoapClientBase::setResult() |
||
| 2605 | * @uses SoapClientBase::getResult() |
||
| 2606 | * @uses SoapClientBase::saveLastError() |
||
| 2607 | * @param \Ovh\StructType\TelephonyHuntingGenericScreenStatusModify $parameters |
||
| 2608 | * @return \Ovh\StructType\TelephonyHuntingGenericScreenStatusModifyResponse|bool |
||
| 2609 | */ |
||
| 2610 | public function telephonyHuntingGenericScreenStatusModify(\Ovh\StructType\TelephonyHuntingGenericScreenStatusModify $parameters) |
||
| 2611 | { |
||
| 2612 | try { |
||
| 2613 | $this->setResult($this->getSoapClient()->__soapCall('telephonyHuntingGenericScreenStatusModify', array( |
||
| 2614 | $parameters, |
||
| 2615 | ), array(), array(), $this->outputHeaders)); |
||
| 2616 | return $this->getResult(); |
||
| 2617 | } catch (\SoapFault $soapFault) { |
||
| 2618 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2619 | return false; |
||
| 2620 | } |
||
| 2621 | } |
||
| 2622 | /** |
||
| 2623 | * Method to call the operation originally named telephonySmsBlacklistedSendersList |
||
| 2624 | * @uses SoapClientBase::getSoapClient() |
||
| 2625 | * @uses SoapClientBase::setResult() |
||
| 2626 | * @uses SoapClientBase::getResult() |
||
| 2627 | * @uses SoapClientBase::saveLastError() |
||
| 2628 | * @param \Ovh\StructType\TelephonySmsBlacklistedSendersList $parameters |
||
| 2629 | * @return \Ovh\StructType\TelephonySmsBlacklistedSendersListResponse|bool |
||
| 2630 | */ |
||
| 2631 | public function telephonySmsBlacklistedSendersList(\Ovh\StructType\TelephonySmsBlacklistedSendersList $parameters) |
||
| 2632 | { |
||
| 2633 | try { |
||
| 2634 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsBlacklistedSendersList', array( |
||
| 2635 | $parameters, |
||
| 2636 | ), array(), array(), $this->outputHeaders)); |
||
| 2637 | return $this->getResult(); |
||
| 2638 | } catch (\SoapFault $soapFault) { |
||
| 2639 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2640 | return false; |
||
| 2641 | } |
||
| 2642 | } |
||
| 2643 | /** |
||
| 2644 | * Method to call the operation originally named telephonyPhonebookContactAdd |
||
| 2645 | * @uses SoapClientBase::getSoapClient() |
||
| 2646 | * @uses SoapClientBase::setResult() |
||
| 2647 | * @uses SoapClientBase::getResult() |
||
| 2648 | * @uses SoapClientBase::saveLastError() |
||
| 2649 | * @param \Ovh\StructType\TelephonyPhonebookContactAdd $parameters |
||
| 2650 | * @return \Ovh\StructType\TelephonyPhonebookContactAddResponse|bool |
||
| 2651 | */ |
||
| 2652 | public function telephonyPhonebookContactAdd(\Ovh\StructType\TelephonyPhonebookContactAdd $parameters) |
||
| 2662 | } |
||
| 2663 | } |
||
| 2664 | /** |
||
| 2665 | * Method to call the operation originally named |
||
| 2666 | * telephonyPortabilityOrderSpecialNumber |
||
| 2667 | * @uses SoapClientBase::getSoapClient() |
||
| 2668 | * @uses SoapClientBase::setResult() |
||
| 2669 | * @uses SoapClientBase::getResult() |
||
| 2670 | * @uses SoapClientBase::saveLastError() |
||
| 2671 | * @param \Ovh\StructType\TelephonyPortabilityOrderSpecialNumber $parameters |
||
| 2672 | * @return \Ovh\StructType\TelephonyPortabilityOrderSpecialNumberResponse|bool |
||
| 2673 | */ |
||
| 2674 | public function telephonyPortabilityOrderSpecialNumber(\Ovh\StructType\TelephonyPortabilityOrderSpecialNumber $parameters) |
||
| 2675 | { |
||
| 2676 | try { |
||
| 2677 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPortabilityOrderSpecialNumber', array( |
||
| 2678 | $parameters, |
||
| 2679 | ), array(), array(), $this->outputHeaders)); |
||
| 2680 | return $this->getResult(); |
||
| 2681 | } catch (\SoapFault $soapFault) { |
||
| 2682 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2683 | return false; |
||
| 2684 | } |
||
| 2685 | } |
||
| 2686 | /** |
||
| 2687 | * Method to call the operation originally named telephonySmsUserSetCallBack |
||
| 2688 | * @uses SoapClientBase::getSoapClient() |
||
| 2689 | * @uses SoapClientBase::setResult() |
||
| 2690 | * @uses SoapClientBase::getResult() |
||
| 2691 | * @uses SoapClientBase::saveLastError() |
||
| 2692 | * @param \Ovh\StructType\TelephonySmsUserSetCallBack $parameters |
||
| 2693 | * @return \Ovh\StructType\TelephonySmsUserSetCallBackResponse|bool |
||
| 2694 | */ |
||
| 2695 | public function telephonySmsUserSetCallBack(\Ovh\StructType\TelephonySmsUserSetCallBack $parameters) |
||
| 2696 | { |
||
| 2697 | try { |
||
| 2698 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsUserSetCallBack', array( |
||
| 2699 | $parameters, |
||
| 2700 | ), array(), array(), $this->outputHeaders)); |
||
| 2701 | return $this->getResult(); |
||
| 2702 | } catch (\SoapFault $soapFault) { |
||
| 2703 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2704 | return false; |
||
| 2705 | } |
||
| 2706 | } |
||
| 2707 | /** |
||
| 2708 | * Method to call the operation originally named telephonyPhonebookOnGroupModify |
||
| 2709 | * @uses SoapClientBase::getSoapClient() |
||
| 2710 | * @uses SoapClientBase::setResult() |
||
| 2711 | * @uses SoapClientBase::getResult() |
||
| 2712 | * @uses SoapClientBase::saveLastError() |
||
| 2713 | * @param \Ovh\StructType\TelephonyPhonebookOnGroupModify $parameters |
||
| 2714 | * @return \Ovh\StructType\TelephonyPhonebookOnGroupModifyResponse|bool |
||
| 2715 | */ |
||
| 2716 | public function telephonyPhonebookOnGroupModify(\Ovh\StructType\TelephonyPhonebookOnGroupModify $parameters) |
||
| 2717 | { |
||
| 2718 | try { |
||
| 2719 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPhonebookOnGroupModify', array( |
||
| 2720 | $parameters, |
||
| 2721 | ), array(), array(), $this->outputHeaders)); |
||
| 2722 | return $this->getResult(); |
||
| 2723 | } catch (\SoapFault $soapFault) { |
||
| 2724 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2725 | return false; |
||
| 2726 | } |
||
| 2727 | } |
||
| 2728 | /** |
||
| 2729 | * Method to call the operation originally named |
||
| 2730 | * telephonyLineSwitchOldOfferPossibility |
||
| 2731 | * @uses SoapClientBase::getSoapClient() |
||
| 2732 | * @uses SoapClientBase::setResult() |
||
| 2733 | * @uses SoapClientBase::getResult() |
||
| 2734 | * @uses SoapClientBase::saveLastError() |
||
| 2735 | * @param \Ovh\StructType\TelephonyLineSwitchOldOfferPossibility $parameters |
||
| 2736 | * @return \Ovh\StructType\TelephonyLineSwitchOldOfferPossibilityResponse|bool |
||
| 2737 | */ |
||
| 2738 | public function telephonyLineSwitchOldOfferPossibility(\Ovh\StructType\TelephonyLineSwitchOldOfferPossibility $parameters) |
||
| 2739 | { |
||
| 2740 | try { |
||
| 2741 | $this->setResult($this->getSoapClient()->__soapCall('telephonyLineSwitchOldOfferPossibility', array( |
||
| 2742 | $parameters, |
||
| 2743 | ), array(), array(), $this->outputHeaders)); |
||
| 2744 | return $this->getResult(); |
||
| 2745 | } catch (\SoapFault $soapFault) { |
||
| 2746 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2747 | return false; |
||
| 2748 | } |
||
| 2749 | } |
||
| 2750 | /** |
||
| 2751 | * Method to call the operation originally named telephonySmsplusServiceList |
||
| 2752 | * @uses SoapClientBase::getSoapClient() |
||
| 2753 | * @uses SoapClientBase::setResult() |
||
| 2754 | * @uses SoapClientBase::getResult() |
||
| 2755 | * @uses SoapClientBase::saveLastError() |
||
| 2756 | * @param \Ovh\StructType\TelephonySmsplusServiceList $parameters |
||
| 2757 | * @return \Ovh\StructType\TelephonySmsplusServiceListResponse|bool |
||
| 2758 | */ |
||
| 2759 | public function telephonySmsplusServiceList(\Ovh\StructType\TelephonySmsplusServiceList $parameters) |
||
| 2760 | { |
||
| 2761 | try { |
||
| 2762 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsplusServiceList', array( |
||
| 2763 | $parameters, |
||
| 2764 | ), array(), array(), $this->outputHeaders)); |
||
| 2765 | return $this->getResult(); |
||
| 2766 | } catch (\SoapFault $soapFault) { |
||
| 2767 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2768 | return false; |
||
| 2769 | } |
||
| 2770 | } |
||
| 2771 | /** |
||
| 2772 | * Method to call the operation originally named |
||
| 2773 | * telephonyHuntingModificationAnonymousCallRejection |
||
| 2774 | * @uses SoapClientBase::getSoapClient() |
||
| 2775 | * @uses SoapClientBase::setResult() |
||
| 2776 | * @uses SoapClientBase::getResult() |
||
| 2777 | * @uses SoapClientBase::saveLastError() |
||
| 2778 | * @param \Ovh\StructType\TelephonyHuntingModificationAnonymousCallRejection $parameters |
||
| 2779 | * @return \Ovh\StructType\TelephonyHuntingModificationAnonymousCallRejectionResponse|bool |
||
| 2780 | */ |
||
| 2781 | public function telephonyHuntingModificationAnonymousCallRejection(\Ovh\StructType\TelephonyHuntingModificationAnonymousCallRejection $parameters) |
||
| 2782 | { |
||
| 2783 | try { |
||
| 2784 | $this->setResult($this->getSoapClient()->__soapCall('telephonyHuntingModificationAnonymousCallRejection', array( |
||
| 2785 | $parameters, |
||
| 2786 | ), array(), array(), $this->outputHeaders)); |
||
| 2787 | return $this->getResult(); |
||
| 2788 | } catch (\SoapFault $soapFault) { |
||
| 2789 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2790 | return false; |
||
| 2791 | } |
||
| 2792 | } |
||
| 2793 | /** |
||
| 2794 | * Method to call the operation originally named telephonyNumberGetBillingAccount |
||
| 2795 | * @uses SoapClientBase::getSoapClient() |
||
| 2796 | * @uses SoapClientBase::setResult() |
||
| 2797 | * @uses SoapClientBase::getResult() |
||
| 2798 | * @uses SoapClientBase::saveLastError() |
||
| 2799 | * @param \Ovh\StructType\TelephonyNumberGetBillingAccount $parameters |
||
| 2800 | * @return \Ovh\StructType\TelephonyNumberGetBillingAccountResponse|bool |
||
| 2801 | */ |
||
| 2802 | public function telephonyNumberGetBillingAccount(\Ovh\StructType\TelephonyNumberGetBillingAccount $parameters) |
||
| 2803 | { |
||
| 2804 | try { |
||
| 2805 | $this->setResult($this->getSoapClient()->__soapCall('telephonyNumberGetBillingAccount', array( |
||
| 2806 | $parameters, |
||
| 2807 | ), array(), array(), $this->outputHeaders)); |
||
| 2808 | return $this->getResult(); |
||
| 2809 | } catch (\SoapFault $soapFault) { |
||
| 2810 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2811 | return false; |
||
| 2812 | } |
||
| 2813 | } |
||
| 2814 | /** |
||
| 2815 | * Method to call the operation originally named telephonyTonesOptionsList |
||
| 2816 | * @uses SoapClientBase::getSoapClient() |
||
| 2817 | * @uses SoapClientBase::setResult() |
||
| 2818 | * @uses SoapClientBase::getResult() |
||
| 2819 | * @uses SoapClientBase::saveLastError() |
||
| 2820 | * @param \Ovh\StructType\TelephonyTonesOptionsList $parameters |
||
| 2821 | * @return \Ovh\StructType\TelephonyTonesOptionsListResponse|bool |
||
| 2822 | */ |
||
| 2823 | public function telephonyTonesOptionsList(\Ovh\StructType\TelephonyTonesOptionsList $parameters) |
||
| 2824 | { |
||
| 2825 | try { |
||
| 2826 | $this->setResult($this->getSoapClient()->__soapCall('telephonyTonesOptionsList', array( |
||
| 2827 | $parameters, |
||
| 2828 | ), array(), array(), $this->outputHeaders)); |
||
| 2829 | return $this->getResult(); |
||
| 2830 | } catch (\SoapFault $soapFault) { |
||
| 2831 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2832 | return false; |
||
| 2833 | } |
||
| 2834 | } |
||
| 2835 | /** |
||
| 2836 | * Method to call the operation originally named telephonySpareList |
||
| 2837 | * @uses SoapClientBase::getSoapClient() |
||
| 2838 | * @uses SoapClientBase::setResult() |
||
| 2839 | * @uses SoapClientBase::getResult() |
||
| 2840 | * @uses SoapClientBase::saveLastError() |
||
| 2841 | * @param \Ovh\StructType\TelephonySpareList $parameters |
||
| 2842 | * @return \Ovh\StructType\TelephonySpareListResponse|bool |
||
| 2843 | */ |
||
| 2844 | public function telephonySpareList(\Ovh\StructType\TelephonySpareList $parameters) |
||
| 2845 | { |
||
| 2846 | try { |
||
| 2847 | $this->setResult($this->getSoapClient()->__soapCall('telephonySpareList', array( |
||
| 2848 | $parameters, |
||
| 2849 | ), array(), array(), $this->outputHeaders)); |
||
| 2850 | return $this->getResult(); |
||
| 2851 | } catch (\SoapFault $soapFault) { |
||
| 2852 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2853 | return false; |
||
| 2854 | } |
||
| 2855 | } |
||
| 2856 | /** |
||
| 2857 | * Method to call the operation originally named |
||
| 2858 | * telephonyListSummationCallsFromNumber |
||
| 2859 | * @uses SoapClientBase::getSoapClient() |
||
| 2860 | * @uses SoapClientBase::setResult() |
||
| 2861 | * @uses SoapClientBase::getResult() |
||
| 2862 | * @uses SoapClientBase::saveLastError() |
||
| 2863 | * @param \Ovh\StructType\TelephonyListSummationCallsFromNumber $parameters |
||
| 2864 | * @return \Ovh\StructType\TelephonyListSummationCallsFromNumberResponse|bool |
||
| 2865 | */ |
||
| 2866 | public function telephonyListSummationCallsFromNumber(\Ovh\StructType\TelephonyListSummationCallsFromNumber $parameters) |
||
| 2867 | { |
||
| 2868 | try { |
||
| 2869 | $this->setResult($this->getSoapClient()->__soapCall('telephonyListSummationCallsFromNumber', array( |
||
| 2870 | $parameters, |
||
| 2871 | ), array(), array(), $this->outputHeaders)); |
||
| 2872 | return $this->getResult(); |
||
| 2873 | } catch (\SoapFault $soapFault) { |
||
| 2874 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2875 | return false; |
||
| 2876 | } |
||
| 2877 | } |
||
| 2878 | /** |
||
| 2879 | * Method to call the operation originally named telephonyConferenceGetParams |
||
| 2880 | * @uses SoapClientBase::getSoapClient() |
||
| 2881 | * @uses SoapClientBase::setResult() |
||
| 2882 | * @uses SoapClientBase::getResult() |
||
| 2883 | * @uses SoapClientBase::saveLastError() |
||
| 2884 | * @param \Ovh\StructType\TelephonyConferenceGetParams $parameters |
||
| 2885 | * @return \Ovh\StructType\TelephonyConferenceGetParamsResponse|bool |
||
| 2886 | */ |
||
| 2887 | public function telephonyConferenceGetParams(\Ovh\StructType\TelephonyConferenceGetParams $parameters) |
||
| 2888 | { |
||
| 2889 | try { |
||
| 2890 | $this->setResult($this->getSoapClient()->__soapCall('telephonyConferenceGetParams', array( |
||
| 2891 | $parameters, |
||
| 2892 | ), array(), array(), $this->outputHeaders)); |
||
| 2893 | return $this->getResult(); |
||
| 2894 | } catch (\SoapFault $soapFault) { |
||
| 2895 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2896 | return false; |
||
| 2897 | } |
||
| 2898 | } |
||
| 2899 | /** |
||
| 2900 | * Method to call the operation originally named telephonyPhonebookContactModify |
||
| 2901 | * @uses SoapClientBase::getSoapClient() |
||
| 2902 | * @uses SoapClientBase::setResult() |
||
| 2903 | * @uses SoapClientBase::getResult() |
||
| 2904 | * @uses SoapClientBase::saveLastError() |
||
| 2905 | * @param \Ovh\StructType\TelephonyPhonebookContactModify $parameters |
||
| 2906 | * @return \Ovh\StructType\TelephonyPhonebookContactModifyResponse|bool |
||
| 2907 | */ |
||
| 2908 | public function telephonyPhonebookContactModify(\Ovh\StructType\TelephonyPhonebookContactModify $parameters) |
||
| 2909 | { |
||
| 2910 | try { |
||
| 2911 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPhonebookContactModify', array( |
||
| 2912 | $parameters, |
||
| 2913 | ), array(), array(), $this->outputHeaders)); |
||
| 2914 | return $this->getResult(); |
||
| 2915 | } catch (\SoapFault $soapFault) { |
||
| 2916 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2917 | return false; |
||
| 2918 | } |
||
| 2919 | } |
||
| 2920 | /** |
||
| 2921 | * Method to call the operation originally named telephonyLineList |
||
| 2922 | * @uses SoapClientBase::getSoapClient() |
||
| 2923 | * @uses SoapClientBase::setResult() |
||
| 2924 | * @uses SoapClientBase::getResult() |
||
| 2925 | * @uses SoapClientBase::saveLastError() |
||
| 2926 | * @param \Ovh\StructType\TelephonyLineList $parameters |
||
| 2927 | * @return \Ovh\StructType\TelephonyLineListResponse|bool |
||
| 2928 | */ |
||
| 2929 | public function telephonyLineList(\Ovh\StructType\TelephonyLineList $parameters) |
||
| 2930 | { |
||
| 2931 | try { |
||
| 2932 | $this->setResult($this->getSoapClient()->__soapCall('telephonyLineList', array( |
||
| 2933 | $parameters, |
||
| 2934 | ), array(), array(), $this->outputHeaders)); |
||
| 2935 | return $this->getResult(); |
||
| 2936 | } catch (\SoapFault $soapFault) { |
||
| 2937 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2938 | return false; |
||
| 2939 | } |
||
| 2940 | } |
||
| 2941 | /** |
||
| 2942 | * Method to call the operation originally named telephonyLineOptionsModify |
||
| 2943 | * @uses SoapClientBase::getSoapClient() |
||
| 2944 | * @uses SoapClientBase::setResult() |
||
| 2945 | * @uses SoapClientBase::getResult() |
||
| 2946 | * @uses SoapClientBase::saveLastError() |
||
| 2947 | * @param \Ovh\StructType\TelephonyLineOptionsModify $parameters |
||
| 2948 | * @return \Ovh\StructType\TelephonyLineOptionsModifyResponse|bool |
||
| 2949 | */ |
||
| 2950 | public function telephonyLineOptionsModify(\Ovh\StructType\TelephonyLineOptionsModify $parameters) |
||
| 2951 | { |
||
| 2952 | try { |
||
| 2953 | $this->setResult($this->getSoapClient()->__soapCall('telephonyLineOptionsModify', array( |
||
| 2954 | $parameters, |
||
| 2955 | ), array(), array(), $this->outputHeaders)); |
||
| 2956 | return $this->getResult(); |
||
| 2957 | } catch (\SoapFault $soapFault) { |
||
| 2958 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2959 | return false; |
||
| 2960 | } |
||
| 2961 | } |
||
| 2962 | /** |
||
| 2963 | * Method to call the operation originally named telephonyHuntingGenericScreenSet |
||
| 2964 | * @uses SoapClientBase::getSoapClient() |
||
| 2965 | * @uses SoapClientBase::setResult() |
||
| 2966 | * @uses SoapClientBase::getResult() |
||
| 2967 | * @uses SoapClientBase::saveLastError() |
||
| 2968 | * @param \Ovh\StructType\TelephonyHuntingGenericScreenSet $parameters |
||
| 2969 | * @return \Ovh\StructType\TelephonyHuntingGenericScreenSetResponse|bool |
||
| 2970 | */ |
||
| 2971 | public function telephonyHuntingGenericScreenSet(\Ovh\StructType\TelephonyHuntingGenericScreenSet $parameters) |
||
| 2972 | { |
||
| 2973 | try { |
||
| 2974 | $this->setResult($this->getSoapClient()->__soapCall('telephonyHuntingGenericScreenSet', array( |
||
| 2975 | $parameters, |
||
| 2976 | ), array(), array(), $this->outputHeaders)); |
||
| 2977 | return $this->getResult(); |
||
| 2978 | } catch (\SoapFault $soapFault) { |
||
| 2979 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 2980 | return false; |
||
| 2981 | } |
||
| 2982 | } |
||
| 2983 | /** |
||
| 2984 | * Method to call the operation originally named telephonyFaxCampaignStartStop |
||
| 2985 | * @uses SoapClientBase::getSoapClient() |
||
| 2986 | * @uses SoapClientBase::setResult() |
||
| 2987 | * @uses SoapClientBase::getResult() |
||
| 2988 | * @uses SoapClientBase::saveLastError() |
||
| 2989 | * @param \Ovh\StructType\TelephonyFaxCampaignStartStop $parameters |
||
| 2990 | * @return \Ovh\StructType\TelephonyFaxCampaignStartStopResponse|bool |
||
| 2991 | */ |
||
| 2992 | public function telephonyFaxCampaignStartStop(\Ovh\StructType\TelephonyFaxCampaignStartStop $parameters) |
||
| 2993 | { |
||
| 2994 | try { |
||
| 2995 | $this->setResult($this->getSoapClient()->__soapCall('telephonyFaxCampaignStartStop', array( |
||
| 2996 | $parameters, |
||
| 2997 | ), array(), array(), $this->outputHeaders)); |
||
| 2998 | return $this->getResult(); |
||
| 2999 | } catch (\SoapFault $soapFault) { |
||
| 3000 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3001 | return false; |
||
| 3002 | } |
||
| 3003 | } |
||
| 3004 | /** |
||
| 3005 | * Method to call the operation originally named telephonyDirectoryModifyAddress |
||
| 3006 | * @uses SoapClientBase::getSoapClient() |
||
| 3007 | * @uses SoapClientBase::setResult() |
||
| 3008 | * @uses SoapClientBase::getResult() |
||
| 3009 | * @uses SoapClientBase::saveLastError() |
||
| 3010 | * @param \Ovh\StructType\TelephonyDirectoryModifyAddress $parameters |
||
| 3011 | * @return \Ovh\StructType\TelephonyDirectoryModifyAddressResponse|bool |
||
| 3012 | */ |
||
| 3013 | public function telephonyDirectoryModifyAddress(\Ovh\StructType\TelephonyDirectoryModifyAddress $parameters) |
||
| 3014 | { |
||
| 3015 | try { |
||
| 3016 | $this->setResult($this->getSoapClient()->__soapCall('telephonyDirectoryModifyAddress', array( |
||
| 3017 | $parameters, |
||
| 3018 | ), array(), array(), $this->outputHeaders)); |
||
| 3019 | return $this->getResult(); |
||
| 3020 | } catch (\SoapFault $soapFault) { |
||
| 3021 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3022 | return false; |
||
| 3023 | } |
||
| 3024 | } |
||
| 3025 | /** |
||
| 3026 | * Method to call the operation originally named telephonyNicSetMgcpIpRestriction |
||
| 3027 | * @uses SoapClientBase::getSoapClient() |
||
| 3028 | * @uses SoapClientBase::setResult() |
||
| 3029 | * @uses SoapClientBase::getResult() |
||
| 3030 | * @uses SoapClientBase::saveLastError() |
||
| 3031 | * @param \Ovh\StructType\TelephonyNicSetMgcpIpRestriction $parameters |
||
| 3032 | * @return \Ovh\StructType\TelephonyNicSetMgcpIpRestrictionResponse|bool |
||
| 3033 | */ |
||
| 3034 | public function telephonyNicSetMgcpIpRestriction(\Ovh\StructType\TelephonyNicSetMgcpIpRestriction $parameters) |
||
| 3035 | { |
||
| 3036 | try { |
||
| 3037 | $this->setResult($this->getSoapClient()->__soapCall('telephonyNicSetMgcpIpRestriction', array( |
||
| 3038 | $parameters, |
||
| 3039 | ), array(), array(), $this->outputHeaders)); |
||
| 3040 | return $this->getResult(); |
||
| 3041 | } catch (\SoapFault $soapFault) { |
||
| 3042 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3043 | return false; |
||
| 3044 | } |
||
| 3045 | } |
||
| 3046 | /** |
||
| 3047 | * Method to call the operation originally named telephonySecurityDepositCredit |
||
| 3048 | * @uses SoapClientBase::getSoapClient() |
||
| 3049 | * @uses SoapClientBase::setResult() |
||
| 3050 | * @uses SoapClientBase::getResult() |
||
| 3051 | * @uses SoapClientBase::saveLastError() |
||
| 3052 | * @param \Ovh\StructType\TelephonySecurityDepositCredit $parameters |
||
| 3053 | * @return \Ovh\StructType\TelephonySecurityDepositCreditResponse|bool |
||
| 3054 | */ |
||
| 3055 | public function telephonySecurityDepositCredit(\Ovh\StructType\TelephonySecurityDepositCredit $parameters) |
||
| 3056 | { |
||
| 3057 | try { |
||
| 3058 | $this->setResult($this->getSoapClient()->__soapCall('telephonySecurityDepositCredit', array( |
||
| 3059 | $parameters, |
||
| 3060 | ), array(), array(), $this->outputHeaders)); |
||
| 3061 | return $this->getResult(); |
||
| 3062 | } catch (\SoapFault $soapFault) { |
||
| 3063 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3064 | return false; |
||
| 3065 | } |
||
| 3066 | } |
||
| 3067 | /** |
||
| 3068 | * Method to call the operation originally named telephonyLineOrder |
||
| 3069 | * @uses SoapClientBase::getSoapClient() |
||
| 3070 | * @uses SoapClientBase::setResult() |
||
| 3071 | * @uses SoapClientBase::getResult() |
||
| 3072 | * @uses SoapClientBase::saveLastError() |
||
| 3073 | * @param \Ovh\StructType\TelephonyLineOrder $parameters |
||
| 3074 | * @return \Ovh\StructType\TelephonyLineOrderResponse|bool |
||
| 3075 | */ |
||
| 3076 | public function telephonyLineOrder(\Ovh\StructType\TelephonyLineOrder $parameters) |
||
| 3077 | { |
||
| 3078 | try { |
||
| 3079 | $this->setResult($this->getSoapClient()->__soapCall('telephonyLineOrder', array( |
||
| 3080 | $parameters, |
||
| 3081 | ), array(), array(), $this->outputHeaders)); |
||
| 3082 | return $this->getResult(); |
||
| 3083 | } catch (\SoapFault $soapFault) { |
||
| 3084 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3085 | return false; |
||
| 3086 | } |
||
| 3087 | } |
||
| 3088 | /** |
||
| 3089 | * Method to call the operation originally named telephonyConferenceAction |
||
| 3090 | * @uses SoapClientBase::getSoapClient() |
||
| 3091 | * @uses SoapClientBase::setResult() |
||
| 3092 | * @uses SoapClientBase::getResult() |
||
| 3093 | * @uses SoapClientBase::saveLastError() |
||
| 3094 | * @param \Ovh\StructType\TelephonyConferenceAction $parameters |
||
| 3095 | * @return \Ovh\StructType\TelephonyConferenceActionResponse|bool |
||
| 3096 | */ |
||
| 3097 | public function telephonyConferenceAction(\Ovh\StructType\TelephonyConferenceAction $parameters) |
||
| 3098 | { |
||
| 3099 | try { |
||
| 3100 | $this->setResult($this->getSoapClient()->__soapCall('telephonyConferenceAction', array( |
||
| 3101 | $parameters, |
||
| 3102 | ), array(), array(), $this->outputHeaders)); |
||
| 3103 | return $this->getResult(); |
||
| 3104 | } catch (\SoapFault $soapFault) { |
||
| 3105 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3106 | return false; |
||
| 3107 | } |
||
| 3108 | } |
||
| 3109 | /** |
||
| 3110 | * Method to call the operation originally named telephonyFunctionKeyDel |
||
| 3111 | * @uses SoapClientBase::getSoapClient() |
||
| 3112 | * @uses SoapClientBase::setResult() |
||
| 3113 | * @uses SoapClientBase::getResult() |
||
| 3114 | * @uses SoapClientBase::saveLastError() |
||
| 3115 | * @param \Ovh\StructType\TelephonyFunctionKeyDel $parameters |
||
| 3116 | * @return \Ovh\StructType\TelephonyFunctionKeyDelResponse|bool |
||
| 3117 | */ |
||
| 3118 | public function telephonyFunctionKeyDel(\Ovh\StructType\TelephonyFunctionKeyDel $parameters) |
||
| 3119 | { |
||
| 3120 | try { |
||
| 3121 | $this->setResult($this->getSoapClient()->__soapCall('telephonyFunctionKeyDel', array( |
||
| 3122 | $parameters, |
||
| 3123 | ), array(), array(), $this->outputHeaders)); |
||
| 3124 | return $this->getResult(); |
||
| 3125 | } catch (\SoapFault $soapFault) { |
||
| 3126 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3127 | return false; |
||
| 3128 | } |
||
| 3129 | } |
||
| 3130 | /** |
||
| 3131 | * Method to call the operation originally named telephonyNicGetSipDomain |
||
| 3132 | * @uses SoapClientBase::getSoapClient() |
||
| 3133 | * @uses SoapClientBase::setResult() |
||
| 3134 | * @uses SoapClientBase::getResult() |
||
| 3135 | * @uses SoapClientBase::saveLastError() |
||
| 3136 | * @param \Ovh\StructType\TelephonyNicGetSipDomain $parameters |
||
| 3137 | * @return \Ovh\StructType\TelephonyNicGetSipDomainResponse|bool |
||
| 3138 | */ |
||
| 3139 | public function telephonyNicGetSipDomain(\Ovh\StructType\TelephonyNicGetSipDomain $parameters) |
||
| 3140 | { |
||
| 3141 | try { |
||
| 3142 | $this->setResult($this->getSoapClient()->__soapCall('telephonyNicGetSipDomain', array( |
||
| 3143 | $parameters, |
||
| 3144 | ), array(), array(), $this->outputHeaders)); |
||
| 3145 | return $this->getResult(); |
||
| 3146 | } catch (\SoapFault $soapFault) { |
||
| 3147 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3148 | return false; |
||
| 3149 | } |
||
| 3150 | } |
||
| 3151 | /** |
||
| 3152 | * Method to call the operation originally named telephonyGetClosureEventsAsICS |
||
| 3153 | * @uses SoapClientBase::getSoapClient() |
||
| 3154 | * @uses SoapClientBase::setResult() |
||
| 3155 | * @uses SoapClientBase::getResult() |
||
| 3156 | * @uses SoapClientBase::saveLastError() |
||
| 3157 | * @param \Ovh\StructType\TelephonyGetClosureEventsAsICS $parameters |
||
| 3158 | * @return \Ovh\StructType\TelephonyGetClosureEventsAsICSResponse|bool |
||
| 3159 | */ |
||
| 3160 | public function telephonyGetClosureEventsAsICS(\Ovh\StructType\TelephonyGetClosureEventsAsICS $parameters) |
||
| 3161 | { |
||
| 3162 | try { |
||
| 3163 | $this->setResult($this->getSoapClient()->__soapCall('telephonyGetClosureEventsAsICS', array( |
||
| 3164 | $parameters, |
||
| 3165 | ), array(), array(), $this->outputHeaders)); |
||
| 3166 | return $this->getResult(); |
||
| 3167 | } catch (\SoapFault $soapFault) { |
||
| 3168 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3169 | return false; |
||
| 3170 | } |
||
| 3171 | } |
||
| 3172 | /** |
||
| 3173 | * Method to call the operation originally named telephonySmsUserCreditLeft |
||
| 3174 | * @uses SoapClientBase::getSoapClient() |
||
| 3175 | * @uses SoapClientBase::setResult() |
||
| 3176 | * @uses SoapClientBase::getResult() |
||
| 3177 | * @uses SoapClientBase::saveLastError() |
||
| 3178 | * @param \Ovh\StructType\TelephonySmsUserCreditLeft $parameters |
||
| 3179 | * @return \Ovh\StructType\TelephonySmsUserCreditLeftResponse|bool |
||
| 3180 | */ |
||
| 3181 | public function telephonySmsUserCreditLeft(\Ovh\StructType\TelephonySmsUserCreditLeft $parameters) |
||
| 3182 | { |
||
| 3183 | try { |
||
| 3184 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsUserCreditLeft', array( |
||
| 3185 | $parameters, |
||
| 3186 | ), array(), array(), $this->outputHeaders)); |
||
| 3187 | return $this->getResult(); |
||
| 3188 | } catch (\SoapFault $soapFault) { |
||
| 3189 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3190 | return false; |
||
| 3191 | } |
||
| 3192 | } |
||
| 3193 | /** |
||
| 3194 | * Method to call the operation originally named telephonyPortabilityOrder |
||
| 3195 | * @uses SoapClientBase::getSoapClient() |
||
| 3196 | * @uses SoapClientBase::setResult() |
||
| 3197 | * @uses SoapClientBase::getResult() |
||
| 3198 | * @uses SoapClientBase::saveLastError() |
||
| 3199 | * @param \Ovh\StructType\TelephonyPortabilityOrder $parameters |
||
| 3200 | * @return \Ovh\StructType\TelephonyPortabilityOrderResponse|bool |
||
| 3201 | */ |
||
| 3202 | public function telephonyPortabilityOrder(\Ovh\StructType\TelephonyPortabilityOrder $parameters) |
||
| 3203 | { |
||
| 3204 | try { |
||
| 3205 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPortabilityOrder', array( |
||
| 3206 | $parameters, |
||
| 3207 | ), array(), array(), $this->outputHeaders)); |
||
| 3208 | return $this->getResult(); |
||
| 3209 | } catch (\SoapFault $soapFault) { |
||
| 3210 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3211 | return false; |
||
| 3212 | } |
||
| 3213 | } |
||
| 3214 | /** |
||
| 3215 | * Method to call the operation originally named telephonyVoicemailMailboxDelete |
||
| 3216 | * @uses SoapClientBase::getSoapClient() |
||
| 3217 | * @uses SoapClientBase::setResult() |
||
| 3218 | * @uses SoapClientBase::getResult() |
||
| 3219 | * @uses SoapClientBase::saveLastError() |
||
| 3220 | * @param \Ovh\StructType\TelephonyVoicemailMailboxDelete $parameters |
||
| 3221 | * @return \Ovh\StructType\TelephonyVoicemailMailboxDeleteResponse|bool |
||
| 3222 | */ |
||
| 3223 | public function telephonyVoicemailMailboxDelete(\Ovh\StructType\TelephonyVoicemailMailboxDelete $parameters) |
||
| 3224 | { |
||
| 3225 | try { |
||
| 3226 | $this->setResult($this->getSoapClient()->__soapCall('telephonyVoicemailMailboxDelete', array( |
||
| 3227 | $parameters, |
||
| 3228 | ), array(), array(), $this->outputHeaders)); |
||
| 3229 | return $this->getResult(); |
||
| 3230 | } catch (\SoapFault $soapFault) { |
||
| 3231 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3232 | return false; |
||
| 3233 | } |
||
| 3234 | } |
||
| 3235 | /** |
||
| 3236 | * Method to call the operation originally named telephonyBillingAccountDel |
||
| 3237 | * @uses SoapClientBase::getSoapClient() |
||
| 3238 | * @uses SoapClientBase::setResult() |
||
| 3239 | * @uses SoapClientBase::getResult() |
||
| 3240 | * @uses SoapClientBase::saveLastError() |
||
| 3241 | * @param \Ovh\StructType\TelephonyBillingAccountDel $parameters |
||
| 3242 | * @return \Ovh\StructType\TelephonyBillingAccountDelResponse|bool |
||
| 3243 | */ |
||
| 3244 | public function telephonyBillingAccountDel(\Ovh\StructType\TelephonyBillingAccountDel $parameters) |
||
| 3245 | { |
||
| 3246 | try { |
||
| 3247 | $this->setResult($this->getSoapClient()->__soapCall('telephonyBillingAccountDel', array( |
||
| 3248 | $parameters, |
||
| 3249 | ), array(), array(), $this->outputHeaders)); |
||
| 3250 | return $this->getResult(); |
||
| 3251 | } catch (\SoapFault $soapFault) { |
||
| 3252 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3253 | return false; |
||
| 3254 | } |
||
| 3255 | } |
||
| 3256 | /** |
||
| 3257 | * Method to call the operation originally named telephonyNumberClean |
||
| 3258 | * @uses SoapClientBase::getSoapClient() |
||
| 3259 | * @uses SoapClientBase::setResult() |
||
| 3260 | * @uses SoapClientBase::getResult() |
||
| 3261 | * @uses SoapClientBase::saveLastError() |
||
| 3262 | * @param \Ovh\StructType\TelephonyNumberClean $parameters |
||
| 3263 | * @return \Ovh\StructType\TelephonyNumberCleanResponse|bool |
||
| 3264 | */ |
||
| 3265 | public function telephonyNumberClean(\Ovh\StructType\TelephonyNumberClean $parameters) |
||
| 3266 | { |
||
| 3267 | try { |
||
| 3268 | $this->setResult($this->getSoapClient()->__soapCall('telephonyNumberClean', array( |
||
| 3269 | $parameters, |
||
| 3270 | ), array(), array(), $this->outputHeaders)); |
||
| 3271 | return $this->getResult(); |
||
| 3272 | } catch (\SoapFault $soapFault) { |
||
| 3273 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3274 | return false; |
||
| 3275 | } |
||
| 3276 | } |
||
| 3277 | /** |
||
| 3278 | * Method to call the operation originally named telephonyPlugAndPhoneOperation |
||
| 3279 | * @uses SoapClientBase::getSoapClient() |
||
| 3280 | * @uses SoapClientBase::setResult() |
||
| 3281 | * @uses SoapClientBase::getResult() |
||
| 3282 | * @uses SoapClientBase::saveLastError() |
||
| 3283 | * @param \Ovh\StructType\TelephonyPlugAndPhoneOperation $parameters |
||
| 3284 | * @return \Ovh\StructType\TelephonyPlugAndPhoneOperationResponse|bool |
||
| 3285 | */ |
||
| 3286 | public function telephonyPlugAndPhoneOperation(\Ovh\StructType\TelephonyPlugAndPhoneOperation $parameters) |
||
| 3287 | { |
||
| 3288 | try { |
||
| 3289 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPlugAndPhoneOperation', array( |
||
| 3290 | $parameters, |
||
| 3291 | ), array(), array(), $this->outputHeaders)); |
||
| 3292 | return $this->getResult(); |
||
| 3293 | } catch (\SoapFault $soapFault) { |
||
| 3294 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3295 | return false; |
||
| 3296 | } |
||
| 3297 | } |
||
| 3298 | /** |
||
| 3299 | * Method to call the operation originally named |
||
| 3300 | * telephonyPhonebookOnSmsContactModify |
||
| 3301 | * @uses SoapClientBase::getSoapClient() |
||
| 3302 | * @uses SoapClientBase::setResult() |
||
| 3303 | * @uses SoapClientBase::getResult() |
||
| 3304 | * @uses SoapClientBase::saveLastError() |
||
| 3305 | * @param \Ovh\StructType\TelephonyPhonebookOnSmsContactModify $parameters |
||
| 3306 | * @return \Ovh\StructType\TelephonyPhonebookOnSmsContactModifyResponse|bool |
||
| 3307 | */ |
||
| 3308 | public function telephonyPhonebookOnSmsContactModify(\Ovh\StructType\TelephonyPhonebookOnSmsContactModify $parameters) |
||
| 3309 | { |
||
| 3310 | try { |
||
| 3311 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPhonebookOnSmsContactModify', array( |
||
| 3312 | $parameters, |
||
| 3313 | ), array(), array(), $this->outputHeaders)); |
||
| 3314 | return $this->getResult(); |
||
| 3315 | } catch (\SoapFault $soapFault) { |
||
| 3316 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3317 | return false; |
||
| 3318 | } |
||
| 3319 | } |
||
| 3320 | /** |
||
| 3321 | * Method to call the operation originally named telephonyPhonebookOnSmsModify |
||
| 3322 | * @uses SoapClientBase::getSoapClient() |
||
| 3323 | * @uses SoapClientBase::setResult() |
||
| 3324 | * @uses SoapClientBase::getResult() |
||
| 3325 | * @uses SoapClientBase::saveLastError() |
||
| 3326 | * @param \Ovh\StructType\TelephonyPhonebookOnSmsModify $parameters |
||
| 3327 | * @return \Ovh\StructType\TelephonyPhonebookOnSmsModifyResponse|bool |
||
| 3328 | */ |
||
| 3329 | public function telephonyPhonebookOnSmsModify(\Ovh\StructType\TelephonyPhonebookOnSmsModify $parameters) |
||
| 3330 | { |
||
| 3331 | try { |
||
| 3332 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPhonebookOnSmsModify', array( |
||
| 3333 | $parameters, |
||
| 3334 | ), array(), array(), $this->outputHeaders)); |
||
| 3335 | return $this->getResult(); |
||
| 3336 | } catch (\SoapFault $soapFault) { |
||
| 3337 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3338 | return false; |
||
| 3339 | } |
||
| 3340 | } |
||
| 3341 | /** |
||
| 3342 | * Method to call the operation originally named telephonySmsSetQuotaNotification |
||
| 3343 | * @uses SoapClientBase::getSoapClient() |
||
| 3344 | * @uses SoapClientBase::setResult() |
||
| 3345 | * @uses SoapClientBase::getResult() |
||
| 3346 | * @uses SoapClientBase::saveLastError() |
||
| 3347 | * @param \Ovh\StructType\TelephonySmsSetQuotaNotification $parameters |
||
| 3348 | * @return \Ovh\StructType\TelephonySmsSetQuotaNotificationResponse|bool |
||
| 3349 | */ |
||
| 3350 | public function telephonySmsSetQuotaNotification(\Ovh\StructType\TelephonySmsSetQuotaNotification $parameters) |
||
| 3351 | { |
||
| 3352 | try { |
||
| 3353 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsSetQuotaNotification', array( |
||
| 3354 | $parameters, |
||
| 3355 | ), array(), array(), $this->outputHeaders)); |
||
| 3356 | return $this->getResult(); |
||
| 3357 | } catch (\SoapFault $soapFault) { |
||
| 3358 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3359 | return false; |
||
| 3360 | } |
||
| 3361 | } |
||
| 3362 | /** |
||
| 3363 | * Method to call the operation originally named telephonySmsUserList |
||
| 3364 | * @uses SoapClientBase::getSoapClient() |
||
| 3365 | * @uses SoapClientBase::setResult() |
||
| 3366 | * @uses SoapClientBase::getResult() |
||
| 3367 | * @uses SoapClientBase::saveLastError() |
||
| 3368 | * @param \Ovh\StructType\TelephonySmsUserList $parameters |
||
| 3369 | * @return \Ovh\StructType\TelephonySmsUserListResponse|bool |
||
| 3370 | */ |
||
| 3371 | public function telephonySmsUserList(\Ovh\StructType\TelephonySmsUserList $parameters) |
||
| 3372 | { |
||
| 3373 | try { |
||
| 3374 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsUserList', array( |
||
| 3375 | $parameters, |
||
| 3376 | ), array(), array(), $this->outputHeaders)); |
||
| 3377 | return $this->getResult(); |
||
| 3378 | } catch (\SoapFault $soapFault) { |
||
| 3379 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3380 | return false; |
||
| 3381 | } |
||
| 3382 | } |
||
| 3383 | /** |
||
| 3384 | * Method to call the operation originally named telephonyHuntingInfo |
||
| 3385 | * @uses SoapClientBase::getSoapClient() |
||
| 3386 | * @uses SoapClientBase::setResult() |
||
| 3387 | * @uses SoapClientBase::getResult() |
||
| 3388 | * @uses SoapClientBase::saveLastError() |
||
| 3389 | * @param \Ovh\StructType\TelephonyHuntingInfo $parameters |
||
| 3390 | * @return \Ovh\StructType\TelephonyHuntingInfoResponse|bool |
||
| 3391 | */ |
||
| 3392 | public function telephonyHuntingInfo(\Ovh\StructType\TelephonyHuntingInfo $parameters) |
||
| 3393 | { |
||
| 3394 | try { |
||
| 3395 | $this->setResult($this->getSoapClient()->__soapCall('telephonyHuntingInfo', array( |
||
| 3396 | $parameters, |
||
| 3397 | ), array(), array(), $this->outputHeaders)); |
||
| 3398 | return $this->getResult(); |
||
| 3399 | } catch (\SoapFault $soapFault) { |
||
| 3400 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3401 | return false; |
||
| 3402 | } |
||
| 3403 | } |
||
| 3404 | /** |
||
| 3405 | * Method to call the operation originally named telephonyPhonebookContactList |
||
| 3406 | * @uses SoapClientBase::getSoapClient() |
||
| 3407 | * @uses SoapClientBase::setResult() |
||
| 3408 | * @uses SoapClientBase::getResult() |
||
| 3409 | * @uses SoapClientBase::saveLastError() |
||
| 3410 | * @param \Ovh\StructType\TelephonyPhonebookContactList $parameters |
||
| 3411 | * @return \Ovh\StructType\TelephonyPhonebookContactListResponse|bool |
||
| 3412 | */ |
||
| 3413 | public function telephonyPhonebookContactList(\Ovh\StructType\TelephonyPhonebookContactList $parameters) |
||
| 3414 | { |
||
| 3415 | try { |
||
| 3416 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPhonebookContactList', array( |
||
| 3417 | $parameters, |
||
| 3418 | ), array(), array(), $this->outputHeaders)); |
||
| 3419 | return $this->getResult(); |
||
| 3420 | } catch (\SoapFault $soapFault) { |
||
| 3421 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3422 | return false; |
||
| 3423 | } |
||
| 3424 | } |
||
| 3425 | /** |
||
| 3426 | * Method to call the operation originally named telephonySmsUserPassword |
||
| 3427 | * @uses SoapClientBase::getSoapClient() |
||
| 3428 | * @uses SoapClientBase::setResult() |
||
| 3429 | * @uses SoapClientBase::getResult() |
||
| 3430 | * @uses SoapClientBase::saveLastError() |
||
| 3431 | * @param \Ovh\StructType\TelephonySmsUserPassword $parameters |
||
| 3432 | * @return \Ovh\StructType\TelephonySmsUserPasswordResponse|bool |
||
| 3433 | */ |
||
| 3434 | public function telephonySmsUserPassword(\Ovh\StructType\TelephonySmsUserPassword $parameters) |
||
| 3435 | { |
||
| 3436 | try { |
||
| 3437 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsUserPassword', array( |
||
| 3438 | $parameters, |
||
| 3439 | ), array(), array(), $this->outputHeaders)); |
||
| 3440 | return $this->getResult(); |
||
| 3441 | } catch (\SoapFault $soapFault) { |
||
| 3442 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3443 | return false; |
||
| 3444 | } |
||
| 3445 | } |
||
| 3446 | /** |
||
| 3447 | * Method to call the operation originally named telephonyLineGetOfferPrices |
||
| 3448 | * @uses SoapClientBase::getSoapClient() |
||
| 3449 | * @uses SoapClientBase::setResult() |
||
| 3450 | * @uses SoapClientBase::getResult() |
||
| 3451 | * @uses SoapClientBase::saveLastError() |
||
| 3452 | * @param \Ovh\StructType\TelephonyLineGetOfferPrices $parameters |
||
| 3453 | * @return \Ovh\StructType\TelephonyLineGetOfferPricesResponse|bool |
||
| 3454 | */ |
||
| 3455 | public function telephonyLineGetOfferPrices(\Ovh\StructType\TelephonyLineGetOfferPrices $parameters) |
||
| 3456 | { |
||
| 3457 | try { |
||
| 3458 | $this->setResult($this->getSoapClient()->__soapCall('telephonyLineGetOfferPrices', array( |
||
| 3459 | $parameters, |
||
| 3460 | ), array(), array(), $this->outputHeaders)); |
||
| 3461 | return $this->getResult(); |
||
| 3462 | } catch (\SoapFault $soapFault) { |
||
| 3463 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3464 | return false; |
||
| 3465 | } |
||
| 3466 | } |
||
| 3467 | /** |
||
| 3468 | * Method to call the operation originally named telephonySmsGetQuotaNotification |
||
| 3469 | * @uses SoapClientBase::getSoapClient() |
||
| 3470 | * @uses SoapClientBase::setResult() |
||
| 3471 | * @uses SoapClientBase::getResult() |
||
| 3472 | * @uses SoapClientBase::saveLastError() |
||
| 3473 | * @param \Ovh\StructType\TelephonySmsGetQuotaNotification $parameters |
||
| 3474 | * @return \Ovh\StructType\TelephonySmsGetQuotaNotificationResponse|bool |
||
| 3475 | */ |
||
| 3476 | public function telephonySmsGetQuotaNotification(\Ovh\StructType\TelephonySmsGetQuotaNotification $parameters) |
||
| 3477 | { |
||
| 3478 | try { |
||
| 3479 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsGetQuotaNotification', array( |
||
| 3480 | $parameters, |
||
| 3481 | ), array(), array(), $this->outputHeaders)); |
||
| 3482 | return $this->getResult(); |
||
| 3483 | } catch (\SoapFault $soapFault) { |
||
| 3484 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3485 | return false; |
||
| 3486 | } |
||
| 3487 | } |
||
| 3488 | /** |
||
| 3489 | * Method to call the operation originally named telephonyHuntingModificationMode |
||
| 3490 | * @uses SoapClientBase::getSoapClient() |
||
| 3491 | * @uses SoapClientBase::setResult() |
||
| 3492 | * @uses SoapClientBase::getResult() |
||
| 3493 | * @uses SoapClientBase::saveLastError() |
||
| 3494 | * @param \Ovh\StructType\TelephonyHuntingModificationMode $parameters |
||
| 3495 | * @return \Ovh\StructType\TelephonyHuntingModificationModeResponse|bool |
||
| 3496 | */ |
||
| 3497 | public function telephonyHuntingModificationMode(\Ovh\StructType\TelephonyHuntingModificationMode $parameters) |
||
| 3498 | { |
||
| 3499 | try { |
||
| 3500 | $this->setResult($this->getSoapClient()->__soapCall('telephonyHuntingModificationMode', array( |
||
| 3501 | $parameters, |
||
| 3502 | ), array(), array(), $this->outputHeaders)); |
||
| 3503 | return $this->getResult(); |
||
| 3504 | } catch (\SoapFault $soapFault) { |
||
| 3505 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3506 | return false; |
||
| 3507 | } |
||
| 3508 | } |
||
| 3509 | /** |
||
| 3510 | * Method to call the operation originally named |
||
| 3511 | * telephonyScreenListBlackWhiteChoice |
||
| 3512 | * @uses SoapClientBase::getSoapClient() |
||
| 3513 | * @uses SoapClientBase::setResult() |
||
| 3514 | * @uses SoapClientBase::getResult() |
||
| 3515 | * @uses SoapClientBase::saveLastError() |
||
| 3516 | * @param \Ovh\StructType\TelephonyScreenListBlackWhiteChoice $parameters |
||
| 3517 | * @return \Ovh\StructType\TelephonyScreenListBlackWhiteChoiceResponse|bool |
||
| 3518 | */ |
||
| 3519 | public function telephonyScreenListBlackWhiteChoice(\Ovh\StructType\TelephonyScreenListBlackWhiteChoice $parameters) |
||
| 3520 | { |
||
| 3521 | try { |
||
| 3522 | $this->setResult($this->getSoapClient()->__soapCall('telephonyScreenListBlackWhiteChoice', array( |
||
| 3523 | $parameters, |
||
| 3524 | ), array(), array(), $this->outputHeaders)); |
||
| 3525 | return $this->getResult(); |
||
| 3526 | } catch (\SoapFault $soapFault) { |
||
| 3527 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3528 | return false; |
||
| 3529 | } |
||
| 3530 | } |
||
| 3531 | /** |
||
| 3532 | * Method to call the operation originally named telephonySmsDeleteCsvAttachment |
||
| 3533 | * @uses SoapClientBase::getSoapClient() |
||
| 3534 | * @uses SoapClientBase::setResult() |
||
| 3535 | * @uses SoapClientBase::getResult() |
||
| 3536 | * @uses SoapClientBase::saveLastError() |
||
| 3537 | * @param \Ovh\StructType\TelephonySmsDeleteCsvAttachment $parameters |
||
| 3538 | * @return \Ovh\StructType\TelephonySmsDeleteCsvAttachmentResponse|bool |
||
| 3539 | */ |
||
| 3540 | public function telephonySmsDeleteCsvAttachment(\Ovh\StructType\TelephonySmsDeleteCsvAttachment $parameters) |
||
| 3541 | { |
||
| 3542 | try { |
||
| 3543 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsDeleteCsvAttachment', array( |
||
| 3544 | $parameters, |
||
| 3545 | ), array(), array(), $this->outputHeaders)); |
||
| 3546 | return $this->getResult(); |
||
| 3547 | } catch (\SoapFault $soapFault) { |
||
| 3548 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3549 | return false; |
||
| 3550 | } |
||
| 3551 | } |
||
| 3552 | /** |
||
| 3553 | * Method to call the operation originally named telephonyNumberZoneAndPrefixList |
||
| 3554 | * @uses SoapClientBase::getSoapClient() |
||
| 3555 | * @uses SoapClientBase::setResult() |
||
| 3556 | * @uses SoapClientBase::getResult() |
||
| 3557 | * @uses SoapClientBase::saveLastError() |
||
| 3558 | * @param \Ovh\StructType\TelephonyNumberZoneAndPrefixList $parameters |
||
| 3559 | * @return \Ovh\StructType\TelephonyNumberZoneAndPrefixListResponse|bool |
||
| 3560 | */ |
||
| 3561 | public function telephonyNumberZoneAndPrefixList(\Ovh\StructType\TelephonyNumberZoneAndPrefixList $parameters) |
||
| 3562 | { |
||
| 3563 | try { |
||
| 3564 | $this->setResult($this->getSoapClient()->__soapCall('telephonyNumberZoneAndPrefixList', array( |
||
| 3565 | $parameters, |
||
| 3566 | ), array(), array(), $this->outputHeaders)); |
||
| 3567 | return $this->getResult(); |
||
| 3568 | } catch (\SoapFault $soapFault) { |
||
| 3569 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3570 | return false; |
||
| 3571 | } |
||
| 3572 | } |
||
| 3573 | /** |
||
| 3574 | * Method to call the operation originally named telephonyLineSetSipDomain |
||
| 3575 | * @uses SoapClientBase::getSoapClient() |
||
| 3576 | * @uses SoapClientBase::setResult() |
||
| 3577 | * @uses SoapClientBase::getResult() |
||
| 3578 | * @uses SoapClientBase::saveLastError() |
||
| 3579 | * @param \Ovh\StructType\TelephonyLineSetSipDomain $parameters |
||
| 3580 | * @return \Ovh\StructType\TelephonyLineSetSipDomainResponse|bool |
||
| 3581 | */ |
||
| 3582 | public function telephonyLineSetSipDomain(\Ovh\StructType\TelephonyLineSetSipDomain $parameters) |
||
| 3583 | { |
||
| 3584 | try { |
||
| 3585 | $this->setResult($this->getSoapClient()->__soapCall('telephonyLineSetSipDomain', array( |
||
| 3586 | $parameters, |
||
| 3587 | ), array(), array(), $this->outputHeaders)); |
||
| 3588 | return $this->getResult(); |
||
| 3589 | } catch (\SoapFault $soapFault) { |
||
| 3590 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3591 | return false; |
||
| 3592 | } |
||
| 3593 | } |
||
| 3594 | /** |
||
| 3595 | * Method to call the operation originally named |
||
| 3596 | * telephonyTrunkExternalDisplayedNumberDel |
||
| 3597 | * @uses SoapClientBase::getSoapClient() |
||
| 3598 | * @uses SoapClientBase::setResult() |
||
| 3599 | * @uses SoapClientBase::getResult() |
||
| 3600 | * @uses SoapClientBase::saveLastError() |
||
| 3601 | * @param \Ovh\StructType\TelephonyTrunkExternalDisplayedNumberDel $parameters |
||
| 3602 | * @return \Ovh\StructType\TelephonyTrunkExternalDisplayedNumberDelResponse|bool |
||
| 3603 | */ |
||
| 3604 | public function telephonyTrunkExternalDisplayedNumberDel(\Ovh\StructType\TelephonyTrunkExternalDisplayedNumberDel $parameters) |
||
| 3605 | { |
||
| 3606 | try { |
||
| 3607 | $this->setResult($this->getSoapClient()->__soapCall('telephonyTrunkExternalDisplayedNumberDel', array( |
||
| 3608 | $parameters, |
||
| 3609 | ), array(), array(), $this->outputHeaders)); |
||
| 3610 | return $this->getResult(); |
||
| 3611 | } catch (\SoapFault $soapFault) { |
||
| 3612 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3613 | return false; |
||
| 3614 | } |
||
| 3615 | } |
||
| 3616 | /** |
||
| 3617 | * Method to call the operation originally named |
||
| 3618 | * telephonyPhonebookOnGroupContactList |
||
| 3619 | * @uses SoapClientBase::getSoapClient() |
||
| 3620 | * @uses SoapClientBase::setResult() |
||
| 3621 | * @uses SoapClientBase::getResult() |
||
| 3622 | * @uses SoapClientBase::saveLastError() |
||
| 3623 | * @param \Ovh\StructType\TelephonyPhonebookOnGroupContactList $parameters |
||
| 3624 | * @return \Ovh\StructType\TelephonyPhonebookOnGroupContactListResponse|bool |
||
| 3625 | */ |
||
| 3626 | public function telephonyPhonebookOnGroupContactList(\Ovh\StructType\TelephonyPhonebookOnGroupContactList $parameters) |
||
| 3627 | { |
||
| 3628 | try { |
||
| 3629 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPhonebookOnGroupContactList', array( |
||
| 3630 | $parameters, |
||
| 3631 | ), array(), array(), $this->outputHeaders)); |
||
| 3632 | return $this->getResult(); |
||
| 3633 | } catch (\SoapFault $soapFault) { |
||
| 3634 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3635 | return false; |
||
| 3636 | } |
||
| 3637 | } |
||
| 3638 | /** |
||
| 3639 | * Method to call the operation originally named |
||
| 3640 | * telephonySmsplusServiceReversableTicketsSummary |
||
| 3641 | * @uses SoapClientBase::getSoapClient() |
||
| 3642 | * @uses SoapClientBase::setResult() |
||
| 3643 | * @uses SoapClientBase::getResult() |
||
| 3644 | * @uses SoapClientBase::saveLastError() |
||
| 3645 | * @param \Ovh\StructType\TelephonySmsplusServiceReversableTicketsSummary $parameters |
||
| 3646 | * @return \Ovh\StructType\TelephonySmsplusServiceReversableTicketsSummaryResponse|bool |
||
| 3647 | */ |
||
| 3648 | public function telephonySmsplusServiceReversableTicketsSummary(\Ovh\StructType\TelephonySmsplusServiceReversableTicketsSummary $parameters) |
||
| 3649 | { |
||
| 3650 | try { |
||
| 3651 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsplusServiceReversableTicketsSummary', array( |
||
| 3652 | $parameters, |
||
| 3653 | ), array(), array(), $this->outputHeaders)); |
||
| 3654 | return $this->getResult(); |
||
| 3655 | } catch (\SoapFault $soapFault) { |
||
| 3656 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3657 | return false; |
||
| 3658 | } |
||
| 3659 | } |
||
| 3660 | /** |
||
| 3661 | * Method to call the operation originally named telephonyDeleteLine |
||
| 3662 | * @uses SoapClientBase::getSoapClient() |
||
| 3663 | * @uses SoapClientBase::setResult() |
||
| 3664 | * @uses SoapClientBase::getResult() |
||
| 3665 | * @uses SoapClientBase::saveLastError() |
||
| 3666 | * @param \Ovh\StructType\TelephonyDeleteLine $parameters |
||
| 3667 | * @return \Ovh\StructType\TelephonyDeleteLineResponse|bool |
||
| 3668 | */ |
||
| 3669 | public function telephonyDeleteLine(\Ovh\StructType\TelephonyDeleteLine $parameters) |
||
| 3670 | { |
||
| 3671 | try { |
||
| 3672 | $this->setResult($this->getSoapClient()->__soapCall('telephonyDeleteLine', array( |
||
| 3673 | $parameters, |
||
| 3674 | ), array(), array(), $this->outputHeaders)); |
||
| 3675 | return $this->getResult(); |
||
| 3676 | } catch (\SoapFault $soapFault) { |
||
| 3677 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3678 | return false; |
||
| 3679 | } |
||
| 3680 | } |
||
| 3681 | /** |
||
| 3682 | * Method to call the operation originally named telephonySetTimeZoneNumber |
||
| 3683 | * @uses SoapClientBase::getSoapClient() |
||
| 3684 | * @uses SoapClientBase::setResult() |
||
| 3685 | * @uses SoapClientBase::getResult() |
||
| 3686 | * @uses SoapClientBase::saveLastError() |
||
| 3687 | * @param \Ovh\StructType\TelephonySetTimeZoneNumber $parameters |
||
| 3688 | * @return \Ovh\StructType\TelephonySetTimeZoneNumberResponse|bool |
||
| 3689 | */ |
||
| 3690 | public function telephonySetTimeZoneNumber(\Ovh\StructType\TelephonySetTimeZoneNumber $parameters) |
||
| 3691 | { |
||
| 3692 | try { |
||
| 3693 | $this->setResult($this->getSoapClient()->__soapCall('telephonySetTimeZoneNumber', array( |
||
| 3694 | $parameters, |
||
| 3695 | ), array(), array(), $this->outputHeaders)); |
||
| 3696 | return $this->getResult(); |
||
| 3697 | } catch (\SoapFault $soapFault) { |
||
| 3698 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3699 | return false; |
||
| 3700 | } |
||
| 3701 | } |
||
| 3702 | /** |
||
| 3703 | * Method to call the operation originally named telephonyNicSetIpRestriction |
||
| 3704 | * @uses SoapClientBase::getSoapClient() |
||
| 3705 | * @uses SoapClientBase::setResult() |
||
| 3706 | * @uses SoapClientBase::getResult() |
||
| 3707 | * @uses SoapClientBase::saveLastError() |
||
| 3708 | * @param \Ovh\StructType\TelephonyNicSetIpRestriction $parameters |
||
| 3709 | * @return \Ovh\StructType\TelephonyNicSetIpRestrictionResponse|bool |
||
| 3710 | */ |
||
| 3711 | public function telephonyNicSetIpRestriction(\Ovh\StructType\TelephonyNicSetIpRestriction $parameters) |
||
| 3712 | { |
||
| 3713 | try { |
||
| 3714 | $this->setResult($this->getSoapClient()->__soapCall('telephonyNicSetIpRestriction', array( |
||
| 3715 | $parameters, |
||
| 3716 | ), array(), array(), $this->outputHeaders)); |
||
| 3717 | return $this->getResult(); |
||
| 3718 | } catch (\SoapFault $soapFault) { |
||
| 3719 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3720 | return false; |
||
| 3721 | } |
||
| 3722 | } |
||
| 3723 | /** |
||
| 3724 | * Method to call the operation originally named telephonyPortabilityStatus |
||
| 3725 | * @uses SoapClientBase::getSoapClient() |
||
| 3726 | * @uses SoapClientBase::setResult() |
||
| 3727 | * @uses SoapClientBase::getResult() |
||
| 3728 | * @uses SoapClientBase::saveLastError() |
||
| 3729 | * @param \Ovh\StructType\TelephonyPortabilityStatus $parameters |
||
| 3730 | * @return \Ovh\StructType\TelephonyPortabilityStatusResponse|bool |
||
| 3731 | */ |
||
| 3732 | public function telephonyPortabilityStatus(\Ovh\StructType\TelephonyPortabilityStatus $parameters) |
||
| 3733 | { |
||
| 3734 | try { |
||
| 3735 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPortabilityStatus', array( |
||
| 3736 | $parameters, |
||
| 3737 | ), array(), array(), $this->outputHeaders)); |
||
| 3738 | return $this->getResult(); |
||
| 3739 | } catch (\SoapFault $soapFault) { |
||
| 3740 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3741 | return false; |
||
| 3742 | } |
||
| 3743 | } |
||
| 3744 | /** |
||
| 3745 | * Method to call the operation originally named telephonySecurityDepositInfo |
||
| 3746 | * @uses SoapClientBase::getSoapClient() |
||
| 3747 | * @uses SoapClientBase::setResult() |
||
| 3748 | * @uses SoapClientBase::getResult() |
||
| 3749 | * @uses SoapClientBase::saveLastError() |
||
| 3750 | * @param \Ovh\StructType\TelephonySecurityDepositInfo $parameters |
||
| 3751 | * @return \Ovh\StructType\TelephonySecurityDepositInfoResponse|bool |
||
| 3752 | */ |
||
| 3753 | public function telephonySecurityDepositInfo(\Ovh\StructType\TelephonySecurityDepositInfo $parameters) |
||
| 3754 | { |
||
| 3755 | try { |
||
| 3756 | $this->setResult($this->getSoapClient()->__soapCall('telephonySecurityDepositInfo', array( |
||
| 3757 | $parameters, |
||
| 3758 | ), array(), array(), $this->outputHeaders)); |
||
| 3759 | return $this->getResult(); |
||
| 3760 | } catch (\SoapFault $soapFault) { |
||
| 3761 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3762 | return false; |
||
| 3763 | } |
||
| 3764 | } |
||
| 3765 | /** |
||
| 3766 | * Method to call the operation originally named telephonySmsListCsvAttachment |
||
| 3767 | * @uses SoapClientBase::getSoapClient() |
||
| 3768 | * @uses SoapClientBase::setResult() |
||
| 3769 | * @uses SoapClientBase::getResult() |
||
| 3770 | * @uses SoapClientBase::saveLastError() |
||
| 3771 | * @param \Ovh\StructType\TelephonySmsListCsvAttachment $parameters |
||
| 3772 | * @return \Ovh\StructType\TelephonySmsListCsvAttachmentResponse|bool |
||
| 3773 | */ |
||
| 3774 | public function telephonySmsListCsvAttachment(\Ovh\StructType\TelephonySmsListCsvAttachment $parameters) |
||
| 3775 | { |
||
| 3776 | try { |
||
| 3777 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsListCsvAttachment', array( |
||
| 3778 | $parameters, |
||
| 3779 | ), array(), array(), $this->outputHeaders)); |
||
| 3780 | return $this->getResult(); |
||
| 3781 | } catch (\SoapFault $soapFault) { |
||
| 3782 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3783 | return false; |
||
| 3784 | } |
||
| 3785 | } |
||
| 3786 | /** |
||
| 3787 | * Method to call the operation originally named telephonySmsCancelSending |
||
| 3788 | * @uses SoapClientBase::getSoapClient() |
||
| 3789 | * @uses SoapClientBase::setResult() |
||
| 3790 | * @uses SoapClientBase::getResult() |
||
| 3791 | * @uses SoapClientBase::saveLastError() |
||
| 3792 | * @param \Ovh\StructType\TelephonySmsCancelSending $parameters |
||
| 3793 | * @return \Ovh\StructType\TelephonySmsCancelSendingResponse|bool |
||
| 3794 | */ |
||
| 3795 | public function telephonySmsCancelSending(\Ovh\StructType\TelephonySmsCancelSending $parameters) |
||
| 3796 | { |
||
| 3797 | try { |
||
| 3798 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsCancelSending', array( |
||
| 3799 | $parameters, |
||
| 3800 | ), array(), array(), $this->outputHeaders)); |
||
| 3801 | return $this->getResult(); |
||
| 3802 | } catch (\SoapFault $soapFault) { |
||
| 3803 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3804 | return false; |
||
| 3805 | } |
||
| 3806 | } |
||
| 3807 | /** |
||
| 3808 | * Method to call the operation originally named telephonyScreenListInfo |
||
| 3809 | * @uses SoapClientBase::getSoapClient() |
||
| 3810 | * @uses SoapClientBase::setResult() |
||
| 3811 | * @uses SoapClientBase::getResult() |
||
| 3812 | * @uses SoapClientBase::saveLastError() |
||
| 3813 | * @param \Ovh\StructType\TelephonyScreenListInfo $parameters |
||
| 3814 | * @return \Ovh\StructType\TelephonyScreenListInfoResponse|bool |
||
| 3815 | */ |
||
| 3816 | public function telephonyScreenListInfo(\Ovh\StructType\TelephonyScreenListInfo $parameters) |
||
| 3817 | { |
||
| 3818 | try { |
||
| 3819 | $this->setResult($this->getSoapClient()->__soapCall('telephonyScreenListInfo', array( |
||
| 3820 | $parameters, |
||
| 3821 | ), array(), array(), $this->outputHeaders)); |
||
| 3822 | return $this->getResult(); |
||
| 3823 | } catch (\SoapFault $soapFault) { |
||
| 3824 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3825 | return false; |
||
| 3826 | } |
||
| 3827 | } |
||
| 3828 | /** |
||
| 3829 | * Method to call the operation originally named telephonyLineLogsOnGroup |
||
| 3830 | * @uses SoapClientBase::getSoapClient() |
||
| 3831 | * @uses SoapClientBase::setResult() |
||
| 3832 | * @uses SoapClientBase::getResult() |
||
| 3833 | * @uses SoapClientBase::saveLastError() |
||
| 3834 | * @param \Ovh\StructType\TelephonyLineLogsOnGroup $parameters |
||
| 3835 | * @return \Ovh\StructType\TelephonyLineLogsOnGroupResponse|bool |
||
| 3836 | */ |
||
| 3837 | public function telephonyLineLogsOnGroup(\Ovh\StructType\TelephonyLineLogsOnGroup $parameters) |
||
| 3838 | { |
||
| 3839 | try { |
||
| 3840 | $this->setResult($this->getSoapClient()->__soapCall('telephonyLineLogsOnGroup', array( |
||
| 3841 | $parameters, |
||
| 3842 | ), array(), array(), $this->outputHeaders)); |
||
| 3843 | return $this->getResult(); |
||
| 3844 | } catch (\SoapFault $soapFault) { |
||
| 3845 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3846 | return false; |
||
| 3847 | } |
||
| 3848 | } |
||
| 3849 | /** |
||
| 3850 | * Method to call the operation originally named telephonyLineGetMgcpIpRestriction |
||
| 3851 | * @uses SoapClientBase::getSoapClient() |
||
| 3852 | * @uses SoapClientBase::setResult() |
||
| 3853 | * @uses SoapClientBase::getResult() |
||
| 3854 | * @uses SoapClientBase::saveLastError() |
||
| 3855 | * @param \Ovh\StructType\TelephonyLineGetMgcpIpRestriction $parameters |
||
| 3856 | * @return \Ovh\StructType\TelephonyLineGetMgcpIpRestrictionResponse|bool |
||
| 3857 | */ |
||
| 3858 | public function telephonyLineGetMgcpIpRestriction(\Ovh\StructType\TelephonyLineGetMgcpIpRestriction $parameters) |
||
| 3859 | { |
||
| 3860 | try { |
||
| 3861 | $this->setResult($this->getSoapClient()->__soapCall('telephonyLineGetMgcpIpRestriction', array( |
||
| 3862 | $parameters, |
||
| 3863 | ), array(), array(), $this->outputHeaders)); |
||
| 3864 | return $this->getResult(); |
||
| 3865 | } catch (\SoapFault $soapFault) { |
||
| 3866 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3867 | return false; |
||
| 3868 | } |
||
| 3869 | } |
||
| 3870 | /** |
||
| 3871 | * Method to call the operation originally named telephonyLineDetails |
||
| 3872 | * @uses SoapClientBase::getSoapClient() |
||
| 3873 | * @uses SoapClientBase::setResult() |
||
| 3874 | * @uses SoapClientBase::getResult() |
||
| 3875 | * @uses SoapClientBase::saveLastError() |
||
| 3876 | * @param \Ovh\StructType\TelephonyLineDetails $parameters |
||
| 3877 | * @return \Ovh\StructType\TelephonyLineDetailsResponse|bool |
||
| 3878 | */ |
||
| 3879 | public function telephonyLineDetails(\Ovh\StructType\TelephonyLineDetails $parameters) |
||
| 3880 | { |
||
| 3881 | try { |
||
| 3882 | $this->setResult($this->getSoapClient()->__soapCall('telephonyLineDetails', array( |
||
| 3883 | $parameters, |
||
| 3884 | ), array(), array(), $this->outputHeaders)); |
||
| 3885 | return $this->getResult(); |
||
| 3886 | } catch (\SoapFault $soapFault) { |
||
| 3887 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3888 | return false; |
||
| 3889 | } |
||
| 3890 | } |
||
| 3891 | /** |
||
| 3892 | * Method to call the operation originally named telephonyPhonebookContactDel |
||
| 3893 | * @uses SoapClientBase::getSoapClient() |
||
| 3894 | * @uses SoapClientBase::setResult() |
||
| 3895 | * @uses SoapClientBase::getResult() |
||
| 3896 | * @uses SoapClientBase::saveLastError() |
||
| 3897 | * @param \Ovh\StructType\TelephonyPhonebookContactDel $parameters |
||
| 3898 | * @return \Ovh\StructType\TelephonyPhonebookContactDelResponse|bool |
||
| 3899 | */ |
||
| 3900 | public function telephonyPhonebookContactDel(\Ovh\StructType\TelephonyPhonebookContactDel $parameters) |
||
| 3901 | { |
||
| 3902 | try { |
||
| 3903 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPhonebookContactDel', array( |
||
| 3904 | $parameters, |
||
| 3905 | ), array(), array(), $this->outputHeaders)); |
||
| 3906 | return $this->getResult(); |
||
| 3907 | } catch (\SoapFault $soapFault) { |
||
| 3908 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3909 | return false; |
||
| 3910 | } |
||
| 3911 | } |
||
| 3912 | /** |
||
| 3913 | * Method to call the operation originally named telephonyRatesListCsv |
||
| 3914 | * @uses SoapClientBase::getSoapClient() |
||
| 3915 | * @uses SoapClientBase::setResult() |
||
| 3916 | * @uses SoapClientBase::getResult() |
||
| 3917 | * @uses SoapClientBase::saveLastError() |
||
| 3918 | * @param \Ovh\StructType\TelephonyRatesListCsv $parameters |
||
| 3919 | * @return \Ovh\StructType\TelephonyRatesListCsvResponse|bool |
||
| 3920 | */ |
||
| 3921 | public function telephonyRatesListCsv(\Ovh\StructType\TelephonyRatesListCsv $parameters) |
||
| 3922 | { |
||
| 3923 | try { |
||
| 3924 | $this->setResult($this->getSoapClient()->__soapCall('telephonyRatesListCsv', array( |
||
| 3925 | $parameters, |
||
| 3926 | ), array(), array(), $this->outputHeaders)); |
||
| 3927 | return $this->getResult(); |
||
| 3928 | } catch (\SoapFault $soapFault) { |
||
| 3929 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3930 | return false; |
||
| 3931 | } |
||
| 3932 | } |
||
| 3933 | /** |
||
| 3934 | * Method to call the operation originally named telephonyConferenceGetInfos |
||
| 3935 | * @uses SoapClientBase::getSoapClient() |
||
| 3936 | * @uses SoapClientBase::setResult() |
||
| 3937 | * @uses SoapClientBase::getResult() |
||
| 3938 | * @uses SoapClientBase::saveLastError() |
||
| 3939 | * @param \Ovh\StructType\TelephonyConferenceGetInfos $parameters |
||
| 3940 | * @return \Ovh\StructType\TelephonyConferenceGetInfosResponse|bool |
||
| 3941 | */ |
||
| 3942 | public function telephonyConferenceGetInfos(\Ovh\StructType\TelephonyConferenceGetInfos $parameters) |
||
| 3943 | { |
||
| 3944 | try { |
||
| 3945 | $this->setResult($this->getSoapClient()->__soapCall('telephonyConferenceGetInfos', array( |
||
| 3946 | $parameters, |
||
| 3947 | ), array(), array(), $this->outputHeaders)); |
||
| 3948 | return $this->getResult(); |
||
| 3949 | } catch (\SoapFault $soapFault) { |
||
| 3950 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3951 | return false; |
||
| 3952 | } |
||
| 3953 | } |
||
| 3954 | /** |
||
| 3955 | * Method to call the operation originally named telephonyPhonebookOnSmsContactList |
||
| 3956 | * @uses SoapClientBase::getSoapClient() |
||
| 3957 | * @uses SoapClientBase::setResult() |
||
| 3958 | * @uses SoapClientBase::getResult() |
||
| 3959 | * @uses SoapClientBase::saveLastError() |
||
| 3960 | * @param \Ovh\StructType\TelephonyPhonebookOnSmsContactList $parameters |
||
| 3961 | * @return \Ovh\StructType\TelephonyPhonebookOnSmsContactListResponse|bool |
||
| 3962 | */ |
||
| 3963 | public function telephonyPhonebookOnSmsContactList(\Ovh\StructType\TelephonyPhonebookOnSmsContactList $parameters) |
||
| 3964 | { |
||
| 3965 | try { |
||
| 3966 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPhonebookOnSmsContactList', array( |
||
| 3967 | $parameters, |
||
| 3968 | ), array(), array(), $this->outputHeaders)); |
||
| 3969 | return $this->getResult(); |
||
| 3970 | } catch (\SoapFault $soapFault) { |
||
| 3971 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3972 | return false; |
||
| 3973 | } |
||
| 3974 | } |
||
| 3975 | /** |
||
| 3976 | * Method to call the operation originally named telephonyPhonebookOnSmsContactAdd |
||
| 3977 | * @uses SoapClientBase::getSoapClient() |
||
| 3978 | * @uses SoapClientBase::setResult() |
||
| 3979 | * @uses SoapClientBase::getResult() |
||
| 3980 | * @uses SoapClientBase::saveLastError() |
||
| 3981 | * @param \Ovh\StructType\TelephonyPhonebookOnSmsContactAdd $parameters |
||
| 3982 | * @return \Ovh\StructType\TelephonyPhonebookOnSmsContactAddResponse|bool |
||
| 3983 | */ |
||
| 3984 | public function telephonyPhonebookOnSmsContactAdd(\Ovh\StructType\TelephonyPhonebookOnSmsContactAdd $parameters) |
||
| 3985 | { |
||
| 3986 | try { |
||
| 3987 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPhonebookOnSmsContactAdd', array( |
||
| 3988 | $parameters, |
||
| 3989 | ), array(), array(), $this->outputHeaders)); |
||
| 3990 | return $this->getResult(); |
||
| 3991 | } catch (\SoapFault $soapFault) { |
||
| 3992 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 3993 | return false; |
||
| 3994 | } |
||
| 3995 | } |
||
| 3996 | /** |
||
| 3997 | * Method to call the operation originally named |
||
| 3998 | * telephonyFMHuntingModificationAnonymousCallRejection |
||
| 3999 | * @uses SoapClientBase::getSoapClient() |
||
| 4000 | * @uses SoapClientBase::setResult() |
||
| 4001 | * @uses SoapClientBase::getResult() |
||
| 4002 | * @uses SoapClientBase::saveLastError() |
||
| 4003 | * @param \Ovh\StructType\TelephonyFMHuntingModificationAnonymousCallRejection $parameters |
||
| 4004 | * @return \Ovh\StructType\TelephonyFMHuntingModificationAnonymousCallRejectionResponse|bool |
||
| 4005 | */ |
||
| 4006 | public function telephonyFMHuntingModificationAnonymousCallRejection(\Ovh\StructType\TelephonyFMHuntingModificationAnonymousCallRejection $parameters) |
||
| 4007 | { |
||
| 4008 | try { |
||
| 4009 | $this->setResult($this->getSoapClient()->__soapCall('telephonyFMHuntingModificationAnonymousCallRejection', array( |
||
| 4010 | $parameters, |
||
| 4011 | ), array(), array(), $this->outputHeaders)); |
||
| 4012 | return $this->getResult(); |
||
| 4013 | } catch (\SoapFault $soapFault) { |
||
| 4014 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4015 | return false; |
||
| 4016 | } |
||
| 4017 | } |
||
| 4018 | /** |
||
| 4019 | * Method to call the operation originally named telephonyDdiModify |
||
| 4020 | * @uses SoapClientBase::getSoapClient() |
||
| 4021 | * @uses SoapClientBase::setResult() |
||
| 4022 | * @uses SoapClientBase::getResult() |
||
| 4023 | * @uses SoapClientBase::saveLastError() |
||
| 4024 | * @param \Ovh\StructType\TelephonyDdiModify $parameters |
||
| 4025 | * @return \Ovh\StructType\TelephonyDdiModifyResponse|bool |
||
| 4026 | */ |
||
| 4027 | public function telephonyDdiModify(\Ovh\StructType\TelephonyDdiModify $parameters) |
||
| 4028 | { |
||
| 4029 | try { |
||
| 4030 | $this->setResult($this->getSoapClient()->__soapCall('telephonyDdiModify', array( |
||
| 4031 | $parameters, |
||
| 4032 | ), array(), array(), $this->outputHeaders)); |
||
| 4033 | return $this->getResult(); |
||
| 4034 | } catch (\SoapFault $soapFault) { |
||
| 4035 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4036 | return false; |
||
| 4037 | } |
||
| 4038 | } |
||
| 4039 | /** |
||
| 4040 | * Method to call the operation originally named telephonyRedirectInfo |
||
| 4041 | * @uses SoapClientBase::getSoapClient() |
||
| 4042 | * @uses SoapClientBase::setResult() |
||
| 4043 | * @uses SoapClientBase::getResult() |
||
| 4044 | * @uses SoapClientBase::saveLastError() |
||
| 4045 | * @param \Ovh\StructType\TelephonyRedirectInfo $parameters |
||
| 4046 | * @return \Ovh\StructType\TelephonyRedirectInfoResponse|bool |
||
| 4047 | */ |
||
| 4048 | public function telephonyRedirectInfo(\Ovh\StructType\TelephonyRedirectInfo $parameters) |
||
| 4049 | { |
||
| 4050 | try { |
||
| 4051 | $this->setResult($this->getSoapClient()->__soapCall('telephonyRedirectInfo', array( |
||
| 4052 | $parameters, |
||
| 4053 | ), array(), array(), $this->outputHeaders)); |
||
| 4054 | return $this->getResult(); |
||
| 4055 | } catch (\SoapFault $soapFault) { |
||
| 4056 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4057 | return false; |
||
| 4058 | } |
||
| 4059 | } |
||
| 4060 | /** |
||
| 4061 | * Method to call the operation originally named telephonySmsSend |
||
| 4062 | * @uses SoapClientBase::getSoapClient() |
||
| 4063 | * @uses SoapClientBase::setResult() |
||
| 4064 | * @uses SoapClientBase::getResult() |
||
| 4065 | * @uses SoapClientBase::saveLastError() |
||
| 4066 | * @param \Ovh\StructType\TelephonySmsSend $parameters |
||
| 4067 | * @return \Ovh\StructType\TelephonySmsSendResponse|bool |
||
| 4068 | */ |
||
| 4069 | public function telephonySmsSend(\Ovh\StructType\TelephonySmsSend $parameters) |
||
| 4070 | { |
||
| 4071 | try { |
||
| 4072 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsSend', array( |
||
| 4073 | $parameters, |
||
| 4074 | ), array(), array(), $this->outputHeaders)); |
||
| 4075 | return $this->getResult(); |
||
| 4076 | } catch (\SoapFault $soapFault) { |
||
| 4077 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4078 | return false; |
||
| 4079 | } |
||
| 4080 | } |
||
| 4081 | /** |
||
| 4082 | * Method to call the operation originally named telephonyLineGetSipDomain |
||
| 4083 | * @uses SoapClientBase::getSoapClient() |
||
| 4084 | * @uses SoapClientBase::setResult() |
||
| 4085 | * @uses SoapClientBase::getResult() |
||
| 4086 | * @uses SoapClientBase::saveLastError() |
||
| 4087 | * @param \Ovh\StructType\TelephonyLineGetSipDomain $parameters |
||
| 4088 | * @return \Ovh\StructType\TelephonyLineGetSipDomainResponse|bool |
||
| 4089 | */ |
||
| 4090 | public function telephonyLineGetSipDomain(\Ovh\StructType\TelephonyLineGetSipDomain $parameters) |
||
| 4091 | { |
||
| 4092 | try { |
||
| 4093 | $this->setResult($this->getSoapClient()->__soapCall('telephonyLineGetSipDomain', array( |
||
| 4094 | $parameters, |
||
| 4095 | ), array(), array(), $this->outputHeaders)); |
||
| 4096 | return $this->getResult(); |
||
| 4097 | } catch (\SoapFault $soapFault) { |
||
| 4098 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4099 | return false; |
||
| 4100 | } |
||
| 4101 | } |
||
| 4102 | /** |
||
| 4103 | * Method to call the operation originally named telephonyToneDelete |
||
| 4104 | * @uses SoapClientBase::getSoapClient() |
||
| 4105 | * @uses SoapClientBase::setResult() |
||
| 4106 | * @uses SoapClientBase::getResult() |
||
| 4107 | * @uses SoapClientBase::saveLastError() |
||
| 4108 | * @param \Ovh\StructType\TelephonyToneDelete $parameters |
||
| 4109 | * @return \Ovh\StructType\TelephonyToneDeleteResponse|bool |
||
| 4110 | */ |
||
| 4111 | public function telephonyToneDelete(\Ovh\StructType\TelephonyToneDelete $parameters) |
||
| 4112 | { |
||
| 4113 | try { |
||
| 4114 | $this->setResult($this->getSoapClient()->__soapCall('telephonyToneDelete', array( |
||
| 4115 | $parameters, |
||
| 4116 | ), array(), array(), $this->outputHeaders)); |
||
| 4117 | return $this->getResult(); |
||
| 4118 | } catch (\SoapFault $soapFault) { |
||
| 4119 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4120 | return false; |
||
| 4121 | } |
||
| 4122 | } |
||
| 4123 | /** |
||
| 4124 | * Method to call the operation originally named telephonyLineSetMgcpIpRestriction |
||
| 4125 | * @uses SoapClientBase::getSoapClient() |
||
| 4126 | * @uses SoapClientBase::setResult() |
||
| 4127 | * @uses SoapClientBase::getResult() |
||
| 4128 | * @uses SoapClientBase::saveLastError() |
||
| 4129 | * @param \Ovh\StructType\TelephonyLineSetMgcpIpRestriction $parameters |
||
| 4130 | * @return \Ovh\StructType\TelephonyLineSetMgcpIpRestrictionResponse|bool |
||
| 4131 | */ |
||
| 4132 | public function telephonyLineSetMgcpIpRestriction(\Ovh\StructType\TelephonyLineSetMgcpIpRestriction $parameters) |
||
| 4133 | { |
||
| 4134 | try { |
||
| 4135 | $this->setResult($this->getSoapClient()->__soapCall('telephonyLineSetMgcpIpRestriction', array( |
||
| 4136 | $parameters, |
||
| 4137 | ), array(), array(), $this->outputHeaders)); |
||
| 4138 | return $this->getResult(); |
||
| 4139 | } catch (\SoapFault $soapFault) { |
||
| 4140 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4141 | return false; |
||
| 4142 | } |
||
| 4143 | } |
||
| 4144 | /** |
||
| 4145 | * Method to call the operation originally named |
||
| 4146 | * telephonyPhonebookOnGroupContactModify |
||
| 4147 | * @uses SoapClientBase::getSoapClient() |
||
| 4148 | * @uses SoapClientBase::setResult() |
||
| 4149 | * @uses SoapClientBase::getResult() |
||
| 4150 | * @uses SoapClientBase::saveLastError() |
||
| 4151 | * @param \Ovh\StructType\TelephonyPhonebookOnGroupContactModify $parameters |
||
| 4152 | * @return \Ovh\StructType\TelephonyPhonebookOnGroupContactModifyResponse|bool |
||
| 4153 | */ |
||
| 4154 | public function telephonyPhonebookOnGroupContactModify(\Ovh\StructType\TelephonyPhonebookOnGroupContactModify $parameters) |
||
| 4155 | { |
||
| 4156 | try { |
||
| 4157 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPhonebookOnGroupContactModify', array( |
||
| 4158 | $parameters, |
||
| 4159 | ), array(), array(), $this->outputHeaders)); |
||
| 4160 | return $this->getResult(); |
||
| 4161 | } catch (\SoapFault $soapFault) { |
||
| 4162 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4163 | return false; |
||
| 4164 | } |
||
| 4165 | } |
||
| 4166 | /** |
||
| 4167 | * Method to call the operation originally named |
||
| 4168 | * telephonyScreenListBlackWhiteChoiceModify |
||
| 4169 | * @uses SoapClientBase::getSoapClient() |
||
| 4170 | * @uses SoapClientBase::setResult() |
||
| 4171 | * @uses SoapClientBase::getResult() |
||
| 4172 | * @uses SoapClientBase::saveLastError() |
||
| 4173 | * @param \Ovh\StructType\TelephonyScreenListBlackWhiteChoiceModify $parameters |
||
| 4174 | * @return \Ovh\StructType\TelephonyScreenListBlackWhiteChoiceModifyResponse|bool |
||
| 4175 | */ |
||
| 4176 | public function telephonyScreenListBlackWhiteChoiceModify(\Ovh\StructType\TelephonyScreenListBlackWhiteChoiceModify $parameters) |
||
| 4177 | { |
||
| 4178 | try { |
||
| 4179 | $this->setResult($this->getSoapClient()->__soapCall('telephonyScreenListBlackWhiteChoiceModify', array( |
||
| 4180 | $parameters, |
||
| 4181 | ), array(), array(), $this->outputHeaders)); |
||
| 4182 | return $this->getResult(); |
||
| 4183 | } catch (\SoapFault $soapFault) { |
||
| 4184 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4185 | return false; |
||
| 4186 | } |
||
| 4187 | } |
||
| 4188 | /** |
||
| 4189 | * Method to call the operation originally named telephonySmsplusServiceDetails |
||
| 4190 | * @uses SoapClientBase::getSoapClient() |
||
| 4191 | * @uses SoapClientBase::setResult() |
||
| 4192 | * @uses SoapClientBase::getResult() |
||
| 4193 | * @uses SoapClientBase::saveLastError() |
||
| 4194 | * @param \Ovh\StructType\TelephonySmsplusServiceDetails $parameters |
||
| 4195 | * @return \Ovh\StructType\TelephonySmsplusServiceDetailsResponse|bool |
||
| 4196 | */ |
||
| 4197 | public function telephonySmsplusServiceDetails(\Ovh\StructType\TelephonySmsplusServiceDetails $parameters) |
||
| 4198 | { |
||
| 4199 | try { |
||
| 4200 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsplusServiceDetails', array( |
||
| 4201 | $parameters, |
||
| 4202 | ), array(), array(), $this->outputHeaders)); |
||
| 4203 | return $this->getResult(); |
||
| 4204 | } catch (\SoapFault $soapFault) { |
||
| 4205 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4206 | return false; |
||
| 4207 | } |
||
| 4208 | } |
||
| 4209 | /** |
||
| 4210 | * Method to call the operation originally named |
||
| 4211 | * telephonyAbbreviatedNumberOnGroupDel |
||
| 4212 | * @uses SoapClientBase::getSoapClient() |
||
| 4213 | * @uses SoapClientBase::setResult() |
||
| 4214 | * @uses SoapClientBase::getResult() |
||
| 4215 | * @uses SoapClientBase::saveLastError() |
||
| 4216 | * @param \Ovh\StructType\TelephonyAbbreviatedNumberOnGroupDel $parameters |
||
| 4217 | * @return \Ovh\StructType\TelephonyAbbreviatedNumberOnGroupDelResponse|bool |
||
| 4218 | */ |
||
| 4219 | public function telephonyAbbreviatedNumberOnGroupDel(\Ovh\StructType\TelephonyAbbreviatedNumberOnGroupDel $parameters) |
||
| 4220 | { |
||
| 4221 | try { |
||
| 4222 | $this->setResult($this->getSoapClient()->__soapCall('telephonyAbbreviatedNumberOnGroupDel', array( |
||
| 4223 | $parameters, |
||
| 4224 | ), array(), array(), $this->outputHeaders)); |
||
| 4225 | return $this->getResult(); |
||
| 4226 | } catch (\SoapFault $soapFault) { |
||
| 4227 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4228 | return false; |
||
| 4229 | } |
||
| 4230 | } |
||
| 4231 | /** |
||
| 4232 | * Method to call the operation originally named telephonySmsSenderDescription |
||
| 4233 | * @uses SoapClientBase::getSoapClient() |
||
| 4234 | * @uses SoapClientBase::setResult() |
||
| 4235 | * @uses SoapClientBase::getResult() |
||
| 4236 | * @uses SoapClientBase::saveLastError() |
||
| 4237 | * @param \Ovh\StructType\TelephonySmsSenderDescription $parameters |
||
| 4238 | * @return \Ovh\StructType\TelephonySmsSenderDescriptionResponse|bool |
||
| 4239 | */ |
||
| 4240 | public function telephonySmsSenderDescription(\Ovh\StructType\TelephonySmsSenderDescription $parameters) |
||
| 4241 | { |
||
| 4242 | try { |
||
| 4243 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsSenderDescription', array( |
||
| 4244 | $parameters, |
||
| 4245 | ), array(), array(), $this->outputHeaders)); |
||
| 4246 | return $this->getResult(); |
||
| 4247 | } catch (\SoapFault $soapFault) { |
||
| 4248 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4249 | return false; |
||
| 4250 | } |
||
| 4251 | } |
||
| 4252 | /** |
||
| 4253 | * Method to call the operation originally named |
||
| 4254 | * telephonyAbbreviatedNumberListPaginated |
||
| 4255 | * @uses SoapClientBase::getSoapClient() |
||
| 4256 | * @uses SoapClientBase::setResult() |
||
| 4257 | * @uses SoapClientBase::getResult() |
||
| 4258 | * @uses SoapClientBase::saveLastError() |
||
| 4259 | * @param \Ovh\StructType\TelephonyAbbreviatedNumberListPaginated $parameters |
||
| 4260 | * @return \Ovh\StructType\TelephonyAbbreviatedNumberListPaginatedResponse|bool |
||
| 4261 | */ |
||
| 4262 | public function telephonyAbbreviatedNumberListPaginated(\Ovh\StructType\TelephonyAbbreviatedNumberListPaginated $parameters) |
||
| 4263 | { |
||
| 4264 | try { |
||
| 4265 | $this->setResult($this->getSoapClient()->__soapCall('telephonyAbbreviatedNumberListPaginated', array( |
||
| 4266 | $parameters, |
||
| 4267 | ), array(), array(), $this->outputHeaders)); |
||
| 4268 | return $this->getResult(); |
||
| 4269 | } catch (\SoapFault $soapFault) { |
||
| 4270 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4271 | return false; |
||
| 4272 | } |
||
| 4273 | } |
||
| 4274 | /** |
||
| 4275 | * Method to call the operation originally named |
||
| 4276 | * telephonySetDefaultPrivateHolidaysEvents |
||
| 4277 | * @uses SoapClientBase::getSoapClient() |
||
| 4278 | * @uses SoapClientBase::setResult() |
||
| 4279 | * @uses SoapClientBase::getResult() |
||
| 4280 | * @uses SoapClientBase::saveLastError() |
||
| 4281 | * @param \Ovh\StructType\TelephonySetDefaultPrivateHolidaysEvents $parameters |
||
| 4282 | * @return \Ovh\StructType\TelephonySetDefaultPrivateHolidaysEventsResponse|bool |
||
| 4283 | */ |
||
| 4284 | public function telephonySetDefaultPrivateHolidaysEvents(\Ovh\StructType\TelephonySetDefaultPrivateHolidaysEvents $parameters) |
||
| 4285 | { |
||
| 4286 | try { |
||
| 4287 | $this->setResult($this->getSoapClient()->__soapCall('telephonySetDefaultPrivateHolidaysEvents', array( |
||
| 4288 | $parameters, |
||
| 4289 | ), array(), array(), $this->outputHeaders)); |
||
| 4290 | return $this->getResult(); |
||
| 4291 | } catch (\SoapFault $soapFault) { |
||
| 4292 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4293 | return false; |
||
| 4294 | } |
||
| 4295 | } |
||
| 4296 | /** |
||
| 4297 | * Method to call the operation originally named telephonySpareServiceList |
||
| 4298 | * @uses SoapClientBase::getSoapClient() |
||
| 4299 | * @uses SoapClientBase::setResult() |
||
| 4300 | * @uses SoapClientBase::getResult() |
||
| 4301 | * @uses SoapClientBase::saveLastError() |
||
| 4302 | * @param \Ovh\StructType\TelephonySpareServiceList $parameters |
||
| 4303 | * @return \Ovh\StructType\TelephonySpareServiceListResponse|bool |
||
| 4304 | */ |
||
| 4305 | public function telephonySpareServiceList(\Ovh\StructType\TelephonySpareServiceList $parameters) |
||
| 4306 | { |
||
| 4307 | try { |
||
| 4308 | $this->setResult($this->getSoapClient()->__soapCall('telephonySpareServiceList', array( |
||
| 4309 | $parameters, |
||
| 4310 | ), array(), array(), $this->outputHeaders)); |
||
| 4311 | return $this->getResult(); |
||
| 4312 | } catch (\SoapFault $soapFault) { |
||
| 4313 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4314 | return false; |
||
| 4315 | } |
||
| 4316 | } |
||
| 4317 | /** |
||
| 4318 | * Method to call the operation originally named telephonySmsUserListCsvAttachment |
||
| 4319 | * @uses SoapClientBase::getSoapClient() |
||
| 4320 | * @uses SoapClientBase::setResult() |
||
| 4321 | * @uses SoapClientBase::getResult() |
||
| 4322 | * @uses SoapClientBase::saveLastError() |
||
| 4323 | * @param \Ovh\StructType\TelephonySmsUserListCsvAttachment $parameters |
||
| 4324 | * @return \Ovh\StructType\TelephonySmsUserListCsvAttachmentResponse|bool |
||
| 4325 | */ |
||
| 4326 | public function telephonySmsUserListCsvAttachment(\Ovh\StructType\TelephonySmsUserListCsvAttachment $parameters) |
||
| 4327 | { |
||
| 4328 | try { |
||
| 4329 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsUserListCsvAttachment', array( |
||
| 4330 | $parameters, |
||
| 4331 | ), array(), array(), $this->outputHeaders)); |
||
| 4332 | return $this->getResult(); |
||
| 4333 | } catch (\SoapFault $soapFault) { |
||
| 4334 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4335 | return false; |
||
| 4336 | } |
||
| 4337 | } |
||
| 4338 | /** |
||
| 4339 | * Method to call the operation originally named telephonyFaxCallList |
||
| 4340 | * @uses SoapClientBase::getSoapClient() |
||
| 4341 | * @uses SoapClientBase::setResult() |
||
| 4342 | * @uses SoapClientBase::getResult() |
||
| 4343 | * @uses SoapClientBase::saveLastError() |
||
| 4344 | * @param \Ovh\StructType\TelephonyFaxCallList $parameters |
||
| 4345 | * @return \Ovh\StructType\TelephonyFaxCallListResponse|bool |
||
| 4346 | */ |
||
| 4347 | public function telephonyFaxCallList(\Ovh\StructType\TelephonyFaxCallList $parameters) |
||
| 4348 | { |
||
| 4349 | try { |
||
| 4350 | $this->setResult($this->getSoapClient()->__soapCall('telephonyFaxCallList', array( |
||
| 4351 | $parameters, |
||
| 4352 | ), array(), array(), $this->outputHeaders)); |
||
| 4353 | return $this->getResult(); |
||
| 4354 | } catch (\SoapFault $soapFault) { |
||
| 4355 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4356 | return false; |
||
| 4357 | } |
||
| 4358 | } |
||
| 4359 | /** |
||
| 4360 | * Method to call the operation originally named telephonySmsUserSend |
||
| 4361 | * @uses SoapClientBase::getSoapClient() |
||
| 4362 | * @uses SoapClientBase::setResult() |
||
| 4363 | * @uses SoapClientBase::getResult() |
||
| 4364 | * @uses SoapClientBase::saveLastError() |
||
| 4365 | * @param \Ovh\StructType\TelephonySmsUserSend $parameters |
||
| 4366 | * @return \Ovh\StructType\TelephonySmsUserSendResponse|bool |
||
| 4367 | */ |
||
| 4368 | public function telephonySmsUserSend(\Ovh\StructType\TelephonySmsUserSend $parameters) |
||
| 4369 | { |
||
| 4370 | try { |
||
| 4371 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsUserSend', array( |
||
| 4372 | $parameters, |
||
| 4373 | ), array(), array(), $this->outputHeaders)); |
||
| 4374 | return $this->getResult(); |
||
| 4375 | } catch (\SoapFault $soapFault) { |
||
| 4376 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4377 | return false; |
||
| 4378 | } |
||
| 4379 | } |
||
| 4380 | /** |
||
| 4381 | * Method to call the operation originally named telephonyPhonebookOnGroupGroupList |
||
| 4382 | * @uses SoapClientBase::getSoapClient() |
||
| 4383 | * @uses SoapClientBase::setResult() |
||
| 4384 | * @uses SoapClientBase::getResult() |
||
| 4385 | * @uses SoapClientBase::saveLastError() |
||
| 4386 | * @param \Ovh\StructType\TelephonyPhonebookOnGroupGroupList $parameters |
||
| 4387 | * @return \Ovh\StructType\TelephonyPhonebookOnGroupGroupListResponse|bool |
||
| 4388 | */ |
||
| 4389 | public function telephonyPhonebookOnGroupGroupList(\Ovh\StructType\TelephonyPhonebookOnGroupGroupList $parameters) |
||
| 4390 | { |
||
| 4391 | try { |
||
| 4392 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPhonebookOnGroupGroupList', array( |
||
| 4393 | $parameters, |
||
| 4394 | ), array(), array(), $this->outputHeaders)); |
||
| 4395 | return $this->getResult(); |
||
| 4396 | } catch (\SoapFault $soapFault) { |
||
| 4397 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4398 | return false; |
||
| 4399 | } |
||
| 4400 | } |
||
| 4401 | /** |
||
| 4402 | * Method to call the operation originally named telephonyClick2CallUserPassword |
||
| 4403 | * @uses SoapClientBase::getSoapClient() |
||
| 4404 | * @uses SoapClientBase::setResult() |
||
| 4405 | * @uses SoapClientBase::getResult() |
||
| 4406 | * @uses SoapClientBase::saveLastError() |
||
| 4407 | * @param \Ovh\StructType\TelephonyClick2CallUserPassword $parameters |
||
| 4408 | * @return \Ovh\StructType\TelephonyClick2CallUserPasswordResponse|bool |
||
| 4409 | */ |
||
| 4410 | public function telephonyClick2CallUserPassword(\Ovh\StructType\TelephonyClick2CallUserPassword $parameters) |
||
| 4411 | { |
||
| 4412 | try { |
||
| 4413 | $this->setResult($this->getSoapClient()->__soapCall('telephonyClick2CallUserPassword', array( |
||
| 4414 | $parameters, |
||
| 4415 | ), array(), array(), $this->outputHeaders)); |
||
| 4416 | return $this->getResult(); |
||
| 4417 | } catch (\SoapFault $soapFault) { |
||
| 4418 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4419 | return false; |
||
| 4420 | } |
||
| 4421 | } |
||
| 4422 | /** |
||
| 4423 | * Method to call the operation originally named telephonySmsGetUserQuota |
||
| 4424 | * @uses SoapClientBase::getSoapClient() |
||
| 4425 | * @uses SoapClientBase::setResult() |
||
| 4426 | * @uses SoapClientBase::getResult() |
||
| 4427 | * @uses SoapClientBase::saveLastError() |
||
| 4428 | * @param \Ovh\StructType\TelephonySmsGetUserQuota $parameters |
||
| 4429 | * @return \Ovh\StructType\TelephonySmsGetUserQuotaResponse|bool |
||
| 4430 | */ |
||
| 4431 | public function telephonySmsGetUserQuota(\Ovh\StructType\TelephonySmsGetUserQuota $parameters) |
||
| 4432 | { |
||
| 4433 | try { |
||
| 4434 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsGetUserQuota', array( |
||
| 4435 | $parameters, |
||
| 4436 | ), array(), array(), $this->outputHeaders)); |
||
| 4437 | return $this->getResult(); |
||
| 4438 | } catch (\SoapFault $soapFault) { |
||
| 4439 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4440 | return false; |
||
| 4441 | } |
||
| 4442 | } |
||
| 4443 | /** |
||
| 4444 | * Method to call the operation originally named telephonySmsSenderDelete |
||
| 4445 | * @uses SoapClientBase::getSoapClient() |
||
| 4446 | * @uses SoapClientBase::setResult() |
||
| 4447 | * @uses SoapClientBase::getResult() |
||
| 4448 | * @uses SoapClientBase::saveLastError() |
||
| 4449 | * @param \Ovh\StructType\TelephonySmsSenderDelete $parameters |
||
| 4450 | * @return \Ovh\StructType\TelephonySmsSenderDeleteResponse|bool |
||
| 4451 | */ |
||
| 4452 | public function telephonySmsSenderDelete(\Ovh\StructType\TelephonySmsSenderDelete $parameters) |
||
| 4453 | { |
||
| 4454 | try { |
||
| 4455 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsSenderDelete', array( |
||
| 4456 | $parameters, |
||
| 4457 | ), array(), array(), $this->outputHeaders)); |
||
| 4458 | return $this->getResult(); |
||
| 4459 | } catch (\SoapFault $soapFault) { |
||
| 4460 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4461 | return false; |
||
| 4462 | } |
||
| 4463 | } |
||
| 4464 | /** |
||
| 4465 | * Method to call the operation originally named telephonyToneStatus |
||
| 4466 | * @uses SoapClientBase::getSoapClient() |
||
| 4467 | * @uses SoapClientBase::setResult() |
||
| 4468 | * @uses SoapClientBase::getResult() |
||
| 4469 | * @uses SoapClientBase::saveLastError() |
||
| 4470 | * @param \Ovh\StructType\TelephonyToneStatus $parameters |
||
| 4471 | * @return \Ovh\StructType\TelephonyToneStatusResponse|bool |
||
| 4472 | */ |
||
| 4473 | public function telephonyToneStatus(\Ovh\StructType\TelephonyToneStatus $parameters) |
||
| 4474 | { |
||
| 4475 | try { |
||
| 4476 | $this->setResult($this->getSoapClient()->__soapCall('telephonyToneStatus', array( |
||
| 4477 | $parameters, |
||
| 4478 | ), array(), array(), $this->outputHeaders)); |
||
| 4479 | return $this->getResult(); |
||
| 4480 | } catch (\SoapFault $soapFault) { |
||
| 4481 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4482 | return false; |
||
| 4483 | } |
||
| 4484 | } |
||
| 4485 | /** |
||
| 4486 | * Method to call the operation originally named telephonyDdiInfo |
||
| 4487 | * @uses SoapClientBase::getSoapClient() |
||
| 4488 | * @uses SoapClientBase::setResult() |
||
| 4489 | * @uses SoapClientBase::getResult() |
||
| 4490 | * @uses SoapClientBase::saveLastError() |
||
| 4491 | * @param \Ovh\StructType\TelephonyDdiInfo $parameters |
||
| 4492 | * @return \Ovh\StructType\TelephonyDdiInfoResponse|bool |
||
| 4493 | */ |
||
| 4494 | public function telephonyDdiInfo(\Ovh\StructType\TelephonyDdiInfo $parameters) |
||
| 4495 | { |
||
| 4496 | try { |
||
| 4497 | $this->setResult($this->getSoapClient()->__soapCall('telephonyDdiInfo', array( |
||
| 4498 | $parameters, |
||
| 4499 | ), array(), array(), $this->outputHeaders)); |
||
| 4500 | return $this->getResult(); |
||
| 4501 | } catch (\SoapFault $soapFault) { |
||
| 4502 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4503 | return false; |
||
| 4504 | } |
||
| 4505 | } |
||
| 4506 | /** |
||
| 4507 | * Method to call the operation originally named telephonyHuntingGroupList |
||
| 4508 | * @uses SoapClientBase::getSoapClient() |
||
| 4509 | * @uses SoapClientBase::setResult() |
||
| 4510 | * @uses SoapClientBase::getResult() |
||
| 4511 | * @uses SoapClientBase::saveLastError() |
||
| 4512 | * @param \Ovh\StructType\TelephonyHuntingGroupList $parameters |
||
| 4513 | * @return \Ovh\StructType\TelephonyHuntingGroupListResponse|bool |
||
| 4514 | */ |
||
| 4515 | public function telephonyHuntingGroupList(\Ovh\StructType\TelephonyHuntingGroupList $parameters) |
||
| 4516 | { |
||
| 4517 | try { |
||
| 4518 | $this->setResult($this->getSoapClient()->__soapCall('telephonyHuntingGroupList', array( |
||
| 4519 | $parameters, |
||
| 4520 | ), array(), array(), $this->outputHeaders)); |
||
| 4521 | return $this->getResult(); |
||
| 4522 | } catch (\SoapFault $soapFault) { |
||
| 4523 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4524 | return false; |
||
| 4525 | } |
||
| 4526 | } |
||
| 4527 | /** |
||
| 4528 | * Method to call the operation originally named |
||
| 4529 | * telephonyTrunkExternalDisplayedNumberList |
||
| 4530 | * @uses SoapClientBase::getSoapClient() |
||
| 4531 | * @uses SoapClientBase::setResult() |
||
| 4532 | * @uses SoapClientBase::getResult() |
||
| 4533 | * @uses SoapClientBase::saveLastError() |
||
| 4534 | * @param \Ovh\StructType\TelephonyTrunkExternalDisplayedNumberList $parameters |
||
| 4535 | * @return \Ovh\StructType\TelephonyTrunkExternalDisplayedNumberListResponse|bool |
||
| 4536 | */ |
||
| 4537 | public function telephonyTrunkExternalDisplayedNumberList(\Ovh\StructType\TelephonyTrunkExternalDisplayedNumberList $parameters) |
||
| 4538 | { |
||
| 4539 | try { |
||
| 4540 | $this->setResult($this->getSoapClient()->__soapCall('telephonyTrunkExternalDisplayedNumberList', array( |
||
| 4541 | $parameters, |
||
| 4542 | ), array(), array(), $this->outputHeaders)); |
||
| 4543 | return $this->getResult(); |
||
| 4544 | } catch (\SoapFault $soapFault) { |
||
| 4545 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4546 | return false; |
||
| 4547 | } |
||
| 4548 | } |
||
| 4549 | /** |
||
| 4550 | * Method to call the operation originally named telephonyDirectoryListWayType |
||
| 4551 | * @uses SoapClientBase::getSoapClient() |
||
| 4552 | * @uses SoapClientBase::setResult() |
||
| 4553 | * @uses SoapClientBase::getResult() |
||
| 4554 | * @uses SoapClientBase::saveLastError() |
||
| 4555 | * @param \Ovh\StructType\TelephonyDirectoryListWayType $parameters |
||
| 4556 | * @return \Ovh\StructType\TelephonyDirectoryListWayTypeResponse|bool |
||
| 4557 | */ |
||
| 4558 | public function telephonyDirectoryListWayType(\Ovh\StructType\TelephonyDirectoryListWayType $parameters) |
||
| 4559 | { |
||
| 4560 | try { |
||
| 4561 | $this->setResult($this->getSoapClient()->__soapCall('telephonyDirectoryListWayType', array( |
||
| 4562 | $parameters, |
||
| 4563 | ), array(), array(), $this->outputHeaders)); |
||
| 4564 | return $this->getResult(); |
||
| 4565 | } catch (\SoapFault $soapFault) { |
||
| 4566 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4567 | return false; |
||
| 4568 | } |
||
| 4569 | } |
||
| 4570 | /** |
||
| 4571 | * Method to call the operation originally named telephonySmsUserHistoryCsv |
||
| 4572 | * @uses SoapClientBase::getSoapClient() |
||
| 4573 | * @uses SoapClientBase::setResult() |
||
| 4574 | * @uses SoapClientBase::getResult() |
||
| 4575 | * @uses SoapClientBase::saveLastError() |
||
| 4576 | * @param \Ovh\StructType\TelephonySmsUserHistoryCsv $parameters |
||
| 4577 | * @return \Ovh\StructType\TelephonySmsUserHistoryCsvResponse|bool |
||
| 4578 | */ |
||
| 4579 | public function telephonySmsUserHistoryCsv(\Ovh\StructType\TelephonySmsUserHistoryCsv $parameters) |
||
| 4580 | { |
||
| 4581 | try { |
||
| 4582 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsUserHistoryCsv', array( |
||
| 4583 | $parameters, |
||
| 4584 | ), array(), array(), $this->outputHeaders)); |
||
| 4585 | return $this->getResult(); |
||
| 4586 | } catch (\SoapFault $soapFault) { |
||
| 4587 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4588 | return false; |
||
| 4589 | } |
||
| 4590 | } |
||
| 4591 | /** |
||
| 4592 | * Method to call the operation originally named telephonyCallList |
||
| 4593 | * @uses SoapClientBase::getSoapClient() |
||
| 4594 | * @uses SoapClientBase::setResult() |
||
| 4595 | * @uses SoapClientBase::getResult() |
||
| 4596 | * @uses SoapClientBase::saveLastError() |
||
| 4597 | * @param \Ovh\StructType\TelephonyCallList $parameters |
||
| 4598 | * @return \Ovh\StructType\TelephonyCallListResponse|bool |
||
| 4599 | */ |
||
| 4600 | public function telephonyCallList(\Ovh\StructType\TelephonyCallList $parameters) |
||
| 4601 | { |
||
| 4602 | try { |
||
| 4603 | $this->setResult($this->getSoapClient()->__soapCall('telephonyCallList', array( |
||
| 4604 | $parameters, |
||
| 4605 | ), array(), array(), $this->outputHeaders)); |
||
| 4606 | return $this->getResult(); |
||
| 4607 | } catch (\SoapFault $soapFault) { |
||
| 4608 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4609 | return false; |
||
| 4610 | } |
||
| 4611 | } |
||
| 4612 | /** |
||
| 4613 | * Method to call the operation originally named |
||
| 4614 | * telephonyGetDefaultPrivateHolidaysEvents |
||
| 4615 | * @uses SoapClientBase::getSoapClient() |
||
| 4616 | * @uses SoapClientBase::setResult() |
||
| 4617 | * @uses SoapClientBase::getResult() |
||
| 4618 | * @uses SoapClientBase::saveLastError() |
||
| 4619 | * @param \Ovh\StructType\TelephonyGetDefaultPrivateHolidaysEvents $parameters |
||
| 4620 | * @return \Ovh\StructType\TelephonyGetDefaultPrivateHolidaysEventsResponse|bool |
||
| 4621 | */ |
||
| 4622 | public function telephonyGetDefaultPrivateHolidaysEvents(\Ovh\StructType\TelephonyGetDefaultPrivateHolidaysEvents $parameters) |
||
| 4623 | { |
||
| 4624 | try { |
||
| 4625 | $this->setResult($this->getSoapClient()->__soapCall('telephonyGetDefaultPrivateHolidaysEvents', array( |
||
| 4626 | $parameters, |
||
| 4627 | ), array(), array(), $this->outputHeaders)); |
||
| 4628 | return $this->getResult(); |
||
| 4629 | } catch (\SoapFault $soapFault) { |
||
| 4630 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4631 | return false; |
||
| 4632 | } |
||
| 4633 | } |
||
| 4634 | /** |
||
| 4635 | * Method to call the operation originally named telephonySmsplusShortCodesList |
||
| 4636 | * @uses SoapClientBase::getSoapClient() |
||
| 4637 | * @uses SoapClientBase::setResult() |
||
| 4638 | * @uses SoapClientBase::getResult() |
||
| 4639 | * @uses SoapClientBase::saveLastError() |
||
| 4640 | * @param \Ovh\StructType\TelephonySmsplusShortCodesList $parameters |
||
| 4641 | * @return \Ovh\StructType\TelephonySmsplusShortCodesListResponse|bool |
||
| 4642 | */ |
||
| 4643 | public function telephonySmsplusShortCodesList(\Ovh\StructType\TelephonySmsplusShortCodesList $parameters) |
||
| 4644 | { |
||
| 4645 | try { |
||
| 4646 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsplusShortCodesList', array( |
||
| 4647 | $parameters, |
||
| 4648 | ), array(), array(), $this->outputHeaders)); |
||
| 4649 | return $this->getResult(); |
||
| 4650 | } catch (\SoapFault $soapFault) { |
||
| 4651 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4652 | return false; |
||
| 4653 | } |
||
| 4654 | } |
||
| 4655 | /** |
||
| 4656 | * Method to call the operation originally named telephonyAliasToSipPossibilities |
||
| 4657 | * @uses SoapClientBase::getSoapClient() |
||
| 4658 | * @uses SoapClientBase::setResult() |
||
| 4659 | * @uses SoapClientBase::getResult() |
||
| 4660 | * @uses SoapClientBase::saveLastError() |
||
| 4661 | * @param \Ovh\StructType\TelephonyAliasToSipPossibilities $parameters |
||
| 4662 | * @return \Ovh\StructType\TelephonyAliasToSipPossibilitiesResponse|bool |
||
| 4663 | */ |
||
| 4664 | public function telephonyAliasToSipPossibilities(\Ovh\StructType\TelephonyAliasToSipPossibilities $parameters) |
||
| 4665 | { |
||
| 4666 | try { |
||
| 4667 | $this->setResult($this->getSoapClient()->__soapCall('telephonyAliasToSipPossibilities', array( |
||
| 4668 | $parameters, |
||
| 4669 | ), array(), array(), $this->outputHeaders)); |
||
| 4670 | return $this->getResult(); |
||
| 4671 | } catch (\SoapFault $soapFault) { |
||
| 4672 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4673 | return false; |
||
| 4674 | } |
||
| 4675 | } |
||
| 4676 | /** |
||
| 4677 | * Method to call the operation originally named |
||
| 4678 | * telephonyAbbreviatedNumberOnGroupAdd |
||
| 4679 | * @uses SoapClientBase::getSoapClient() |
||
| 4680 | * @uses SoapClientBase::setResult() |
||
| 4681 | * @uses SoapClientBase::getResult() |
||
| 4682 | * @uses SoapClientBase::saveLastError() |
||
| 4683 | * @param \Ovh\StructType\TelephonyAbbreviatedNumberOnGroupAdd $parameters |
||
| 4684 | * @return \Ovh\StructType\TelephonyAbbreviatedNumberOnGroupAddResponse|bool |
||
| 4685 | */ |
||
| 4686 | public function telephonyAbbreviatedNumberOnGroupAdd(\Ovh\StructType\TelephonyAbbreviatedNumberOnGroupAdd $parameters) |
||
| 4687 | { |
||
| 4688 | try { |
||
| 4689 | $this->setResult($this->getSoapClient()->__soapCall('telephonyAbbreviatedNumberOnGroupAdd', array( |
||
| 4690 | $parameters, |
||
| 4691 | ), array(), array(), $this->outputHeaders)); |
||
| 4692 | return $this->getResult(); |
||
| 4693 | } catch (\SoapFault $soapFault) { |
||
| 4694 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4695 | return false; |
||
| 4696 | } |
||
| 4697 | } |
||
| 4698 | /** |
||
| 4699 | * Method to call the operation originally named telephonyHuntingModificationQueue |
||
| 4700 | * @uses SoapClientBase::getSoapClient() |
||
| 4701 | * @uses SoapClientBase::setResult() |
||
| 4702 | * @uses SoapClientBase::getResult() |
||
| 4703 | * @uses SoapClientBase::saveLastError() |
||
| 4704 | * @param \Ovh\StructType\TelephonyHuntingModificationQueue $parameters |
||
| 4705 | * @return \Ovh\StructType\TelephonyHuntingModificationQueueResponse|bool |
||
| 4706 | */ |
||
| 4707 | public function telephonyHuntingModificationQueue(\Ovh\StructType\TelephonyHuntingModificationQueue $parameters) |
||
| 4708 | { |
||
| 4709 | try { |
||
| 4710 | $this->setResult($this->getSoapClient()->__soapCall('telephonyHuntingModificationQueue', array( |
||
| 4711 | $parameters, |
||
| 4712 | ), array(), array(), $this->outputHeaders)); |
||
| 4713 | return $this->getResult(); |
||
| 4714 | } catch (\SoapFault $soapFault) { |
||
| 4715 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4716 | return false; |
||
| 4717 | } |
||
| 4718 | } |
||
| 4719 | /** |
||
| 4720 | * Method to call the operation originally named telephonyDirectoryInfo |
||
| 4721 | * @uses SoapClientBase::getSoapClient() |
||
| 4722 | * @uses SoapClientBase::setResult() |
||
| 4723 | * @uses SoapClientBase::getResult() |
||
| 4724 | * @uses SoapClientBase::saveLastError() |
||
| 4725 | * @param \Ovh\StructType\TelephonyDirectoryInfo $parameters |
||
| 4726 | * @return \Ovh\StructType\TelephonyDirectoryInfoResponse|bool |
||
| 4727 | */ |
||
| 4728 | public function telephonyDirectoryInfo(\Ovh\StructType\TelephonyDirectoryInfo $parameters) |
||
| 4729 | { |
||
| 4730 | try { |
||
| 4731 | $this->setResult($this->getSoapClient()->__soapCall('telephonyDirectoryInfo', array( |
||
| 4732 | $parameters, |
||
| 4733 | ), array(), array(), $this->outputHeaders)); |
||
| 4734 | return $this->getResult(); |
||
| 4735 | } catch (\SoapFault $soapFault) { |
||
| 4736 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4737 | return false; |
||
| 4738 | } |
||
| 4739 | } |
||
| 4740 | /** |
||
| 4741 | * Method to call the operation originally named telephonyBillDetails |
||
| 4742 | * @uses SoapClientBase::getSoapClient() |
||
| 4743 | * @uses SoapClientBase::setResult() |
||
| 4744 | * @uses SoapClientBase::getResult() |
||
| 4745 | * @uses SoapClientBase::saveLastError() |
||
| 4746 | * @param \Ovh\StructType\TelephonyBillDetails $parameters |
||
| 4747 | * @return \Ovh\StructType\TelephonyBillDetailsResponse|bool |
||
| 4748 | */ |
||
| 4749 | public function telephonyBillDetails(\Ovh\StructType\TelephonyBillDetails $parameters) |
||
| 4759 | } |
||
| 4760 | } |
||
| 4761 | /** |
||
| 4762 | * Method to call the operation originally named |
||
| 4763 | * telephonyLineLogsNotificationOptionsModify |
||
| 4764 | * @uses SoapClientBase::getSoapClient() |
||
| 4765 | * @uses SoapClientBase::setResult() |
||
| 4766 | * @uses SoapClientBase::getResult() |
||
| 4767 | * @uses SoapClientBase::saveLastError() |
||
| 4768 | * @param \Ovh\StructType\TelephonyLineLogsNotificationOptionsModify $parameters |
||
| 4769 | * @return \Ovh\StructType\TelephonyLineLogsNotificationOptionsModifyResponse|bool |
||
| 4770 | */ |
||
| 4771 | public function telephonyLineLogsNotificationOptionsModify(\Ovh\StructType\TelephonyLineLogsNotificationOptionsModify $parameters) |
||
| 4772 | { |
||
| 4773 | try { |
||
| 4774 | $this->setResult($this->getSoapClient()->__soapCall('telephonyLineLogsNotificationOptionsModify', array( |
||
| 4775 | $parameters, |
||
| 4776 | ), array(), array(), $this->outputHeaders)); |
||
| 4777 | return $this->getResult(); |
||
| 4778 | } catch (\SoapFault $soapFault) { |
||
| 4779 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4780 | return false; |
||
| 4781 | } |
||
| 4782 | } |
||
| 4783 | /** |
||
| 4784 | * Method to call the operation originally named telephonyClick2CallDoBySession |
||
| 4785 | * @uses SoapClientBase::getSoapClient() |
||
| 4786 | * @uses SoapClientBase::setResult() |
||
| 4787 | * @uses SoapClientBase::getResult() |
||
| 4788 | * @uses SoapClientBase::saveLastError() |
||
| 4789 | * @param \Ovh\StructType\TelephonyClick2CallDoBySession $parameters |
||
| 4790 | * @return \Ovh\StructType\TelephonyClick2CallDoBySessionResponse|bool |
||
| 4791 | */ |
||
| 4792 | public function telephonyClick2CallDoBySession(\Ovh\StructType\TelephonyClick2CallDoBySession $parameters) |
||
| 4793 | { |
||
| 4794 | try { |
||
| 4795 | $this->setResult($this->getSoapClient()->__soapCall('telephonyClick2CallDoBySession', array( |
||
| 4796 | $parameters, |
||
| 4797 | ), array(), array(), $this->outputHeaders)); |
||
| 4798 | return $this->getResult(); |
||
| 4799 | } catch (\SoapFault $soapFault) { |
||
| 4800 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4801 | return false; |
||
| 4802 | } |
||
| 4803 | } |
||
| 4804 | /** |
||
| 4805 | * Method to call the operation originally named telephonyAbbreviatedNumberAdd |
||
| 4806 | * @uses SoapClientBase::getSoapClient() |
||
| 4807 | * @uses SoapClientBase::setResult() |
||
| 4808 | * @uses SoapClientBase::getResult() |
||
| 4809 | * @uses SoapClientBase::saveLastError() |
||
| 4810 | * @param \Ovh\StructType\TelephonyAbbreviatedNumberAdd $parameters |
||
| 4811 | * @return \Ovh\StructType\TelephonyAbbreviatedNumberAddResponse|bool |
||
| 4812 | */ |
||
| 4813 | public function telephonyAbbreviatedNumberAdd(\Ovh\StructType\TelephonyAbbreviatedNumberAdd $parameters) |
||
| 4814 | { |
||
| 4815 | try { |
||
| 4816 | $this->setResult($this->getSoapClient()->__soapCall('telephonyAbbreviatedNumberAdd', array( |
||
| 4817 | $parameters, |
||
| 4818 | ), array(), array(), $this->outputHeaders)); |
||
| 4819 | return $this->getResult(); |
||
| 4820 | } catch (\SoapFault $soapFault) { |
||
| 4821 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4822 | return false; |
||
| 4823 | } |
||
| 4824 | } |
||
| 4825 | /** |
||
| 4826 | * Method to call the operation originally named telephonyNumberOrder |
||
| 4827 | * @uses SoapClientBase::getSoapClient() |
||
| 4828 | * @uses SoapClientBase::setResult() |
||
| 4829 | * @uses SoapClientBase::getResult() |
||
| 4830 | * @uses SoapClientBase::saveLastError() |
||
| 4831 | * @param \Ovh\StructType\TelephonyNumberOrder $parameters |
||
| 4832 | * @return \Ovh\StructType\TelephonyNumberOrderResponse|bool |
||
| 4833 | */ |
||
| 4834 | public function telephonyNumberOrder(\Ovh\StructType\TelephonyNumberOrder $parameters) |
||
| 4835 | { |
||
| 4836 | try { |
||
| 4837 | $this->setResult($this->getSoapClient()->__soapCall('telephonyNumberOrder', array( |
||
| 4838 | $parameters, |
||
| 4839 | ), array(), array(), $this->outputHeaders)); |
||
| 4840 | return $this->getResult(); |
||
| 4841 | } catch (\SoapFault $soapFault) { |
||
| 4842 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4843 | return false; |
||
| 4844 | } |
||
| 4845 | } |
||
| 4846 | /** |
||
| 4847 | * Method to call the operation originally named telephonyLineSetIpRestriction |
||
| 4848 | * @uses SoapClientBase::getSoapClient() |
||
| 4849 | * @uses SoapClientBase::setResult() |
||
| 4850 | * @uses SoapClientBase::getResult() |
||
| 4851 | * @uses SoapClientBase::saveLastError() |
||
| 4852 | * @param \Ovh\StructType\TelephonyLineSetIpRestriction $parameters |
||
| 4853 | * @return \Ovh\StructType\TelephonyLineSetIpRestrictionResponse|bool |
||
| 4854 | */ |
||
| 4855 | public function telephonyLineSetIpRestriction(\Ovh\StructType\TelephonyLineSetIpRestriction $parameters) |
||
| 4856 | { |
||
| 4857 | try { |
||
| 4858 | $this->setResult($this->getSoapClient()->__soapCall('telephonyLineSetIpRestriction', array( |
||
| 4859 | $parameters, |
||
| 4860 | ), array(), array(), $this->outputHeaders)); |
||
| 4861 | return $this->getResult(); |
||
| 4862 | } catch (\SoapFault $soapFault) { |
||
| 4863 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4864 | return false; |
||
| 4865 | } |
||
| 4866 | } |
||
| 4867 | /** |
||
| 4868 | * Method to call the operation originally named telephonyLineSetCodecs |
||
| 4869 | * @uses SoapClientBase::getSoapClient() |
||
| 4870 | * @uses SoapClientBase::setResult() |
||
| 4871 | * @uses SoapClientBase::getResult() |
||
| 4872 | * @uses SoapClientBase::saveLastError() |
||
| 4873 | * @param \Ovh\StructType\TelephonyLineSetCodecs $parameters |
||
| 4874 | * @return \Ovh\StructType\TelephonyLineSetCodecsResponse|bool |
||
| 4875 | */ |
||
| 4876 | public function telephonyLineSetCodecs(\Ovh\StructType\TelephonyLineSetCodecs $parameters) |
||
| 4877 | { |
||
| 4878 | try { |
||
| 4879 | $this->setResult($this->getSoapClient()->__soapCall('telephonyLineSetCodecs', array( |
||
| 4880 | $parameters, |
||
| 4881 | ), array(), array(), $this->outputHeaders)); |
||
| 4882 | return $this->getResult(); |
||
| 4883 | } catch (\SoapFault $soapFault) { |
||
| 4884 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4885 | return false; |
||
| 4886 | } |
||
| 4887 | } |
||
| 4888 | /** |
||
| 4889 | * Method to call the operation originally named telephonyNumberCityForZoneList |
||
| 4890 | * @uses SoapClientBase::getSoapClient() |
||
| 4891 | * @uses SoapClientBase::setResult() |
||
| 4892 | * @uses SoapClientBase::getResult() |
||
| 4893 | * @uses SoapClientBase::saveLastError() |
||
| 4894 | * @param \Ovh\StructType\TelephonyNumberCityForZoneList $parameters |
||
| 4895 | * @return \Ovh\StructType\TelephonyNumberCityForZoneListResponse|bool |
||
| 4896 | */ |
||
| 4897 | public function telephonyNumberCityForZoneList(\Ovh\StructType\TelephonyNumberCityForZoneList $parameters) |
||
| 4898 | { |
||
| 4899 | try { |
||
| 4900 | $this->setResult($this->getSoapClient()->__soapCall('telephonyNumberCityForZoneList', array( |
||
| 4901 | $parameters, |
||
| 4902 | ), array(), array(), $this->outputHeaders)); |
||
| 4903 | return $this->getResult(); |
||
| 4904 | } catch (\SoapFault $soapFault) { |
||
| 4905 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4906 | return false; |
||
| 4907 | } |
||
| 4908 | } |
||
| 4909 | /** |
||
| 4910 | * Method to call the operation originally named telephonyTonesOptionsModify |
||
| 4911 | * @uses SoapClientBase::getSoapClient() |
||
| 4912 | * @uses SoapClientBase::setResult() |
||
| 4913 | * @uses SoapClientBase::getResult() |
||
| 4914 | * @uses SoapClientBase::saveLastError() |
||
| 4915 | * @param \Ovh\StructType\TelephonyTonesOptionsModify $parameters |
||
| 4916 | * @return \Ovh\StructType\TelephonyTonesOptionsModifyResponse|bool |
||
| 4917 | */ |
||
| 4918 | public function telephonyTonesOptionsModify(\Ovh\StructType\TelephonyTonesOptionsModify $parameters) |
||
| 4919 | { |
||
| 4920 | try { |
||
| 4921 | $this->setResult($this->getSoapClient()->__soapCall('telephonyTonesOptionsModify', array( |
||
| 4922 | $parameters, |
||
| 4923 | ), array(), array(), $this->outputHeaders)); |
||
| 4924 | return $this->getResult(); |
||
| 4925 | } catch (\SoapFault $soapFault) { |
||
| 4926 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4927 | return false; |
||
| 4928 | } |
||
| 4929 | } |
||
| 4930 | /** |
||
| 4931 | * Method to call the operation originally named |
||
| 4932 | * telephonyVoicemailMessagesRemoteUpload |
||
| 4933 | * @uses SoapClientBase::getSoapClient() |
||
| 4934 | * @uses SoapClientBase::setResult() |
||
| 4935 | * @uses SoapClientBase::getResult() |
||
| 4936 | * @uses SoapClientBase::saveLastError() |
||
| 4937 | * @param \Ovh\StructType\TelephonyVoicemailMessagesRemoteUpload $parameters |
||
| 4938 | * @return \Ovh\StructType\TelephonyVoicemailMessagesRemoteUploadResponse|bool |
||
| 4939 | */ |
||
| 4940 | public function telephonyVoicemailMessagesRemoteUpload(\Ovh\StructType\TelephonyVoicemailMessagesRemoteUpload $parameters) |
||
| 4941 | { |
||
| 4942 | try { |
||
| 4943 | $this->setResult($this->getSoapClient()->__soapCall('telephonyVoicemailMessagesRemoteUpload', array( |
||
| 4944 | $parameters, |
||
| 4945 | ), array(), array(), $this->outputHeaders)); |
||
| 4946 | return $this->getResult(); |
||
| 4947 | } catch (\SoapFault $soapFault) { |
||
| 4948 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4949 | return false; |
||
| 4950 | } |
||
| 4951 | } |
||
| 4952 | /** |
||
| 4953 | * Method to call the operation originally named telephonyOfferInfo |
||
| 4954 | * @uses SoapClientBase::getSoapClient() |
||
| 4955 | * @uses SoapClientBase::setResult() |
||
| 4956 | * @uses SoapClientBase::getResult() |
||
| 4957 | * @uses SoapClientBase::saveLastError() |
||
| 4958 | * @param \Ovh\StructType\TelephonyOfferInfo $parameters |
||
| 4959 | * @return \Ovh\StructType\TelephonyOfferInfoResponse|bool |
||
| 4960 | */ |
||
| 4961 | public function telephonyOfferInfo(\Ovh\StructType\TelephonyOfferInfo $parameters) |
||
| 4962 | { |
||
| 4963 | try { |
||
| 4964 | $this->setResult($this->getSoapClient()->__soapCall('telephonyOfferInfo', array( |
||
| 4965 | $parameters, |
||
| 4966 | ), array(), array(), $this->outputHeaders)); |
||
| 4967 | return $this->getResult(); |
||
| 4968 | } catch (\SoapFault $soapFault) { |
||
| 4969 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4970 | return false; |
||
| 4971 | } |
||
| 4972 | } |
||
| 4973 | /** |
||
| 4974 | * Method to call the operation originally named telephonyPhonebookDel |
||
| 4975 | * @uses SoapClientBase::getSoapClient() |
||
| 4976 | * @uses SoapClientBase::setResult() |
||
| 4977 | * @uses SoapClientBase::getResult() |
||
| 4978 | * @uses SoapClientBase::saveLastError() |
||
| 4979 | * @param \Ovh\StructType\TelephonyPhonebookDel $parameters |
||
| 4980 | * @return \Ovh\StructType\TelephonyPhonebookDelResponse|bool |
||
| 4981 | */ |
||
| 4982 | public function telephonyPhonebookDel(\Ovh\StructType\TelephonyPhonebookDel $parameters) |
||
| 4983 | { |
||
| 4984 | try { |
||
| 4985 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPhonebookDel', array( |
||
| 4986 | $parameters, |
||
| 4987 | ), array(), array(), $this->outputHeaders)); |
||
| 4988 | return $this->getResult(); |
||
| 4989 | } catch (\SoapFault $soapFault) { |
||
| 4990 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 4991 | return false; |
||
| 4992 | } |
||
| 4993 | } |
||
| 4994 | /** |
||
| 4995 | * Method to call the operation originally named telephonySmsUserAdd |
||
| 4996 | * @uses SoapClientBase::getSoapClient() |
||
| 4997 | * @uses SoapClientBase::setResult() |
||
| 4998 | * @uses SoapClientBase::getResult() |
||
| 4999 | * @uses SoapClientBase::saveLastError() |
||
| 5000 | * @param \Ovh\StructType\TelephonySmsUserAdd $parameters |
||
| 5001 | * @return \Ovh\StructType\TelephonySmsUserAddResponse|bool |
||
| 5002 | */ |
||
| 5003 | public function telephonySmsUserAdd(\Ovh\StructType\TelephonySmsUserAdd $parameters) |
||
| 5004 | { |
||
| 5005 | try { |
||
| 5006 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsUserAdd', array( |
||
| 5007 | $parameters, |
||
| 5008 | ), array(), array(), $this->outputHeaders)); |
||
| 5009 | return $this->getResult(); |
||
| 5010 | } catch (\SoapFault $soapFault) { |
||
| 5011 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5012 | return false; |
||
| 5013 | } |
||
| 5014 | } |
||
| 5015 | /** |
||
| 5016 | * Method to call the operation originally named telephonySmsUserHistory |
||
| 5017 | * @uses SoapClientBase::getSoapClient() |
||
| 5018 | * @uses SoapClientBase::setResult() |
||
| 5019 | * @uses SoapClientBase::getResult() |
||
| 5020 | * @uses SoapClientBase::saveLastError() |
||
| 5021 | * @param \Ovh\StructType\TelephonySmsUserHistory $parameters |
||
| 5022 | * @return \Ovh\StructType\TelephonySmsUserHistoryResponse|bool |
||
| 5023 | */ |
||
| 5024 | public function telephonySmsUserHistory(\Ovh\StructType\TelephonySmsUserHistory $parameters) |
||
| 5025 | { |
||
| 5026 | try { |
||
| 5027 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsUserHistory', array( |
||
| 5028 | $parameters, |
||
| 5029 | ), array(), array(), $this->outputHeaders)); |
||
| 5030 | return $this->getResult(); |
||
| 5031 | } catch (\SoapFault $soapFault) { |
||
| 5032 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5033 | return false; |
||
| 5034 | } |
||
| 5035 | } |
||
| 5036 | /** |
||
| 5037 | * Method to call the operation originally named telephonySmsUserGetCallBack |
||
| 5038 | * @uses SoapClientBase::getSoapClient() |
||
| 5039 | * @uses SoapClientBase::setResult() |
||
| 5040 | * @uses SoapClientBase::getResult() |
||
| 5041 | * @uses SoapClientBase::saveLastError() |
||
| 5042 | * @param \Ovh\StructType\TelephonySmsUserGetCallBack $parameters |
||
| 5043 | * @return \Ovh\StructType\TelephonySmsUserGetCallBackResponse|bool |
||
| 5044 | */ |
||
| 5045 | public function telephonySmsUserGetCallBack(\Ovh\StructType\TelephonySmsUserGetCallBack $parameters) |
||
| 5046 | { |
||
| 5047 | try { |
||
| 5048 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsUserGetCallBack', array( |
||
| 5049 | $parameters, |
||
| 5050 | ), array(), array(), $this->outputHeaders)); |
||
| 5051 | return $this->getResult(); |
||
| 5052 | } catch (\SoapFault $soapFault) { |
||
| 5053 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5054 | return false; |
||
| 5055 | } |
||
| 5056 | } |
||
| 5057 | /** |
||
| 5058 | * Method to call the operation originally named telephonyOfferModifyPassword |
||
| 5059 | * @uses SoapClientBase::getSoapClient() |
||
| 5060 | * @uses SoapClientBase::setResult() |
||
| 5061 | * @uses SoapClientBase::getResult() |
||
| 5062 | * @uses SoapClientBase::saveLastError() |
||
| 5063 | * @param \Ovh\StructType\TelephonyOfferModifyPassword $parameters |
||
| 5064 | * @return \Ovh\StructType\TelephonyOfferModifyPasswordResponse|bool |
||
| 5065 | */ |
||
| 5066 | public function telephonyOfferModifyPassword(\Ovh\StructType\TelephonyOfferModifyPassword $parameters) |
||
| 5067 | { |
||
| 5068 | try { |
||
| 5069 | $this->setResult($this->getSoapClient()->__soapCall('telephonyOfferModifyPassword', array( |
||
| 5070 | $parameters, |
||
| 5071 | ), array(), array(), $this->outputHeaders)); |
||
| 5072 | return $this->getResult(); |
||
| 5073 | } catch (\SoapFault $soapFault) { |
||
| 5074 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5075 | return false; |
||
| 5076 | } |
||
| 5077 | } |
||
| 5078 | /** |
||
| 5079 | * Method to call the operation originally named telephonyFunctionKeyAdd |
||
| 5080 | * @uses SoapClientBase::getSoapClient() |
||
| 5081 | * @uses SoapClientBase::setResult() |
||
| 5082 | * @uses SoapClientBase::getResult() |
||
| 5083 | * @uses SoapClientBase::saveLastError() |
||
| 5084 | * @param \Ovh\StructType\TelephonyFunctionKeyAdd $parameters |
||
| 5085 | * @return \Ovh\StructType\TelephonyFunctionKeyAddResponse|bool |
||
| 5086 | */ |
||
| 5087 | public function telephonyFunctionKeyAdd(\Ovh\StructType\TelephonyFunctionKeyAdd $parameters) |
||
| 5088 | { |
||
| 5089 | try { |
||
| 5090 | $this->setResult($this->getSoapClient()->__soapCall('telephonyFunctionKeyAdd', array( |
||
| 5091 | $parameters, |
||
| 5092 | ), array(), array(), $this->outputHeaders)); |
||
| 5093 | return $this->getResult(); |
||
| 5094 | } catch (\SoapFault $soapFault) { |
||
| 5095 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5096 | return false; |
||
| 5097 | } |
||
| 5098 | } |
||
| 5099 | /** |
||
| 5100 | * Method to call the operation originally named telephonyPhonebookList |
||
| 5101 | * @uses SoapClientBase::getSoapClient() |
||
| 5102 | * @uses SoapClientBase::setResult() |
||
| 5103 | * @uses SoapClientBase::getResult() |
||
| 5104 | * @uses SoapClientBase::saveLastError() |
||
| 5105 | * @param \Ovh\StructType\TelephonyPhonebookList $parameters |
||
| 5106 | * @return \Ovh\StructType\TelephonyPhonebookListResponse|bool |
||
| 5107 | */ |
||
| 5108 | public function telephonyPhonebookList(\Ovh\StructType\TelephonyPhonebookList $parameters) |
||
| 5109 | { |
||
| 5110 | try { |
||
| 5111 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPhonebookList', array( |
||
| 5112 | $parameters, |
||
| 5113 | ), array(), array(), $this->outputHeaders)); |
||
| 5114 | return $this->getResult(); |
||
| 5115 | } catch (\SoapFault $soapFault) { |
||
| 5116 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5117 | return false; |
||
| 5118 | } |
||
| 5119 | } |
||
| 5120 | /** |
||
| 5121 | * Method to call the operation originally named telephonyPlugAndPhoneReset |
||
| 5122 | * @uses SoapClientBase::getSoapClient() |
||
| 5123 | * @uses SoapClientBase::setResult() |
||
| 5124 | * @uses SoapClientBase::getResult() |
||
| 5125 | * @uses SoapClientBase::saveLastError() |
||
| 5126 | * @param \Ovh\StructType\TelephonyPlugAndPhoneReset $parameters |
||
| 5127 | * @return \Ovh\StructType\TelephonyPlugAndPhoneResetResponse|bool |
||
| 5128 | */ |
||
| 5129 | public function telephonyPlugAndPhoneReset(\Ovh\StructType\TelephonyPlugAndPhoneReset $parameters) |
||
| 5130 | { |
||
| 5131 | try { |
||
| 5132 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPlugAndPhoneReset', array( |
||
| 5133 | $parameters, |
||
| 5134 | ), array(), array(), $this->outputHeaders)); |
||
| 5135 | return $this->getResult(); |
||
| 5136 | } catch (\SoapFault $soapFault) { |
||
| 5137 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5138 | return false; |
||
| 5139 | } |
||
| 5140 | } |
||
| 5141 | /** |
||
| 5142 | * Method to call the operation originally named telephonySpareInfo |
||
| 5143 | * @uses SoapClientBase::getSoapClient() |
||
| 5144 | * @uses SoapClientBase::setResult() |
||
| 5145 | * @uses SoapClientBase::getResult() |
||
| 5146 | * @uses SoapClientBase::saveLastError() |
||
| 5147 | * @param \Ovh\StructType\TelephonySpareInfo $parameters |
||
| 5148 | * @return \Ovh\StructType\TelephonySpareInfoResponse|bool |
||
| 5149 | */ |
||
| 5150 | public function telephonySpareInfo(\Ovh\StructType\TelephonySpareInfo $parameters) |
||
| 5151 | { |
||
| 5152 | try { |
||
| 5153 | $this->setResult($this->getSoapClient()->__soapCall('telephonySpareInfo', array( |
||
| 5154 | $parameters, |
||
| 5155 | ), array(), array(), $this->outputHeaders)); |
||
| 5156 | return $this->getResult(); |
||
| 5157 | } catch (\SoapFault $soapFault) { |
||
| 5158 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5159 | return false; |
||
| 5160 | } |
||
| 5161 | } |
||
| 5162 | /** |
||
| 5163 | * Method to call the operation originally named telephonySmsUserDel |
||
| 5164 | * @uses SoapClientBase::getSoapClient() |
||
| 5165 | * @uses SoapClientBase::setResult() |
||
| 5166 | * @uses SoapClientBase::getResult() |
||
| 5167 | * @uses SoapClientBase::saveLastError() |
||
| 5168 | * @param \Ovh\StructType\TelephonySmsUserDel $parameters |
||
| 5169 | * @return \Ovh\StructType\TelephonySmsUserDelResponse|bool |
||
| 5170 | */ |
||
| 5171 | public function telephonySmsUserDel(\Ovh\StructType\TelephonySmsUserDel $parameters) |
||
| 5172 | { |
||
| 5173 | try { |
||
| 5174 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsUserDel', array( |
||
| 5175 | $parameters, |
||
| 5176 | ), array(), array(), $this->outputHeaders)); |
||
| 5177 | return $this->getResult(); |
||
| 5178 | } catch (\SoapFault $soapFault) { |
||
| 5179 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5180 | return false; |
||
| 5181 | } |
||
| 5182 | } |
||
| 5183 | /** |
||
| 5184 | * Method to call the operation originally named telephonyVoicemailMessagesStatus |
||
| 5185 | * @uses SoapClientBase::getSoapClient() |
||
| 5186 | * @uses SoapClientBase::setResult() |
||
| 5187 | * @uses SoapClientBase::getResult() |
||
| 5188 | * @uses SoapClientBase::saveLastError() |
||
| 5189 | * @param \Ovh\StructType\TelephonyVoicemailMessagesStatus $parameters |
||
| 5190 | * @return \Ovh\StructType\TelephonyVoicemailMessagesStatusResponse|bool |
||
| 5191 | */ |
||
| 5192 | public function telephonyVoicemailMessagesStatus(\Ovh\StructType\TelephonyVoicemailMessagesStatus $parameters) |
||
| 5202 | } |
||
| 5203 | } |
||
| 5204 | /** |
||
| 5205 | * Method to call the operation originally named telephonyPhonebookModify |
||
| 5206 | * @uses SoapClientBase::getSoapClient() |
||
| 5207 | * @uses SoapClientBase::setResult() |
||
| 5208 | * @uses SoapClientBase::getResult() |
||
| 5209 | * @uses SoapClientBase::saveLastError() |
||
| 5210 | * @param \Ovh\StructType\TelephonyPhonebookModify $parameters |
||
| 5211 | * @return \Ovh\StructType\TelephonyPhonebookModifyResponse|bool |
||
| 5212 | */ |
||
| 5213 | public function telephonyPhonebookModify(\Ovh\StructType\TelephonyPhonebookModify $parameters) |
||
| 5214 | { |
||
| 5215 | try { |
||
| 5216 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPhonebookModify', array( |
||
| 5217 | $parameters, |
||
| 5218 | ), array(), array(), $this->outputHeaders)); |
||
| 5219 | return $this->getResult(); |
||
| 5220 | } catch (\SoapFault $soapFault) { |
||
| 5221 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5222 | return false; |
||
| 5223 | } |
||
| 5224 | } |
||
| 5225 | /** |
||
| 5226 | * Method to call the operation originally named telephonyOfferModifyName |
||
| 5227 | * @uses SoapClientBase::getSoapClient() |
||
| 5228 | * @uses SoapClientBase::setResult() |
||
| 5229 | * @uses SoapClientBase::getResult() |
||
| 5230 | * @uses SoapClientBase::saveLastError() |
||
| 5231 | * @param \Ovh\StructType\TelephonyOfferModifyName $parameters |
||
| 5232 | * @return \Ovh\StructType\TelephonyOfferModifyNameResponse|bool |
||
| 5233 | */ |
||
| 5234 | public function telephonyOfferModifyName(\Ovh\StructType\TelephonyOfferModifyName $parameters) |
||
| 5235 | { |
||
| 5236 | try { |
||
| 5237 | $this->setResult($this->getSoapClient()->__soapCall('telephonyOfferModifyName', array( |
||
| 5238 | $parameters, |
||
| 5239 | ), array(), array(), $this->outputHeaders)); |
||
| 5240 | return $this->getResult(); |
||
| 5241 | } catch (\SoapFault $soapFault) { |
||
| 5242 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5243 | return false; |
||
| 5244 | } |
||
| 5245 | } |
||
| 5246 | /** |
||
| 5247 | * Method to call the operation originally named telephonySmsSetCallBack |
||
| 5248 | * @uses SoapClientBase::getSoapClient() |
||
| 5249 | * @uses SoapClientBase::setResult() |
||
| 5250 | * @uses SoapClientBase::getResult() |
||
| 5251 | * @uses SoapClientBase::saveLastError() |
||
| 5252 | * @param \Ovh\StructType\TelephonySmsSetCallBack $parameters |
||
| 5253 | * @return \Ovh\StructType\TelephonySmsSetCallBackResponse|bool |
||
| 5254 | */ |
||
| 5255 | public function telephonySmsSetCallBack(\Ovh\StructType\TelephonySmsSetCallBack $parameters) |
||
| 5256 | { |
||
| 5257 | try { |
||
| 5258 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsSetCallBack', array( |
||
| 5259 | $parameters, |
||
| 5260 | ), array(), array(), $this->outputHeaders)); |
||
| 5261 | return $this->getResult(); |
||
| 5262 | } catch (\SoapFault $soapFault) { |
||
| 5263 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5264 | return false; |
||
| 5265 | } |
||
| 5266 | } |
||
| 5267 | /** |
||
| 5268 | * Method to call the operation originally named telephonyPhonebookGroupList |
||
| 5269 | * @uses SoapClientBase::getSoapClient() |
||
| 5270 | * @uses SoapClientBase::setResult() |
||
| 5271 | * @uses SoapClientBase::getResult() |
||
| 5272 | * @uses SoapClientBase::saveLastError() |
||
| 5273 | * @param \Ovh\StructType\TelephonyPhonebookGroupList $parameters |
||
| 5274 | * @return \Ovh\StructType\TelephonyPhonebookGroupListResponse|bool |
||
| 5275 | */ |
||
| 5276 | public function telephonyPhonebookGroupList(\Ovh\StructType\TelephonyPhonebookGroupList $parameters) |
||
| 5277 | { |
||
| 5278 | try { |
||
| 5279 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPhonebookGroupList', array( |
||
| 5280 | $parameters, |
||
| 5281 | ), array(), array(), $this->outputHeaders)); |
||
| 5282 | return $this->getResult(); |
||
| 5283 | } catch (\SoapFault $soapFault) { |
||
| 5284 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5285 | return false; |
||
| 5286 | } |
||
| 5287 | } |
||
| 5288 | /** |
||
| 5289 | * Method to call the operation originally named telephonyBillingAccountInfo |
||
| 5290 | * @uses SoapClientBase::getSoapClient() |
||
| 5291 | * @uses SoapClientBase::setResult() |
||
| 5292 | * @uses SoapClientBase::getResult() |
||
| 5293 | * @uses SoapClientBase::saveLastError() |
||
| 5294 | * @param \Ovh\StructType\TelephonyBillingAccountInfo $parameters |
||
| 5295 | * @return \Ovh\StructType\TelephonyBillingAccountInfoResponse|bool |
||
| 5296 | */ |
||
| 5297 | public function telephonyBillingAccountInfo(\Ovh\StructType\TelephonyBillingAccountInfo $parameters) |
||
| 5298 | { |
||
| 5299 | try { |
||
| 5300 | $this->setResult($this->getSoapClient()->__soapCall('telephonyBillingAccountInfo', array( |
||
| 5301 | $parameters, |
||
| 5302 | ), array(), array(), $this->outputHeaders)); |
||
| 5303 | return $this->getResult(); |
||
| 5304 | } catch (\SoapFault $soapFault) { |
||
| 5305 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5306 | return false; |
||
| 5307 | } |
||
| 5308 | } |
||
| 5309 | /** |
||
| 5310 | * Method to call the operation originally named telephonySmsSenderAdd |
||
| 5311 | * @uses SoapClientBase::getSoapClient() |
||
| 5312 | * @uses SoapClientBase::setResult() |
||
| 5313 | * @uses SoapClientBase::getResult() |
||
| 5314 | * @uses SoapClientBase::saveLastError() |
||
| 5315 | * @param \Ovh\StructType\TelephonySmsSenderAdd $parameters |
||
| 5316 | * @return \Ovh\StructType\TelephonySmsSenderAddResponse|bool |
||
| 5317 | */ |
||
| 5318 | public function telephonySmsSenderAdd(\Ovh\StructType\TelephonySmsSenderAdd $parameters) |
||
| 5319 | { |
||
| 5320 | try { |
||
| 5321 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsSenderAdd', array( |
||
| 5322 | $parameters, |
||
| 5323 | ), array(), array(), $this->outputHeaders)); |
||
| 5324 | return $this->getResult(); |
||
| 5325 | } catch (\SoapFault $soapFault) { |
||
| 5326 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5327 | return false; |
||
| 5328 | } |
||
| 5329 | } |
||
| 5330 | /** |
||
| 5331 | * Method to call the operation originally named telephonyLineConsumptionCSVByMail |
||
| 5332 | * @uses SoapClientBase::getSoapClient() |
||
| 5333 | * @uses SoapClientBase::setResult() |
||
| 5334 | * @uses SoapClientBase::getResult() |
||
| 5335 | * @uses SoapClientBase::saveLastError() |
||
| 5336 | * @param \Ovh\StructType\TelephonyLineConsumptionCSVByMail $parameters |
||
| 5337 | * @return \Ovh\StructType\TelephonyLineConsumptionCSVByMailResponse|bool |
||
| 5338 | */ |
||
| 5339 | public function telephonyLineConsumptionCSVByMail(\Ovh\StructType\TelephonyLineConsumptionCSVByMail $parameters) |
||
| 5340 | { |
||
| 5341 | try { |
||
| 5342 | $this->setResult($this->getSoapClient()->__soapCall('telephonyLineConsumptionCSVByMail', array( |
||
| 5343 | $parameters, |
||
| 5344 | ), array(), array(), $this->outputHeaders)); |
||
| 5345 | return $this->getResult(); |
||
| 5346 | } catch (\SoapFault $soapFault) { |
||
| 5347 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5348 | return false; |
||
| 5349 | } |
||
| 5350 | } |
||
| 5351 | /** |
||
| 5352 | * Method to call the operation originally named |
||
| 5353 | * telephonySmsUserDeleteCsvAttachment |
||
| 5354 | * @uses SoapClientBase::getSoapClient() |
||
| 5355 | * @uses SoapClientBase::setResult() |
||
| 5356 | * @uses SoapClientBase::getResult() |
||
| 5357 | * @uses SoapClientBase::saveLastError() |
||
| 5358 | * @param \Ovh\StructType\TelephonySmsUserDeleteCsvAttachment $parameters |
||
| 5359 | * @return \Ovh\StructType\TelephonySmsUserDeleteCsvAttachmentResponse|bool |
||
| 5360 | */ |
||
| 5361 | public function telephonySmsUserDeleteCsvAttachment(\Ovh\StructType\TelephonySmsUserDeleteCsvAttachment $parameters) |
||
| 5362 | { |
||
| 5363 | try { |
||
| 5364 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsUserDeleteCsvAttachment', array( |
||
| 5365 | $parameters, |
||
| 5366 | ), array(), array(), $this->outputHeaders)); |
||
| 5367 | return $this->getResult(); |
||
| 5368 | } catch (\SoapFault $soapFault) { |
||
| 5369 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5370 | return false; |
||
| 5371 | } |
||
| 5372 | } |
||
| 5373 | /** |
||
| 5374 | * Method to call the operation originally named |
||
| 5375 | * telephonyListReversableCallsFromNumber |
||
| 5376 | * @uses SoapClientBase::getSoapClient() |
||
| 5377 | * @uses SoapClientBase::setResult() |
||
| 5378 | * @uses SoapClientBase::getResult() |
||
| 5379 | * @uses SoapClientBase::saveLastError() |
||
| 5380 | * @param \Ovh\StructType\TelephonyListReversableCallsFromNumber $parameters |
||
| 5381 | * @return \Ovh\StructType\TelephonyListReversableCallsFromNumberResponse|bool |
||
| 5382 | */ |
||
| 5383 | public function telephonyListReversableCallsFromNumber(\Ovh\StructType\TelephonyListReversableCallsFromNumber $parameters) |
||
| 5384 | { |
||
| 5385 | try { |
||
| 5386 | $this->setResult($this->getSoapClient()->__soapCall('telephonyListReversableCallsFromNumber', array( |
||
| 5387 | $parameters, |
||
| 5388 | ), array(), array(), $this->outputHeaders)); |
||
| 5389 | return $this->getResult(); |
||
| 5390 | } catch (\SoapFault $soapFault) { |
||
| 5391 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5392 | return false; |
||
| 5393 | } |
||
| 5394 | } |
||
| 5395 | /** |
||
| 5396 | * Method to call the operation originally named telephonyBillingAccountList |
||
| 5397 | * @uses SoapClientBase::getSoapClient() |
||
| 5398 | * @uses SoapClientBase::setResult() |
||
| 5399 | * @uses SoapClientBase::getResult() |
||
| 5400 | * @uses SoapClientBase::saveLastError() |
||
| 5401 | * @param \Ovh\StructType\TelephonyBillingAccountList $parameters |
||
| 5402 | * @return \Ovh\StructType\TelephonyBillingAccountListResponse|bool |
||
| 5403 | */ |
||
| 5404 | public function telephonyBillingAccountList(\Ovh\StructType\TelephonyBillingAccountList $parameters) |
||
| 5405 | { |
||
| 5406 | try { |
||
| 5407 | $this->setResult($this->getSoapClient()->__soapCall('telephonyBillingAccountList', array( |
||
| 5408 | $parameters, |
||
| 5409 | ), array(), array(), $this->outputHeaders)); |
||
| 5410 | return $this->getResult(); |
||
| 5411 | } catch (\SoapFault $soapFault) { |
||
| 5412 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5413 | return false; |
||
| 5414 | } |
||
| 5415 | } |
||
| 5416 | /** |
||
| 5417 | * Method to call the operation originally named |
||
| 5418 | * telephonySmsGetQuotaNotificationForUser |
||
| 5419 | * @uses SoapClientBase::getSoapClient() |
||
| 5420 | * @uses SoapClientBase::setResult() |
||
| 5421 | * @uses SoapClientBase::getResult() |
||
| 5422 | * @uses SoapClientBase::saveLastError() |
||
| 5423 | * @param \Ovh\StructType\TelephonySmsGetQuotaNotificationForUser $parameters |
||
| 5424 | * @return \Ovh\StructType\TelephonySmsGetQuotaNotificationForUserResponse|bool |
||
| 5425 | */ |
||
| 5426 | public function telephonySmsGetQuotaNotificationForUser(\Ovh\StructType\TelephonySmsGetQuotaNotificationForUser $parameters) |
||
| 5427 | { |
||
| 5428 | try { |
||
| 5429 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsGetQuotaNotificationForUser', array( |
||
| 5430 | $parameters, |
||
| 5431 | ), array(), array(), $this->outputHeaders)); |
||
| 5432 | return $this->getResult(); |
||
| 5433 | } catch (\SoapFault $soapFault) { |
||
| 5434 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5435 | return false; |
||
| 5436 | } |
||
| 5437 | } |
||
| 5438 | /** |
||
| 5439 | * Method to call the operation originally named telephonyChangeNicModify |
||
| 5440 | * @uses SoapClientBase::getSoapClient() |
||
| 5441 | * @uses SoapClientBase::setResult() |
||
| 5442 | * @uses SoapClientBase::getResult() |
||
| 5443 | * @uses SoapClientBase::saveLastError() |
||
| 5444 | * @param \Ovh\StructType\TelephonyChangeNicModify $parameters |
||
| 5445 | * @return \Ovh\StructType\TelephonyChangeNicModifyResponse|bool |
||
| 5446 | */ |
||
| 5447 | public function telephonyChangeNicModify(\Ovh\StructType\TelephonyChangeNicModify $parameters) |
||
| 5448 | { |
||
| 5449 | try { |
||
| 5450 | $this->setResult($this->getSoapClient()->__soapCall('telephonyChangeNicModify', array( |
||
| 5451 | $parameters, |
||
| 5452 | ), array(), array(), $this->outputHeaders)); |
||
| 5453 | return $this->getResult(); |
||
| 5454 | } catch (\SoapFault $soapFault) { |
||
| 5455 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5456 | return false; |
||
| 5457 | } |
||
| 5458 | } |
||
| 5459 | /** |
||
| 5460 | * Method to call the operation originally named telephonySviInfo |
||
| 5461 | * @uses SoapClientBase::getSoapClient() |
||
| 5462 | * @uses SoapClientBase::setResult() |
||
| 5463 | * @uses SoapClientBase::getResult() |
||
| 5464 | * @uses SoapClientBase::saveLastError() |
||
| 5465 | * @param \Ovh\StructType\TelephonySviInfo $parameters |
||
| 5466 | * @return \Ovh\StructType\TelephonySviInfoResponse|bool |
||
| 5467 | */ |
||
| 5468 | public function telephonySviInfo(\Ovh\StructType\TelephonySviInfo $parameters) |
||
| 5469 | { |
||
| 5470 | try { |
||
| 5471 | $this->setResult($this->getSoapClient()->__soapCall('telephonySviInfo', array( |
||
| 5472 | $parameters, |
||
| 5473 | ), array(), array(), $this->outputHeaders)); |
||
| 5474 | return $this->getResult(); |
||
| 5475 | } catch (\SoapFault $soapFault) { |
||
| 5476 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5477 | return false; |
||
| 5478 | } |
||
| 5479 | } |
||
| 5480 | /** |
||
| 5481 | * Method to call the operation originally named telephonyClick2CallUserAdd |
||
| 5482 | * @uses SoapClientBase::getSoapClient() |
||
| 5483 | * @uses SoapClientBase::setResult() |
||
| 5484 | * @uses SoapClientBase::getResult() |
||
| 5485 | * @uses SoapClientBase::saveLastError() |
||
| 5486 | * @param \Ovh\StructType\TelephonyClick2CallUserAdd $parameters |
||
| 5487 | * @return \Ovh\StructType\TelephonyClick2CallUserAddResponse|bool |
||
| 5488 | */ |
||
| 5489 | public function telephonyClick2CallUserAdd(\Ovh\StructType\TelephonyClick2CallUserAdd $parameters) |
||
| 5490 | { |
||
| 5491 | try { |
||
| 5492 | $this->setResult($this->getSoapClient()->__soapCall('telephonyClick2CallUserAdd', array( |
||
| 5493 | $parameters, |
||
| 5494 | ), array(), array(), $this->outputHeaders)); |
||
| 5495 | return $this->getResult(); |
||
| 5496 | } catch (\SoapFault $soapFault) { |
||
| 5497 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5498 | return false; |
||
| 5499 | } |
||
| 5500 | } |
||
| 5501 | /** |
||
| 5502 | * Method to call the operation originally named |
||
| 5503 | * telephonySmsBlacklistedSendersDelete |
||
| 5504 | * @uses SoapClientBase::getSoapClient() |
||
| 5505 | * @uses SoapClientBase::setResult() |
||
| 5506 | * @uses SoapClientBase::getResult() |
||
| 5507 | * @uses SoapClientBase::saveLastError() |
||
| 5508 | * @param \Ovh\StructType\TelephonySmsBlacklistedSendersDelete $parameters |
||
| 5509 | * @return \Ovh\StructType\TelephonySmsBlacklistedSendersDeleteResponse|bool |
||
| 5510 | */ |
||
| 5511 | public function telephonySmsBlacklistedSendersDelete(\Ovh\StructType\TelephonySmsBlacklistedSendersDelete $parameters) |
||
| 5512 | { |
||
| 5513 | try { |
||
| 5514 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsBlacklistedSendersDelete', array( |
||
| 5515 | $parameters, |
||
| 5516 | ), array(), array(), $this->outputHeaders)); |
||
| 5517 | return $this->getResult(); |
||
| 5518 | } catch (\SoapFault $soapFault) { |
||
| 5519 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5520 | return false; |
||
| 5521 | } |
||
| 5522 | } |
||
| 5523 | /** |
||
| 5524 | * Method to call the operation originally named telephonySmsplusServiceAdd |
||
| 5525 | * @uses SoapClientBase::getSoapClient() |
||
| 5526 | * @uses SoapClientBase::setResult() |
||
| 5527 | * @uses SoapClientBase::getResult() |
||
| 5528 | * @uses SoapClientBase::saveLastError() |
||
| 5529 | * @param \Ovh\StructType\TelephonySmsplusServiceAdd $parameters |
||
| 5530 | * @return \Ovh\StructType\TelephonySmsplusServiceAddResponse|bool |
||
| 5531 | */ |
||
| 5532 | public function telephonySmsplusServiceAdd(\Ovh\StructType\TelephonySmsplusServiceAdd $parameters) |
||
| 5542 | } |
||
| 5543 | } |
||
| 5544 | /** |
||
| 5545 | * Method to call the operation originally named telephonySpareCreateRMA |
||
| 5546 | * @uses SoapClientBase::getSoapClient() |
||
| 5547 | * @uses SoapClientBase::setResult() |
||
| 5548 | * @uses SoapClientBase::getResult() |
||
| 5549 | * @uses SoapClientBase::saveLastError() |
||
| 5550 | * @param \Ovh\StructType\TelephonySpareCreateRMA $parameters |
||
| 5551 | * @return \Ovh\StructType\TelephonySpareCreateRMAResponse|bool |
||
| 5552 | */ |
||
| 5553 | public function telephonySpareCreateRMA(\Ovh\StructType\TelephonySpareCreateRMA $parameters) |
||
| 5554 | { |
||
| 5555 | try { |
||
| 5556 | $this->setResult($this->getSoapClient()->__soapCall('telephonySpareCreateRMA', array( |
||
| 5557 | $parameters, |
||
| 5558 | ), array(), array(), $this->outputHeaders)); |
||
| 5559 | return $this->getResult(); |
||
| 5560 | } catch (\SoapFault $soapFault) { |
||
| 5561 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5562 | return false; |
||
| 5563 | } |
||
| 5564 | } |
||
| 5565 | /** |
||
| 5566 | * Method to call the operation originally named telephonySmsplusServiceEdit |
||
| 5567 | * @uses SoapClientBase::getSoapClient() |
||
| 5568 | * @uses SoapClientBase::setResult() |
||
| 5569 | * @uses SoapClientBase::getResult() |
||
| 5570 | * @uses SoapClientBase::saveLastError() |
||
| 5571 | * @param \Ovh\StructType\TelephonySmsplusServiceEdit $parameters |
||
| 5572 | * @return \Ovh\StructType\TelephonySmsplusServiceEditResponse|bool |
||
| 5573 | */ |
||
| 5574 | public function telephonySmsplusServiceEdit(\Ovh\StructType\TelephonySmsplusServiceEdit $parameters) |
||
| 5575 | { |
||
| 5576 | try { |
||
| 5577 | $this->setResult($this->getSoapClient()->__soapCall('telephonySmsplusServiceEdit', array( |
||
| 5578 | $parameters, |
||
| 5579 | ), array(), array(), $this->outputHeaders)); |
||
| 5580 | return $this->getResult(); |
||
| 5581 | } catch (\SoapFault $soapFault) { |
||
| 5582 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5583 | return false; |
||
| 5584 | } |
||
| 5585 | } |
||
| 5586 | /** |
||
| 5587 | * Method to call the operation originally named |
||
| 5588 | * telephonyHuntingGenericScreenOptionsModify |
||
| 5589 | * @uses SoapClientBase::getSoapClient() |
||
| 5590 | * @uses SoapClientBase::setResult() |
||
| 5591 | * @uses SoapClientBase::getResult() |
||
| 5592 | * @uses SoapClientBase::saveLastError() |
||
| 5593 | * @param \Ovh\StructType\TelephonyHuntingGenericScreenOptionsModify $parameters |
||
| 5594 | * @return \Ovh\StructType\TelephonyHuntingGenericScreenOptionsModifyResponse|bool |
||
| 5595 | */ |
||
| 5596 | public function telephonyHuntingGenericScreenOptionsModify(\Ovh\StructType\TelephonyHuntingGenericScreenOptionsModify $parameters) |
||
| 5597 | { |
||
| 5598 | try { |
||
| 5599 | $this->setResult($this->getSoapClient()->__soapCall('telephonyHuntingGenericScreenOptionsModify', array( |
||
| 5600 | $parameters, |
||
| 5601 | ), array(), array(), $this->outputHeaders)); |
||
| 5602 | return $this->getResult(); |
||
| 5603 | } catch (\SoapFault $soapFault) { |
||
| 5604 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5605 | return false; |
||
| 5606 | } |
||
| 5607 | } |
||
| 5608 | /** |
||
| 5609 | * Method to call the operation originally named telephonyPlugAndPhoneInfo |
||
| 5610 | * @uses SoapClientBase::getSoapClient() |
||
| 5611 | * @uses SoapClientBase::setResult() |
||
| 5612 | * @uses SoapClientBase::getResult() |
||
| 5613 | * @uses SoapClientBase::saveLastError() |
||
| 5614 | * @param \Ovh\StructType\TelephonyPlugAndPhoneInfo $parameters |
||
| 5615 | * @return \Ovh\StructType\TelephonyPlugAndPhoneInfoResponse|bool |
||
| 5616 | */ |
||
| 5617 | public function telephonyPlugAndPhoneInfo(\Ovh\StructType\TelephonyPlugAndPhoneInfo $parameters) |
||
| 5618 | { |
||
| 5619 | try { |
||
| 5620 | $this->setResult($this->getSoapClient()->__soapCall('telephonyPlugAndPhoneInfo', array( |
||
| 5621 | $parameters, |
||
| 5622 | ), array(), array(), $this->outputHeaders)); |
||
| 5623 | return $this->getResult(); |
||
| 5624 | } catch (\SoapFault $soapFault) { |
||
| 5625 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5626 | return false; |
||
| 5627 | } |
||
| 5628 | } |
||
| 5629 | /** |
||
| 5630 | * Method to call the operation originally named telephonyFaxCampaignDelete |
||
| 5631 | * @uses SoapClientBase::getSoapClient() |
||
| 5632 | * @uses SoapClientBase::setResult() |
||
| 5633 | * @uses SoapClientBase::getResult() |
||
| 5634 | * @uses SoapClientBase::saveLastError() |
||
| 5635 | * @param \Ovh\StructType\TelephonyFaxCampaignDelete $parameters |
||
| 5636 | * @return \Ovh\StructType\TelephonyFaxCampaignDeleteResponse|bool |
||
| 5637 | */ |
||
| 5638 | public function telephonyFaxCampaignDelete(\Ovh\StructType\TelephonyFaxCampaignDelete $parameters) |
||
| 5639 | { |
||
| 5640 | try { |
||
| 5641 | $this->setResult($this->getSoapClient()->__soapCall('telephonyFaxCampaignDelete', array( |
||
| 5642 | $parameters, |
||
| 5643 | ), array(), array(), $this->outputHeaders)); |
||
| 5644 | return $this->getResult(); |
||
| 5645 | } catch (\SoapFault $soapFault) { |
||
| 5646 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5647 | return false; |
||
| 5648 | } |
||
| 5649 | } |
||
| 5650 | /** |
||
| 5651 | * Method to call the operation originally named |
||
| 5652 | * telephonyReversmentsRefundFromBillingAccount |
||
| 5653 | * @uses SoapClientBase::getSoapClient() |
||
| 5654 | * @uses SoapClientBase::setResult() |
||
| 5655 | * @uses SoapClientBase::getResult() |
||
| 5656 | * @uses SoapClientBase::saveLastError() |
||
| 5657 | * @param \Ovh\StructType\TelephonyReversmentsRefundFromBillingAccount $parameters |
||
| 5658 | * @return \Ovh\StructType\TelephonyReversmentsRefundFromBillingAccountResponse|bool |
||
| 5659 | */ |
||
| 5660 | public function telephonyReversmentsRefundFromBillingAccount(\Ovh\StructType\TelephonyReversmentsRefundFromBillingAccount $parameters) |
||
| 5661 | { |
||
| 5662 | try { |
||
| 5663 | $this->setResult($this->getSoapClient()->__soapCall('telephonyReversmentsRefundFromBillingAccount', array( |
||
| 5664 | $parameters, |
||
| 5665 | ), array(), array(), $this->outputHeaders)); |
||
| 5666 | return $this->getResult(); |
||
| 5667 | } catch (\SoapFault $soapFault) { |
||
| 5668 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5669 | return false; |
||
| 5670 | } |
||
| 5671 | } |
||
| 5672 | /** |
||
| 5673 | * Method to call the operation originally named telephonyVoicemailMessageDelete |
||
| 5674 | * @uses SoapClientBase::getSoapClient() |
||
| 5675 | * @uses SoapClientBase::setResult() |
||
| 5676 | * @uses SoapClientBase::getResult() |
||
| 5677 | * @uses SoapClientBase::saveLastError() |
||
| 5678 | * @param \Ovh\StructType\TelephonyVoicemailMessageDelete $parameters |
||
| 5679 | * @return \Ovh\StructType\TelephonyVoicemailMessageDeleteResponse|bool |
||
| 5680 | */ |
||
| 5681 | public function telephonyVoicemailMessageDelete(\Ovh\StructType\TelephonyVoicemailMessageDelete $parameters) |
||
| 5682 | { |
||
| 5683 | try { |
||
| 5684 | $this->setResult($this->getSoapClient()->__soapCall('telephonyVoicemailMessageDelete', array( |
||
| 5685 | $parameters, |
||
| 5686 | ), array(), array(), $this->outputHeaders)); |
||
| 5687 | return $this->getResult(); |
||
| 5688 | } catch (\SoapFault $soapFault) { |
||
| 5689 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5690 | return false; |
||
| 5691 | } |
||
| 5692 | } |
||
| 5693 | /** |
||
| 5694 | * Method to call the operation originally named telephonyLineOptionsList |
||
| 5695 | * @uses SoapClientBase::getSoapClient() |
||
| 5696 | * @uses SoapClientBase::setResult() |
||
| 5697 | * @uses SoapClientBase::getResult() |
||
| 5698 | * @uses SoapClientBase::saveLastError() |
||
| 5699 | * @param \Ovh\StructType\TelephonyLineOptionsList $parameters |
||
| 5700 | * @return \Ovh\StructType\TelephonyLineOptionsListResponse|bool |
||
| 5701 | */ |
||
| 5702 | public function telephonyLineOptionsList(\Ovh\StructType\TelephonyLineOptionsList $parameters) |
||
| 5703 | { |
||
| 5704 | try { |
||
| 5705 | $this->setResult($this->getSoapClient()->__soapCall('telephonyLineOptionsList', array( |
||
| 5706 | $parameters, |
||
| 5707 | ), array(), array(), $this->outputHeaders)); |
||
| 5708 | return $this->getResult(); |
||
| 5709 | } catch (\SoapFault $soapFault) { |
||
| 5710 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5711 | return false; |
||
| 5712 | } |
||
| 5713 | } |
||
| 5714 | /** |
||
| 5715 | * Method to call the operation originally named telephonySpareServiceInfo |
||
| 5716 | * @uses SoapClientBase::getSoapClient() |
||
| 5717 | * @uses SoapClientBase::setResult() |
||
| 5718 | * @uses SoapClientBase::getResult() |
||
| 5719 | * @uses SoapClientBase::saveLastError() |
||
| 5720 | * @param \Ovh\StructType\TelephonySpareServiceInfo $parameters |
||
| 5721 | * @return \Ovh\StructType\TelephonySpareServiceInfoResponse|bool |
||
| 5722 | */ |
||
| 5723 | public function telephonySpareServiceInfo(\Ovh\StructType\TelephonySpareServiceInfo $parameters) |
||
| 5724 | { |
||
| 5725 | try { |
||
| 5726 | $this->setResult($this->getSoapClient()->__soapCall('telephonySpareServiceInfo', array( |
||
| 5727 | $parameters, |
||
| 5728 | ), array(), array(), $this->outputHeaders)); |
||
| 5729 | return $this->getResult(); |
||
| 5730 | } catch (\SoapFault $soapFault) { |
||
| 5731 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5732 | return false; |
||
| 5733 | } |
||
| 5734 | } |
||
| 5735 | /** |
||
| 5736 | * Method to call the operation originally named telephonyAbbreviatedNumberModify |
||
| 5737 | * @uses SoapClientBase::getSoapClient() |
||
| 5738 | * @uses SoapClientBase::setResult() |
||
| 5739 | * @uses SoapClientBase::getResult() |
||
| 5740 | * @uses SoapClientBase::saveLastError() |
||
| 5741 | * @param \Ovh\StructType\TelephonyAbbreviatedNumberModify $parameters |
||
| 5742 | * @return \Ovh\StructType\TelephonyAbbreviatedNumberModifyResponse|bool |
||
| 5743 | */ |
||
| 5744 | public function telephonyAbbreviatedNumberModify(\Ovh\StructType\TelephonyAbbreviatedNumberModify $parameters) |
||
| 5745 | { |
||
| 5746 | try { |
||
| 5747 | $this->setResult($this->getSoapClient()->__soapCall('telephonyAbbreviatedNumberModify', array( |
||
| 5748 | $parameters, |
||
| 5749 | ), array(), array(), $this->outputHeaders)); |
||
| 5750 | return $this->getResult(); |
||
| 5751 | } catch (\SoapFault $soapFault) { |
||
| 5752 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5753 | return false; |
||
| 5754 | } |
||
| 5755 | } |
||
| 5756 | /** |
||
| 5757 | * Method to call the operation originally named |
||
| 5758 | * telephonyOfferSimultaneousLinesModify |
||
| 5759 | * @uses SoapClientBase::getSoapClient() |
||
| 5760 | * @uses SoapClientBase::setResult() |
||
| 5761 | * @uses SoapClientBase::getResult() |
||
| 5762 | * @uses SoapClientBase::saveLastError() |
||
| 5763 | * @param \Ovh\StructType\TelephonyOfferSimultaneousLinesModify $parameters |
||
| 5764 | * @return \Ovh\StructType\TelephonyOfferSimultaneousLinesModifyResponse|bool |
||
| 5765 | */ |
||
| 5766 | public function telephonyOfferSimultaneousLinesModify(\Ovh\StructType\TelephonyOfferSimultaneousLinesModify $parameters) |
||
| 5767 | { |
||
| 5768 | try { |
||
| 5769 | $this->setResult($this->getSoapClient()->__soapCall('telephonyOfferSimultaneousLinesModify', array( |
||
| 5770 | $parameters, |
||
| 5771 | ), array(), array(), $this->outputHeaders)); |
||
| 5772 | return $this->getResult(); |
||
| 5773 | } catch (\SoapFault $soapFault) { |
||
| 5774 | $this->saveLastError(__METHOD__, $soapFault); |
||
| 5775 | return false; |
||
| 5776 | } |
||
| 5777 | } |
||
| 5778 | /** |
||
| 5779 | * Returns the result |
||
| 5780 | * @see SoapClientBase::getResult() |
||
| 5781 | * @return \Ovh\ArrayType\TelephonyGetClosureEventsAsArrayResponse|\Ovh\StructType\TelephonyAbbreviatedNumberAddResponse|\Ovh\StructType\TelephonyAbbreviatedNumberDelResponse|\Ovh\StructType\TelephonyAbbreviatedNumberListPaginatedResponse|\Ovh\StructType\TelephonyAbbreviatedNumberListResponse|\Ovh\StructType\TelephonyAbbreviatedNumberModifyResponse|\Ovh\StructType\TelephonyAbbreviatedNumberOnGroupAddResponse|\Ovh\StructType\TelephonyAbbreviatedNumberOnGroupDelResponse|\Ovh\StructType\TelephonyAbbreviatedNumberOnGroupListResponse|\Ovh\StructType\TelephonyAbbreviatedNumberOnGroupModifyResponse|\Ovh\StructType\TelephonyAliasToSipOfferResponse|\Ovh\StructType\TelephonyAliasToSipPossibilitiesResponse|\Ovh\StructType\TelephonyBillDetailsCSVResponse|\Ovh\StructType\TelephonyBillDetailsResponse|\Ovh\StructType\TelephonyBillingAccountAddResponse|\Ovh\StructType\TelephonyBillingAccountConsumptionCSVByMailResponse|\Ovh\StructType\TelephonyBillingAccountDelResponse|\Ovh\StructType\TelephonyBillingAccountDescriptionModifyResponse|\Ovh\StructType\TelephonyBillingAccountInfoResponse|\Ovh\StructType\TelephonyBillingAccountListResponse|\Ovh\StructType\TelephonyBillingAccountSetResponse|\Ovh\StructType\TelephonyBillingAccountSummaryResponse|\Ovh\StructType\TelephonyBillListResponse|\Ovh\StructType\TelephonyCallListResponse|\Ovh\StructType\TelephonyChangeNicModifyResponse|\Ovh\StructType\TelephonyClick2CallDoBySessionResponse|\Ovh\StructType\TelephonyClick2CallDoResponse|\Ovh\StructType\TelephonyClick2CallUserAddResponse|\Ovh\StructType\TelephonyClick2CallUserDelResponse|\Ovh\StructType\TelephonyClick2CallUserListResponse|\Ovh\StructType\TelephonyClick2CallUserPasswordResponse|\Ovh\StructType\TelephonyConferenceActionResponse|\Ovh\StructType\TelephonyConferenceGetInfosResponse|\Ovh\StructType\TelephonyConferenceGetParamsResponse|\Ovh\StructType\TelephonyConferenceSetAnnounceFileResponse|\Ovh\StructType\TelephonyConferenceSetParamsResponse|\Ovh\StructType\TelephonyDdiInfoResponse|\Ovh\StructType\TelephonyDdiModifyResponse|\Ovh\StructType\TelephonyDefaultPrivateHolidaysEventsResponse|\Ovh\StructType\TelephonyDelClosureEventsResponse|\Ovh\StructType\TelephonyDeleteLineResponse|\Ovh\StructType\TelephonyDepositMovementModifyResponse|\Ovh\StructType\TelephonyDirectoryInfoGetSameSiretResponse|\Ovh\StructType\TelephonyDirectoryInfoGetSiretResponse|\Ovh\StructType\TelephonyDirectoryInfoResponse|\Ovh\StructType\TelephonyDirectoryListWayTypeResponse|\Ovh\StructType\TelephonyDirectoryModifyAddressResponse|\Ovh\StructType\TelephonyDirectoryModifyPublicationResponse|\Ovh\StructType\TelephonyDirectoryPJCodeResponse|\Ovh\StructType\TelephonyFaxCallListResponse|\Ovh\StructType\TelephonyFaxCampaignCreationResponse|\Ovh\StructType\TelephonyFaxCampaignDeleteResponse|\Ovh\StructType\TelephonyFaxCampaignDetailsResponse|\Ovh\StructType\TelephonyFaxCampaignListResponse|\Ovh\StructType\TelephonyFaxCampaignStartStopResponse|\Ovh\StructType\TelephonyFaxHistoryResponse|\Ovh\StructType\TelephonyFaxModifyPasswordResponse|\Ovh\StructType\TelephonyFaxOptionsListResponse|\Ovh\StructType\TelephonyFaxOptionsModifyResponse|\Ovh\StructType\TelephonyFaxSendResponse|\Ovh\StructType\TelephonyFMHuntingModificationAnonymousCallRejectionResponse|\Ovh\StructType\TelephonyFMHuntingModificationMembersResponse|\Ovh\StructType\TelephonyFMHuntingModificationModeResponse|\Ovh\StructType\TelephonyFMHuntingModificationSimultaneousCallsResponse|\Ovh\StructType\TelephonyFMHuntingModificationVoicemailResponse|\Ovh\StructType\TelephonyFreefaxToVoicefaxCheckListResponse|\Ovh\StructType\TelephonyFreefaxToVoicefaxResponse|\Ovh\StructType\TelephonyFunctionKeyAddResponse|\Ovh\StructType\TelephonyFunctionKeyDelResponse|\Ovh\StructType\TelephonyFunctionKeyListResponse|\Ovh\StructType\TelephonyFunctionKeyModifyResponse|\Ovh\StructType\TelephonyGetCitiesFromZipResponse|\Ovh\StructType\TelephonyGetClosureEventsAsICSResponse|\Ovh\StructType\TelephonyGetDefaultPrivateHolidaysEventsResponse|\Ovh\StructType\TelephonyGetTimeZoneNumberResponse|\Ovh\StructType\TelephonyHuntingGenericScreenListResponse|\Ovh\StructType\TelephonyHuntingGenericScreenOptionsModifyResponse|\Ovh\StructType\TelephonyHuntingGenericScreenOptionsResponse|\Ovh\StructType\TelephonyHuntingGenericScreenSetResponse|\Ovh\StructType\TelephonyHuntingGenericScreenStatusModifyResponse|\Ovh\StructType\TelephonyHuntingGenericScreenStatusResponse|\Ovh\StructType\TelephonyHuntingGroupListResponse|\Ovh\StructType\TelephonyHuntingInfoResponse|\Ovh\StructType\TelephonyHuntingModificationAnonymousCallRejectionResponse|\Ovh\StructType\TelephonyHuntingModificationMembersResponse|\Ovh\StructType\TelephonyHuntingModificationModeResponse|\Ovh\StructType\TelephonyHuntingModificationQueueResponse|\Ovh\StructType\TelephonyHuntingModificationSimultaneousCallsResponse|\Ovh\StructType\TelephonyLineConsumptionCSVByMailResponse|\Ovh\StructType\TelephonyLineDetailsResponse|\Ovh\StructType\TelephonyLineGetCodecsResponse|\Ovh\StructType\TelephonyLineGetIpRestrictionResponse|\Ovh\StructType\TelephonyLineGetMgcpIpRestrictionResponse|\Ovh\StructType\TelephonyLineGetOfferPricesResponse|\Ovh\StructType\TelephonyLineGetSipDomainResponse|\Ovh\StructType\TelephonyLineListResponse|\Ovh\StructType\TelephonyLineLogsNotificationOptionsModifyResponse|\Ovh\StructType\TelephonyLineLogsNotificationOptionsResponse|\Ovh\StructType\TelephonyLineLogsOnGroupResponse|\Ovh\StructType\TelephonyLineLogsResponse|\Ovh\StructType\TelephonyLineOptionsListResponse|\Ovh\StructType\TelephonyLineOptionsModifyResponse|\Ovh\StructType\TelephonyLineOrderResponse|\Ovh\StructType\TelephonyLineSetCodecsResponse|\Ovh\StructType\TelephonyLineSetIpRestrictionResponse|\Ovh\StructType\TelephonyLineSetMgcpIpRestrictionResponse|\Ovh\StructType\TelephonyLineSetSipDomainResponse|\Ovh\StructType\TelephonyLineSwitchOfferPossibilityResponse|\Ovh\StructType\TelephonyLineSwitchOfferResponse|\Ovh\StructType\TelephonyLineSwitchOldOfferPossibilityResponse|\Ovh\StructType\TelephonyLineSwitchOldOfferResponse|\Ovh\StructType\TelephonyListReversableCallsFromNumberResponse|\Ovh\StructType\TelephonyListSummationCallsFromBillingAccountResponse|\Ovh\StructType\TelephonyListSummationCallsFromNumberResponse|\Ovh\StructType\TelephonyNicGetIpRestrictionResponse|\Ovh\StructType\TelephonyNicGetMgcpIpRestrictionResponse|\Ovh\StructType\TelephonyNicGetSipDomainResponse|\Ovh\StructType\TelephonyNicSetIpRestrictionResponse|\Ovh\StructType\TelephonyNicSetMgcpIpRestrictionResponse|\Ovh\StructType\TelephonyNicSetSipDomainResponse|\Ovh\StructType\TelephonyNumberCityForZoneListResponse|\Ovh\StructType\TelephonyNumberCleanResponse|\Ovh\StructType\TelephonyNumberCustomListResponse|\Ovh\StructType\TelephonyNumberGetBillingAccountResponse|\Ovh\StructType\TelephonyNumberGetFrWayNamesFromInseeResponse|\Ovh\StructType\TelephonyNumberInfoResponse|\Ovh\StructType\TelephonyNumberModifyResponse|\Ovh\StructType\TelephonyNumberOrderResponse|\Ovh\StructType\TelephonyNumberZoneAndPrefixListResponse|\Ovh\StructType\TelephonyOfferInfoResponse|\Ovh\StructType\TelephonyOfferModifyNameResponse|\Ovh\StructType\TelephonyOfferModifyPasswordResponse|\Ovh\StructType\TelephonyOfferSimultaneousLinesModifyResponse|\Ovh\StructType\TelephonyOrdersFollowingUpResponse|\Ovh\StructType\TelephonyPhonebookAddResponse|\Ovh\StructType\TelephonyPhonebookContactAddResponse|\Ovh\StructType\TelephonyPhonebookContactDelResponse|\Ovh\StructType\TelephonyPhonebookContactListResponse|\Ovh\StructType\TelephonyPhonebookContactModifyResponse|\Ovh\StructType\TelephonyPhonebookDelResponse|\Ovh\StructType\TelephonyPhonebookGroupListResponse|\Ovh\StructType\TelephonyPhonebookListResponse|\Ovh\StructType\TelephonyPhonebookModifyResponse|\Ovh\StructType\TelephonyPhonebookOnGroupAddResponse|\Ovh\StructType\TelephonyPhonebookOnGroupContactAddResponse|\Ovh\StructType\TelephonyPhonebookOnGroupContactDelResponse|\Ovh\StructType\TelephonyPhonebookOnGroupContactListResponse|\Ovh\StructType\TelephonyPhonebookOnGroupContactModifyResponse|\Ovh\StructType\TelephonyPhonebookOnGroupDelResponse|\Ovh\StructType\TelephonyPhonebookOnGroupGroupListResponse|\Ovh\StructType\TelephonyPhonebookOnGroupListResponse|\Ovh\StructType\TelephonyPhonebookOnGroupModifyResponse|\Ovh\StructType\TelephonyPhonebookOnSmsAddResponse|\Ovh\StructType\TelephonyPhonebookOnSmsContactAddResponse|\Ovh\StructType\TelephonyPhonebookOnSmsContactDelResponse|\Ovh\StructType\TelephonyPhonebookOnSmsContactListResponse|\Ovh\StructType\TelephonyPhonebookOnSmsContactModifyResponse|\Ovh\StructType\TelephonyPhonebookOnSmsDelResponse|\Ovh\StructType\TelephonyPhonebookOnSmsListResponse|\Ovh\StructType\TelephonyPhonebookOnSmsModifyResponse|\Ovh\StructType\TelephonyPhonebookSharePeerListResponse|\Ovh\StructType\TelephonyPhonebookShareResponse|\Ovh\StructType\TelephonyPlugAndPhoneInfoResponse|\Ovh\StructType\TelephonyPlugAndPhoneOperationResponse|\Ovh\StructType\TelephonyPlugAndPhoneResetResponse|\Ovh\StructType\TelephonyPlugAndPhoneSkinModifyResponse|\Ovh\StructType\TelephonyPortabilityOrderResponse|\Ovh\StructType\TelephonyPortabilityOrderSpecialNumberResponse|\Ovh\StructType\TelephonyPortabilityStatusResponse|\Ovh\StructType\TelephonyRatesListCsvResponse|\Ovh\StructType\TelephonyRatesListResponse|\Ovh\StructType\TelephonyRedirectInfoResponse|\Ovh\StructType\TelephonyRedirectModifyResponse|\Ovh\StructType\TelephonyRestrictionListResponse|\Ovh\StructType\TelephonyRestrictionModifyResponse|\Ovh\StructType\TelephonyReversmentsRefundFromBillingAccountResponse|\Ovh\StructType\TelephonyReversmentsRefundIsPendingResponse|\Ovh\StructType\TelephonyScreenListBlackWhiteChoiceModifyResponse|\Ovh\StructType\TelephonyScreenListBlackWhiteChoiceResponse|\Ovh\StructType\TelephonyScreenListInfoModifyResponse|\Ovh\StructType\TelephonyScreenListInfoResponse|\Ovh\StructType\TelephonySecurityDepositCreditResponse|\Ovh\StructType\TelephonySecurityDepositInfoResponse|\Ovh\StructType\TelephonySetClosureEventsResponse|\Ovh\StructType\TelephonySetDefaultPrivateHolidaysEventsResponse|\Ovh\StructType\TelephonySetTimeZoneNumberResponse|\Ovh\StructType\TelephonySipToAliasOfferResponse|\Ovh\StructType\TelephonySmsAccountListResponse|\Ovh\StructType\TelephonySmsAddCsvAttachmentResponse|\Ovh\StructType\TelephonySmsBlacklistedSendersDeleteResponse|\Ovh\StructType\TelephonySmsBlacklistedSendersListResponse|\Ovh\StructType\TelephonySmsCancelSendingResponse|\Ovh\StructType\TelephonySmsCreditLeftResponse|\Ovh\StructType\TelephonySmsDeleteCsvAttachmentResponse|\Ovh\StructType\TelephonySmsDeleteResponse|\Ovh\StructType\TelephonySmsGetCallBackResponse|\Ovh\StructType\TelephonySmsGetCsvAttachmentResponse|\Ovh\StructType\TelephonySmsGetQuotaNotificationForUserResponse|\Ovh\StructType\TelephonySmsGetQuotaNotificationResponse|\Ovh\StructType\TelephonySmsGetUserQuotaForUserResponse|\Ovh\StructType\TelephonySmsGetUserQuotaResponse|\Ovh\StructType\TelephonySmsHistoryCsvResponse|\Ovh\StructType\TelephonySmsHistoryResponse|\Ovh\StructType\TelephonySmsListCsvAttachmentResponse|\Ovh\StructType\TelephonySmsMultiSendResponse|\Ovh\StructType\TelephonySmsplusIsFreeKeywordResponse|\Ovh\StructType\TelephonySmsplusSendSmsMtResponse|\Ovh\StructType\TelephonySmsplusServiceAddResponse|\Ovh\StructType\TelephonySmsplusServiceDeleteResponse|\Ovh\StructType\TelephonySmsplusServiceDetailsResponse|\Ovh\StructType\TelephonySmsplusServiceEditResponse|\Ovh\StructType\TelephonySmsplusServiceListResponse|\Ovh\StructType\TelephonySmsplusServiceReversableTicketsListResponse|\Ovh\StructType\TelephonySmsplusServiceReversableTicketsSummaryResponse|\Ovh\StructType\TelephonySmsplusShortCodesListResponse|\Ovh\StructType\TelephonySmsSenderAddResponse|\Ovh\StructType\TelephonySmsSenderDeleteResponse|\Ovh\StructType\TelephonySmsSenderDescriptionResponse|\Ovh\StructType\TelephonySmsSenderListResponse|\Ovh\StructType\TelephonySmsSenderValidateResponse|\Ovh\StructType\TelephonySmsSendResponse|\Ovh\StructType\TelephonySmsSetCallBackResponse|\Ovh\StructType\TelephonySmsSetQuotaNotificationResponse|\Ovh\StructType\TelephonySmsSetUserQuotaResponse|\Ovh\StructType\TelephonySmsUserAddCsvAttachmentResponse|\Ovh\StructType\TelephonySmsUserAddResponse|\Ovh\StructType\TelephonySmsUserCreditLeftResponse|\Ovh\StructType\TelephonySmsUserDeleteCsvAttachmentResponse|\Ovh\StructType\TelephonySmsUserDelResponse|\Ovh\StructType\TelephonySmsUserGetCallBackResponse|\Ovh\StructType\TelephonySmsUserGetCsvAttachmentResponse|\Ovh\StructType\TelephonySmsUserHistoryCsvResponse|\Ovh\StructType\TelephonySmsUserHistoryResponse|\Ovh\StructType\TelephonySmsUserListCsvAttachmentResponse|\Ovh\StructType\TelephonySmsUserListResponse|\Ovh\StructType\TelephonySmsUserMultiSendResponse|\Ovh\StructType\TelephonySmsUserPasswordResponse|\Ovh\StructType\TelephonySmsUserSendResponse|\Ovh\StructType\TelephonySmsUserSetCallBackResponse|\Ovh\StructType\TelephonySpareAddResponse|\Ovh\StructType\TelephonySpareCapabilitiesResponse|\Ovh\StructType\TelephonySpareCreateRMAResponse|\Ovh\StructType\TelephonySpareDelResponse|\Ovh\StructType\TelephonySpareInfoResponse|\Ovh\StructType\TelephonySpareListResponse|\Ovh\StructType\TelephonySparePurchaseResponse|\Ovh\StructType\TelephonySpareReplaceResponse|\Ovh\StructType\TelephonySpareServiceInfoResponse|\Ovh\StructType\TelephonySpareServiceListResponse|\Ovh\StructType\TelephonySpecialNumberCustomListResponse|\Ovh\StructType\TelephonySpecialNumberOrderResponse|\Ovh\StructType\TelephonySviInfoResponse|\Ovh\StructType\TelephonySviModifyResponse|\Ovh\StructType\TelephonyToneDeleteResponse|\Ovh\StructType\TelephonyToneRemoteUploadResponse|\Ovh\StructType\TelephonyTonesOptionsListResponse|\Ovh\StructType\TelephonyTonesOptionsModifyResponse|\Ovh\StructType\TelephonyToneStatusResponse|\Ovh\StructType\TelephonyTrunkExternalDisplayedNumberAddResponse|\Ovh\StructType\TelephonyTrunkExternalDisplayedNumberCheckResponse|\Ovh\StructType\TelephonyTrunkExternalDisplayedNumberDelResponse|\Ovh\StructType\TelephonyTrunkExternalDisplayedNumberListResponse|\Ovh\StructType\TelephonyVoicemailMailboxDeleteResponse|\Ovh\StructType\TelephonyVoicemailMailboxDownloadResponse|\Ovh\StructType\TelephonyVoicemailMailboxListResponse|\Ovh\StructType\TelephonyVoicemailMessageDeleteResponse|\Ovh\StructType\TelephonyVoicemailMessagesDownloadResponse|\Ovh\StructType\TelephonyVoicemailMessagesRemoteUploadResponse|\Ovh\StructType\TelephonyVoicemailMessagesStatusResponse|\Ovh\StructType\TelephonyVoicemailModifyPasswordResponse|\Ovh\StructType\TelephonyVoicemailOptionsListResponse|\Ovh\StructType\TelephonyVoicemailOptionsModifyResponse |
||
| 5782 | */ |
||
| 5783 | public function getResult() |
||
| 5786 | } |
||
| 5787 | } |
||
| 5788 |