Skip to content

Commit

Permalink
Merge pull request #68 from Adyen/develop
Browse files Browse the repository at this point in the history
Support Paypal smart overlay in payment action response object (#67)
  • Loading branch information
KadoBOT authored Jun 23, 2020
2 parents e84f146 + f911639 commit 4386f1c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/checkout/model_checkout_payments_action.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,6 @@ type CheckoutPaymentsAction struct {
Type string `json:"type,omitempty"`
// Specifies the URL to redirect to.
Url string `json:"url,omitempty"`
// SDK data for type "sdk"
SDKData *SDKData `json:"sdkData,omitempty"`
}
5 changes: 5 additions & 0 deletions src/checkout/model_sdkdata.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
package checkout

type SDKData struct {
Token string `json:"token,omitempty"`
}

0 comments on commit 4386f1c

Please sign in to comment.