-
Notifications
You must be signed in to change notification settings - Fork 40
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
ac75764
commit 465eb24
Showing
33 changed files
with
433 additions
and
52 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
<?php | ||
|
||
namespace Checkout\Common; | ||
|
||
final class AccountChangeIndicatorType | ||
{ | ||
public static $lessThanThirtyDays = "less_than_thirty_days"; | ||
public static $moreThanSixtyDays = "more_than_sixty_days"; | ||
public static $thirtyToSixtyDays = "thirty_to_sixty_days"; | ||
public static $thisTransaction = "this_transaction"; | ||
} |
12 changes: 12 additions & 0 deletions
12
lib/Checkout/Common/AccountPasswordChangeIndicatorType.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
namespace Checkout\Common; | ||
|
||
final class AccountPasswordChangeIndicatorType | ||
{ | ||
public static $lessThanThirtyDays = "less_than_thirty_days"; | ||
public static $moreThanSixtyDays = "more_than_sixty_days"; | ||
public static $noChange = "no_change"; | ||
public static $thirtyToSixtyDays = "thirty_to_sixty_days"; | ||
public static $thisTransaction = "this_transaction"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
<?php | ||
|
||
namespace Checkout\Common; | ||
|
||
final class AccountTypeCardProductType | ||
{ | ||
public static $credit = "credit"; | ||
public static $debit = "debit"; | ||
public static $notApplicable = "not_applicable"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?php | ||
|
||
namespace Checkout\Common; | ||
|
||
final class CardholderAccountAgeIndicatorType | ||
{ | ||
public static $lessThanThirtyDays = "less_than_thirty_days"; | ||
public static $moreThanSixtyDays = "more_than_sixty_days"; | ||
public static $noAccount = "no_account"; | ||
public static $thirtyToSixtyDays = "thirty_to_sixty_days"; | ||
public static $thisTransaction = "this_transaction"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
lib/Checkout/Sessions/Channel/MerchantInitiatedSession.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
<?php | ||
|
||
namespace Checkout\Sessions\Channel; | ||
|
||
final class MerchantInitiatedSession extends ChannelData | ||
{ | ||
public function __construct() | ||
{ | ||
parent::__construct(ChannelType::$merchant_initiated); | ||
} | ||
|
||
/** | ||
* @var string value of RequestType | ||
*/ | ||
public $request_type; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
namespace Checkout\Sessions\Channel; | ||
|
||
final class RequestType | ||
{ | ||
public static $account_verification = "account_verification"; | ||
public static $add_card = "add_card"; | ||
public static $installment_transaction = "installment_transaction"; | ||
public static $mail_order = "mail_order"; | ||
public static $maintain_card_information = "maintain_card_information"; | ||
public static $other_payment = "other_payment"; | ||
public static $recurring_transaction = "recurring_transaction"; | ||
public static $split_or_delayed_shipment = "split_or_delayed_shipment"; | ||
public static $telephone_order = "telephone_order"; | ||
public static $top_up = "top_up"; | ||
public static $whitelist_status_check = "whitelist_status_check"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
<?php | ||
|
||
namespace Checkout\Sessions; | ||
|
||
class InitialTransaction | ||
{ | ||
/** | ||
* @var string | ||
*/ | ||
public $acs_transaction_id; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
public $authentication_method; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
public $authentication_timestamp; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
public $authentication_data; | ||
|
||
/** | ||
* @var string | ||
*/ | ||
public $initial_session_id; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.