Viewing file: BucketOptions.php (1.99 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
/** * This code was generated by * \ / _ _ _| _ _ * | (_)\/(_)(_|\/| |(/_ v1.0.0 * / / */
namespace Twilio\Rest\Verify\V2\Service\RateLimit;
use Twilio\Options; use Twilio\Values;
abstract class BucketOptions { /** * @param int $max Max number of requests. * @param int $interval Number of seconds that the rate limit will be enforced * over. * @return UpdateBucketOptions Options builder */ public static function update(int $max = Values::NONE, int $interval = Values::NONE): UpdateBucketOptions { return new UpdateBucketOptions($max, $interval); } }
class UpdateBucketOptions extends Options { /** * @param int $max Max number of requests. * @param int $interval Number of seconds that the rate limit will be enforced * over. */ public function __construct(int $max = Values::NONE, int $interval = Values::NONE) { $this->options['max'] = $max; $this->options['interval'] = $interval; }
/** * Maximum number of requests permitted in during the interval. * * @param int $max Max number of requests. * @return $this Fluent Builder */ public function setMax(int $max): self { $this->options['max'] = $max; return $this; }
/** * Number of seconds that the rate limit will be enforced over. * * @param int $interval Number of seconds that the rate limit will be enforced * over. * @return $this Fluent Builder */ public function setInterval(int $interval): self { $this->options['interval'] = $interval; return $this; }
/** * Provide a friendly representation * * @return string Machine friendly representation */ public function __toString(): string { $options = \http_build_query(Values::of($this->options), '', ' '); return '[Twilio.Verify.V2.UpdateBucketOptions ' . $options . ']'; } }
|