Skip to content

Commit

Permalink
Remove Incorrect Idempotency Key in create checkout template
Browse files Browse the repository at this point in the history
  • Loading branch information
aashwin-rvvup committed Nov 19, 2024
1 parent 962e09b commit 1a45d8d
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/Rest/CheckoutTemplates.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,12 @@ public function __construct(RvvupClient $client)

/**
* @param CheckoutTemplateCreateInput $input
* @param string|null $idempotencyKey
* @return CheckoutTemplate
* @throws ApiException
*/
public function create(CheckoutTemplateCreateInput $input, ?string $idempotencyKey): CheckoutTemplate
public function create(CheckoutTemplateCreateInput $input): CheckoutTemplate
{
return $this->api->createCheckoutTemplate($this->client->getMerchantId(), $input, $idempotencyKey);
return $this->api->createCheckoutTemplate($this->client->getMerchantId(), $input);
}

/**
Expand Down

0 comments on commit 1a45d8d

Please sign in to comment.