Files
grzanieplus.pl/plugins/stEservice2Plugin/vendor/eservice-sdk/lib/Request/Action/Tokenize.php
2025-03-12 17:06:23 +01:00

21 lines
653 B
PHP

<?php
namespace Eservice;
class RequestActionTokenize extends RequestAction
{
protected $_params = [
"merchantId" => ["type" => "mandatory"],
"token" => ["type" => "mandatory"],
"number" => ["type" => "mandatory"],
"nameOnCard" => ["type" => "mandatory"],
"expiryMonth" => ["type" => "mandatory"],
"expiryYear" => ["type" => "mandatory"],
"startMonth" => ["type" => "optional"],
"startYear" => ["type" => "optional"],
"issueNumber" => ["type" => "optional"],
"cardDescription" => ["type" => "optional"],
];
}