Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions src/GatewayRequest.php
Original file line number Diff line number Diff line change
Expand Up @@ -775,6 +775,21 @@ static function APPLE_PAY_TOKEN()
return "APPLEPAYTOKEN";
}

static function PAY_TYPE()
{
return "payType";
}

static function PAY_VALIDITY()
{
return "payValidity";
}

static function PAY_DESCRIPTION()
{
return "payDescription";
}

static function PAY_TOKEN()
{
return "payToken";
Expand Down
20 changes: 20 additions & 0 deletions src/GatewayResponse.php
Original file line number Diff line number Diff line change
Expand Up @@ -494,6 +494,26 @@ static function MERCHANT_ADVICE_CODE()
return "merchantAdviceCode";
}

static function PAY_TYPE()
{
return "payType";
}

static function PAY_STATUS()
{
return "payStatus";
}

static function PAY_CODE()
{
return "payCode";
}

static function PAY_QR_CODE()
{
return "payQrCode";
}

static function PAYMENT_LINK_URL()
{
return "PAYMENT_LINK_URL";
Expand Down