Skip to content
This repository was archived by the owner on Nov 19, 2024. It is now read-only.

Commit 4e65bca

Browse files
authored
Update attribute descriptions (#5653)
1 parent 7cd8a8a commit 4e65bca

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

guides/v2.3/graphql/mutations/create-braintree-client-token.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ contributor_name: Something Digital
55
contributor_link: https://www.somethingdigital.com/
66
---
77

8-
The `createBraintreeClientToken` mutation creates the client token required by the Braintree SDK for nonce generation.
8+
The `createBraintreeClientToken` mutation creates the client token for Braintree Javascript SDK initialization.
99

1010
## Syntax
1111

guides/v2.3/graphql/mutations/set-payment-place-order.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ redirect from:
77
- /guides/v2.3/graphql/reference/quote-set-payment-place-order.html
88
---
99

10-
{:.bs-callout-note} The `setPaymentMethodAndPlaceOrder` mutation will be deprecated in the next patch release. Use the `setPaymentMethodOnCart` and `placeOrder` mutations instead. You can run the two methods in the same call if your use case allows it.
10+
{:.bs-callout-info} The `setPaymentMethodAndPlaceOrder` mutation will be deprecated in the next patch release. Use the `setPaymentMethodOnCart` and `placeOrder` mutations instead. You can run the two methods in the same call if your use case allows it.
1111

1212
The `setPaymentMethodAndPlaceOrder` mutation sets the cart payment method and converts the cart into an order. The
1313
mutation returns the resulting order ID. You cannot manage orders with GraphQL, because orders are part of the backend.

guides/v2.3/graphql/payment-methods/braintree.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ The `braintree` object must contain the following attributes:
5353

5454
Attribute | Data Type | Description
5555
--- | --- | ---
56-
`payment_method_nonce` | String! | Required input for Braintree client-side generated nonce
57-
`is_active_payment_token_enabler` | Boolean! | Required input dictating if payment should be stored in `Magento_Vault`
58-
`device_data` | String | Optional. JSON-encoded device data for Kount integration
56+
`payment_method_nonce` | String! | The one-time payment token generated by Braintree payment gateway based on card details. Required field for sale transactions
57+
`is_active_payment_token_enabler` | Boolean! | States whether a customer-entered credit/debit card should be tokenized for later usage. Required only if Vault is enabled for Braintree payment integration
58+
`device_data` | String | Optional. Contains a fingerprint provided by the Braintree JS SDK. It should be sent with sale transaction details to the Braintree payment gateway. Specify a value only if Kount (advanced fraud protection) is enabled for Braintree payment integration
5959

6060
## Example Usage
6161

0 commit comments

Comments
 (0)