You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* @param string|null $airlinePassengerTelephoneNumber The passenger's telephone number, including country code. This is an alphanumeric field that can include the '+' and '-' signs. * Encoding: ASCII * minLength: 3 characters * maxLength: 30 characters
1019
+
* @param string|null $airlinePassengerPhoneNumber The passenger's phone number, including country code. This is an alphanumeric field that can include the '+' and '-' signs. * Encoding: ASCII * minLength: 3 characters * maxLength: 30 characters
@@ -476,6 +490,30 @@ public function setAuthorisationType($authorisationType)
476
490
return$this;
477
491
}
478
492
493
+
/**
494
+
* Gets autoRescue
495
+
*
496
+
* @return string|null
497
+
*/
498
+
publicfunctiongetAutoRescue()
499
+
{
500
+
return$this->container['autoRescue'];
501
+
}
502
+
503
+
/**
504
+
* Sets autoRescue
505
+
*
506
+
* @param string|null $autoRescue Set to **true** to enable [Auto Rescue](https://docs.adyen.com/online-payments/auto-rescue/) for a transaction. Use the `maxDaysToRescue` to specify a rescue window.
507
+
*
508
+
* @return self
509
+
*/
510
+
publicfunctionsetAutoRescue($autoRescue)
511
+
{
512
+
$this->container['autoRescue'] = $autoRescue;
513
+
514
+
return$this;
515
+
}
516
+
479
517
/**
480
518
* Gets customRoutingFlag
481
519
*
@@ -558,6 +596,30 @@ public function setManualCapture($manualCapture)
558
596
return$this;
559
597
}
560
598
599
+
/**
600
+
* Gets maxDaysToRescue
601
+
*
602
+
* @return string|null
603
+
*/
604
+
publicfunctiongetMaxDaysToRescue()
605
+
{
606
+
return$this->container['maxDaysToRescue'];
607
+
}
608
+
609
+
/**
610
+
* Sets maxDaysToRescue
611
+
*
612
+
* @param string|null $maxDaysToRescue The rescue window for a transaction, in days, when `autoRescue` is set to **true**. You can specify a value between 1 and 48. * For [cards](https://docs.adyen.com/online-payments/auto-rescue/cards/), the default is one calendar month. * For [SEPA](https://docs.adyen.com/online-payments/auto-rescue/sepa/), the default is 42 days.
0 commit comments