-
Notifications
You must be signed in to change notification settings - Fork 132
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix PHP 8.2 and Other Related Issues #640
base: master
Are you sure you want to change the base?
Changes from 1 commit
76dc113
591629c
b81fb0b
fad9d56
f4e69f4
c6138da
d580082
959b1a7
475e87f
dd38b0f
6da6e4f
6c17547
a096ea6
ba9a468
96d67ae
c1f8164
ce7d988
87bfb35
c31570d
a12582a
aa87640
156a26d
089bff7
964ee7e
596cca5
cfe79c5
d77e72b
85d3080
27520ac
d3f2448
6dc14ea
0149fb7
f205667
275dfda
87f0929
ed80f9f
6b9f10f
f5303e0
3f3e135
91ca58a
586b770
0268830
beac573
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,23 @@ class PayIn extends Transaction | |
*/ | ||
public $CreditedWalletId; | ||
|
||
/** | ||
* The mode applied for the 3DS protocol for CB, Visa, and Mastercard. | ||
* Default values: DEFAULT. Allowed values: DEFAULT, FORCE, NO_CHOICE | ||
* | ||
* @var string | ||
*/ | ||
public $SecureMode; | ||
|
||
/** | ||
* The 3DS protocol version to be applied to the transaction. Allowing values: V1, V2_1 | ||
* | ||
* @see https://mangopay.com/docs/concepts/payments/payment-methods/card/3ds | ||
* @see https://mangopay.com/docs/endpoints/direct-card-payins#direct-card-payin-object | ||
* @var string | ||
*/ | ||
public $Requested3DSVersion; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What is the reason for adding this to the PayIn class? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This property was identified in both the documentation and PHP SDK. I verified its existence through debug logs and implemented it accordingly. |
||
|
||
/** | ||
* PaymentType {CARD, BANK_WIRE, DIRECT_DEBIT, PAYPAL, PAYCONIQ } | ||
* @var string | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What is the reason for adding this to the PayIn class?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This property was identified in both the documentation and PHP SDK. I verified its existence through debug logs and implemented it accordingly.