You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: app/code/Magento/PaypalGraphQl/etc/schema.graphqls
+5-5Lines changed: 5 additions & 5 deletions
Original file line number
Diff line number
Diff line change
@@ -32,11 +32,11 @@ type PayflowLinkToken @doc(description:"Contains information used to generate Pa
32
32
paypal_url: String@doc(description:"PayPal URL used for requesting Payflow form")
33
33
}
34
34
35
-
typeHostedProUrl {
35
+
typeHostedProUrl@doc(desription("Contains secure URL used for Payments Pro Hosted Solution payment method.") {
36
36
secure_form_url: String@doc(description:"Secure Url generated by PayPal")
37
37
}
38
38
39
-
inputHostedProUrlInput {
39
+
inputHostedProUrlInput@doc(description:"The required input to request the secure URL for Payments Pro Hosted Solution payment."){
40
40
cart_id: String!@doc(description:"The unique ID that identifies the customer's cart")
41
41
}
42
42
@@ -48,9 +48,9 @@ input PaymentMethodInput {
48
48
hosted_pro: HostedProInput@doc(description:"Required input for PayPal Hosted pro payments")
49
49
}
50
50
51
-
inputHostedProInput {
52
-
return_url: String!@doc(description:"The URL PayPal will redirect back to upon payment success")
53
-
cancel_url: String!@doc(description:"The URL PayPal will redirect back to upon payment cancellation")
51
+
inputHostedProInput@doc(description:"Required input for Payments Pro Hosted Solution payment method.") {
52
+
return_url: String!@doc(description:"The relative URL of the final confirmation page that PayPal will redirect to upon payment success. If the full URL to this page is https://www.example.com/paypal/action/return.html, the relative URL is paypal/action/return.html.")
53
+
cancel_url: String!@doc(description:"The relative URL of the page that PayPal will redirect to when the buyer cancels the transaction in order to choose a different payment method. If the full URL to this page is https://www.example.com/paypal/action/cancel.html, the relative URL is paypal/action/cancel.html.")
54
54
}
55
55
56
56
inputPaypalExpressInput@doc(description:"Required input for Express Checkout and Payments Standard payments") {
0 commit comments