setIdempotencyKey() public method

Sets the idempotency key.
public setIdempotencyKey ( string $idempotencyKey )
$idempotencyKey string
Beispiel #1
0
 /**
  * Sets the idempotency key.
  *
  * @param  string  $idempotencyKey
  * @return $this
  */
 public function idempotent($idempotencyKey)
 {
     $this->config->setIdempotencyKey($idempotencyKey);
     return $this;
 }