1
0

Automated commit message

This commit is contained in:
PayPalServerSDKs
2024-11-21 17:43:29 +00:00
parent de24c9e488
commit 00fde18df4
48 changed files with 2092 additions and 858 deletions

View File

@@ -11,6 +11,7 @@ declare(strict_types=1);
namespace PaypalServerSdkLib\Models\Builders;
use Core\Utils\CoreHelper;
use PaypalServerSdkLib\Models\GooglePayCard;
use PaypalServerSdkLib\Models\GooglePayDecryptedTokenData;
/**
@@ -33,9 +34,9 @@ class GooglePayDecryptedTokenDataBuilder
/**
* Initializes a new google pay decrypted token data Builder object.
*/
public static function init(string $paymentMethod, string $authenticationMethod): self
public static function init(string $paymentMethod, GooglePayCard $card, string $authenticationMethod): self
{
return new self(new GooglePayDecryptedTokenData($paymentMethod, $authenticationMethod));
return new self(new GooglePayDecryptedTokenData($paymentMethod, $card, $authenticationMethod));
}
/**