This repository has been archived by the owner on Dec 19, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 154
Added description BraintreeInput #909
Merged
magento-engcom-team
merged 4 commits into
magento:2.3-develop
from
sedonik:description-braintreeinput
Sep 25, 2019
Merged
Changes from 1 commit
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
3a56634
Added description BraintreeInput
sedonik 9bb976c
Update descriptions BraintreeInput
sedonik d3cbe27
Update app/code/Magento/BraintreeGraphQl/etc/schema.graphqls
sedonik 2ff66af
Update app/code/Magento/BraintreeGraphQl/etc/schema.graphqls
sedonik File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 |
---|---|---|
|
@@ -11,9 +11,9 @@ input PaymentMethodInput { | |
} | ||
|
||
input BraintreeInput { | ||
payment_method_nonce: String! | ||
is_active_payment_token_enabler: Boolean! | ||
device_data: String | ||
payment_method_nonce: String! @doc(description:"Required input for Braintrees payments") | ||
is_active_payment_token_enabler: Boolean! @doc(description:"Required input for Braintrees payments") | ||
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 field is required only if Vault is enabled for Braintree payment integration. The |
||
device_data: String @doc(description:"Additional information for Braintrees payments") | ||
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. The |
||
} | ||
|
||
input BraintreeCcVaultInput { | ||
|
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Unfortunately, the added description doesn't explain the field purpose.
The
payment_method_nonce
is a one-time payment token generated by Braintree payment gateway based on card details and this token is required to make sale transaction.