php/src/Exceptions/ThrottlingException.php (15 lines of code) (raw):

<?php // This file is auto-generated, don't edit it. Thanks. namespace Darabonba\OpenApi\Exceptions; use AlibabaCloud\Dara\Exception\DaraException; class ThrottlingException extends DaraException { /** * @var int */ protected $retryAfter; public function __construct($map) { parent::__construct($map); $this->retryAfter = $map['retryAfter']; } /** * @return int */ public function getRetryAfter() { return $this->retryAfter; } }