setIdempotencyKey() 공개 메소드

Sets the idempotency key.
public setIdempotencyKey ( string $idempotencyKey )
$idempotencyKey string
예제 #1
0
파일: Stripe.php 프로젝트: squigg/stripe
 /**
  * Sets the idempotency key.
  *
  * @param  string  $idempotencyKey
  * @return $this
  */
 public function idempotent($idempotencyKey)
 {
     $this->config->setIdempotencyKey($idempotencyKey);
     return $this;
 }