Skip to content

Commit 92bd66f

Browse files
committed
magento/graphql-ce#882: [PayPal] Rename PaypalExpressToken type
1 parent 41890d6 commit 92bd66f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

app/code/Magento/PaypalGraphQl/etc/schema.graphqls

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ input PaypalExpressTokenInput @doc(description: "Defines the attributes required
2020
express_button: Boolean @doc(description: "Indicates whether the buyer selected the quick checkout button. The default value is false")
2121
}
2222

23-
type PaypalExpressToken @doc(description: "Deprecated: use type PaypalExpressTokenOutput instead") {
24-
token: String @deprecated(reason: "Use field `token` of type PaypalExpressTokenOutput instead") @doc(description:"The token returned by PayPal")
25-
paypal_urls: PaypalExpressUrlList @deprecated(reason: "Use field `PaypalExpressUrlList` of type PaypalExpressTokenOutput instead") @doc(description:"A set of URLs that allow the buyer to authorize payment and adjust checkout details")
23+
type PaypalExpressToken @doc(description: "Deprecated: use type `PaypalExpressTokenOutput` instead") {
24+
token: String @deprecated(reason: "Use field `token` of type `PaypalExpressTokenOutput` instead") @doc(description:"The token returned by PayPal")
25+
paypal_urls: PaypalExpressUrlList @deprecated(reason: "Use field `paypal_urls` of type `PaypalExpressTokenOutput` instead") @doc(description:"A set of URLs that allow the buyer to authorize payment and adjust checkout details")
2626
}
2727

2828
type PaypalExpressTokenOutput @doc(description: "Contains the token returned by PayPal and a set of URLs that allow the buyer to authorize payment and adjust checkout details. Applies to Express Checkout and Payments Standard payment methods.") {

0 commit comments

Comments
 (0)