diff --git a/Readme.md b/Readme.md index f4eb768b9..c20c70e70 100644 --- a/Readme.md +++ b/Readme.md @@ -68,7 +68,7 @@ The library supports all webhooks under the following model directories: You can use go modules to add our library to your project ```bash -go get github.com/adyen/adyen-go-api-library/v11@v11.0.0 +go get github.com/adyen/adyen-go-api-library/v12@v11.0.0 ``` ## Usage examples @@ -78,9 +78,9 @@ go get github.com/adyen/adyen-go-api-library/v11@v11.0.0 ```go import ( "context" - "github.com/adyen/adyen-go-api-library/v11/src/checkout" - "github.com/adyen/adyen-go-api-library/v11/src/common" - "github.com/adyen/adyen-go-api-library/v11/src/adyen" + "github.com/adyen/adyen-go-api-library/v12/src/checkout" + "github.com/adyen/adyen-go-api-library/v12/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/adyen" ) client := adyen.NewClient(&common.Config{ @@ -100,9 +100,9 @@ res, httpRes, err := service.PaymentsApi.PaymentMethods(context.Background(), re ```go import ( - "github.com/adyen/adyen-go-api-library/v11/src/checkout" - "github.com/adyen/adyen-go-api-library/v11/src/common" - "github.com/adyen/adyen-go-api-library/v11/src/adyen" + "github.com/adyen/adyen-go-api-library/v12/src/checkout" + "github.com/adyen/adyen-go-api-library/v12/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/adyen" ) client := adyen.NewClient(&common.Config{ @@ -123,9 +123,9 @@ res, httpRes, err := service.PaymentsApi.PaymentMethods(context.Background(), re ```go import ( - "github.com/adyen/adyen-go-api-library/v11/src/recurring" - "github.com/adyen/adyen-go-api-library/v11/src/common" - "github.com/adyen/adyen-go-api-library/v11/src/adyen" + "github.com/adyen/adyen-go-api-library/v12/src/recurring" + "github.com/adyen/adyen-go-api-library/v12/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/adyen" ) client := adyen.NewClient(&common.Config{ @@ -153,7 +153,7 @@ In some setups you might need to unmarshal JSON strings to request objects. For ```go import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/checkout" + "github.com/adyen/adyen-go-api-library/v12/src/checkout" ) paymentRequest := checkout.PaymentRequest{} error := json.Unmarshal([]byte("YOUR_JSON_STRING"), &paymentRequest) @@ -164,7 +164,7 @@ error := json.Unmarshal([]byte("YOUR_JSON_STRING"), &paymentRequest) ```go import ( - "github.com/adyen/adyen-go-api-library/v11/src/webhook" + "github.com/adyen/adyen-go-api-library/v12/src/webhook" ) msg, err := webhook.HandleRequest(`{"live": "false", "notificationItems": []}`) @@ -174,9 +174,9 @@ msg, err := webhook.HandleRequest(`{"live": "false", "notificationItems": []}`) ```go import ( - "github.com/adyen/adyen-go-api-library/v11/src/common" - "github.com/adyen/adyen-go-api-library/v11/src/checkout" - "github.com/adyen/adyen-go-api-library/v11/src/adyen" + "github.com/adyen/adyen-go-api-library/v12/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/checkout" + "github.com/adyen/adyen-go-api-library/v12/src/adyen" ) client := adyen.NewClient(&common.Config{ diff --git a/go.mod b/go.mod index 4a118a21f..e088d625d 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/adyen/adyen-go-api-library/v11 +module github.com/adyen/adyen-go-api-library/v12 go 1.13 diff --git a/main.go b/main.go index 0c3fa455f..e7d5bd20a 100644 --- a/main.go +++ b/main.go @@ -9,8 +9,8 @@ package main import ( "fmt" - "github.com/adyen/adyen-go-api-library/v11/src/adyen" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/adyen" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) func main() { diff --git a/main_test.go b/main_test.go index 0f0796a3d..eadcee9b7 100644 --- a/main_test.go +++ b/main_test.go @@ -5,9 +5,9 @@ import ( "strings" "testing" - "github.com/adyen/adyen-go-api-library/v11/src/adyen" - "github.com/adyen/adyen-go-api-library/v11/src/checkout" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/adyen" + "github.com/adyen/adyen-go-api-library/v12/src/checkout" + "github.com/adyen/adyen-go-api-library/v12/src/common" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/src/acswebhook/model_amount.go b/src/acswebhook/model_amount.go index 9aaa3ee85..ef69d2baf 100644 --- a/src/acswebhook/model_amount.go +++ b/src/acswebhook/model_amount.go @@ -11,7 +11,7 @@ package acswebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Amount type satisfies the MappedNullable interface at compile time diff --git a/src/acswebhook/model_authentication_info.go b/src/acswebhook/model_authentication_info.go index 331eeb81f..7cc2f17e1 100644 --- a/src/acswebhook/model_authentication_info.go +++ b/src/acswebhook/model_authentication_info.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AuthenticationInfo type satisfies the MappedNullable interface at compile time diff --git a/src/acswebhook/model_authentication_notification_data.go b/src/acswebhook/model_authentication_notification_data.go index 8f6a1a017..1d7478a06 100644 --- a/src/acswebhook/model_authentication_notification_data.go +++ b/src/acswebhook/model_authentication_notification_data.go @@ -11,7 +11,7 @@ package acswebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AuthenticationNotificationData type satisfies the MappedNullable interface at compile time diff --git a/src/acswebhook/model_authentication_notification_request.go b/src/acswebhook/model_authentication_notification_request.go index f234b9081..754caeb1e 100644 --- a/src/acswebhook/model_authentication_notification_request.go +++ b/src/acswebhook/model_authentication_notification_request.go @@ -11,7 +11,7 @@ package acswebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AuthenticationNotificationRequest type satisfies the MappedNullable interface at compile time diff --git a/src/acswebhook/model_balance_platform_notification_response.go b/src/acswebhook/model_balance_platform_notification_response.go index 25e1bbb22..ab4688c47 100644 --- a/src/acswebhook/model_balance_platform_notification_response.go +++ b/src/acswebhook/model_balance_platform_notification_response.go @@ -11,7 +11,7 @@ package acswebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BalancePlatformNotificationResponse type satisfies the MappedNullable interface at compile time diff --git a/src/acswebhook/model_challenge_info.go b/src/acswebhook/model_challenge_info.go index a56956176..78c7ef5e6 100644 --- a/src/acswebhook/model_challenge_info.go +++ b/src/acswebhook/model_challenge_info.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ChallengeInfo type satisfies the MappedNullable interface at compile time diff --git a/src/acswebhook/model_purchase_info.go b/src/acswebhook/model_purchase_info.go index ed7655409..e7cb8aa14 100644 --- a/src/acswebhook/model_purchase_info.go +++ b/src/acswebhook/model_purchase_info.go @@ -11,7 +11,7 @@ package acswebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PurchaseInfo type satisfies the MappedNullable interface at compile time diff --git a/src/acswebhook/model_resource.go b/src/acswebhook/model_resource.go index a249473f9..b851ae2c1 100644 --- a/src/acswebhook/model_resource.go +++ b/src/acswebhook/model_resource.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Resource type satisfies the MappedNullable interface at compile time diff --git a/src/adyen/api.go b/src/adyen/api.go index 3d0eff9db..bd9f926cf 100644 --- a/src/adyen/api.go +++ b/src/adyen/api.go @@ -10,28 +10,28 @@ import ( "fmt" "net/http" - "github.com/adyen/adyen-go-api-library/v11/src/paymentsapp" - - "github.com/adyen/adyen-go-api-library/v11/src/dataprotection" - - "github.com/adyen/adyen-go-api-library/v11/src/balancecontrol" - "github.com/adyen/adyen-go-api-library/v11/src/balanceplatform" - "github.com/adyen/adyen-go-api-library/v11/src/binlookup" - "github.com/adyen/adyen-go-api-library/v11/src/checkout" - "github.com/adyen/adyen-go-api-library/v11/src/common" - "github.com/adyen/adyen-go-api-library/v11/src/disputes" - "github.com/adyen/adyen-go-api-library/v11/src/legalentity" - "github.com/adyen/adyen-go-api-library/v11/src/management" - "github.com/adyen/adyen-go-api-library/v11/src/payments" - "github.com/adyen/adyen-go-api-library/v11/src/payout" - "github.com/adyen/adyen-go-api-library/v11/src/platformsaccount" - "github.com/adyen/adyen-go-api-library/v11/src/platformsfund" - "github.com/adyen/adyen-go-api-library/v11/src/platformshostedonboardingpage" - "github.com/adyen/adyen-go-api-library/v11/src/platformsnotificationconfiguration" - "github.com/adyen/adyen-go-api-library/v11/src/posterminalmanagement" - "github.com/adyen/adyen-go-api-library/v11/src/recurring" - "github.com/adyen/adyen-go-api-library/v11/src/storedvalue" - "github.com/adyen/adyen-go-api-library/v11/src/transfers" + "github.com/adyen/adyen-go-api-library/v12/src/paymentsapp" + + "github.com/adyen/adyen-go-api-library/v12/src/dataprotection" + + "github.com/adyen/adyen-go-api-library/v12/src/balancecontrol" + "github.com/adyen/adyen-go-api-library/v12/src/balanceplatform" + "github.com/adyen/adyen-go-api-library/v12/src/binlookup" + "github.com/adyen/adyen-go-api-library/v12/src/checkout" + "github.com/adyen/adyen-go-api-library/v12/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/disputes" + "github.com/adyen/adyen-go-api-library/v12/src/legalentity" + "github.com/adyen/adyen-go-api-library/v12/src/management" + "github.com/adyen/adyen-go-api-library/v12/src/payments" + "github.com/adyen/adyen-go-api-library/v12/src/payout" + "github.com/adyen/adyen-go-api-library/v12/src/platformsaccount" + "github.com/adyen/adyen-go-api-library/v12/src/platformsfund" + "github.com/adyen/adyen-go-api-library/v12/src/platformshostedonboardingpage" + "github.com/adyen/adyen-go-api-library/v12/src/platformsnotificationconfiguration" + "github.com/adyen/adyen-go-api-library/v12/src/posterminalmanagement" + "github.com/adyen/adyen-go-api-library/v12/src/recurring" + "github.com/adyen/adyen-go-api-library/v12/src/storedvalue" + "github.com/adyen/adyen-go-api-library/v12/src/transfers" ) // Constants used for the client API diff --git a/src/adyen/api_test.go b/src/adyen/api_test.go index e6fb615c6..87a36604c 100644 --- a/src/adyen/api_test.go +++ b/src/adyen/api_test.go @@ -10,9 +10,9 @@ import ( "testing" "time" - "github.com/adyen/adyen-go-api-library/v11/src/checkout" - "github.com/adyen/adyen-go-api-library/v11/src/common" - "github.com/adyen/adyen-go-api-library/v11/src/recurring" + "github.com/adyen/adyen-go-api-library/v12/src/checkout" + "github.com/adyen/adyen-go-api-library/v12/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/recurring" "github.com/joho/godotenv" "github.com/stretchr/testify/assert" diff --git a/src/balancecontrol/api_general.go b/src/balancecontrol/api_general.go index 9552497d8..7a3a2a19b 100644 --- a/src/balancecontrol/api_general.go +++ b/src/balancecontrol/api_general.go @@ -13,7 +13,7 @@ import ( "net/http" "net/url" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // GeneralApi service diff --git a/src/balancecontrol/model_amount.go b/src/balancecontrol/model_amount.go index cb0f1f081..50035355e 100644 --- a/src/balancecontrol/model_amount.go +++ b/src/balancecontrol/model_amount.go @@ -11,7 +11,7 @@ package balancecontrol import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Amount type satisfies the MappedNullable interface at compile time diff --git a/src/balancecontrol/model_balance_transfer_request.go b/src/balancecontrol/model_balance_transfer_request.go index c5dc9fb7b..a0f871b5a 100644 --- a/src/balancecontrol/model_balance_transfer_request.go +++ b/src/balancecontrol/model_balance_transfer_request.go @@ -11,7 +11,7 @@ package balancecontrol import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BalanceTransferRequest type satisfies the MappedNullable interface at compile time diff --git a/src/balancecontrol/model_balance_transfer_response.go b/src/balancecontrol/model_balance_transfer_response.go index bbd1c46a5..260fa6621 100644 --- a/src/balancecontrol/model_balance_transfer_response.go +++ b/src/balancecontrol/model_balance_transfer_response.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BalanceTransferResponse type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/api_account_holders.go b/src/balanceplatform/api_account_holders.go index b1d9345c2..0fa2a4fb5 100644 --- a/src/balanceplatform/api_account_holders.go +++ b/src/balanceplatform/api_account_holders.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // AccountHoldersApi service diff --git a/src/balanceplatform/api_balance_accounts.go b/src/balanceplatform/api_balance_accounts.go index 955bd761f..7496f2e42 100644 --- a/src/balanceplatform/api_balance_accounts.go +++ b/src/balanceplatform/api_balance_accounts.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // BalanceAccountsApi service diff --git a/src/balanceplatform/api_bank_account_validation.go b/src/balanceplatform/api_bank_account_validation.go index 894c0e9dc..1f316572c 100644 --- a/src/balanceplatform/api_bank_account_validation.go +++ b/src/balanceplatform/api_bank_account_validation.go @@ -15,7 +15,7 @@ import ( "net/http" "net/url" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // BankAccountValidationApi service diff --git a/src/balanceplatform/api_card_orders.go b/src/balanceplatform/api_card_orders.go index c11cf2b03..a26d4037e 100644 --- a/src/balanceplatform/api_card_orders.go +++ b/src/balanceplatform/api_card_orders.go @@ -17,7 +17,7 @@ import ( "strings" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // CardOrdersApi service diff --git a/src/balanceplatform/api_grant_accounts.go b/src/balanceplatform/api_grant_accounts.go index 12e239424..5cc8f3bde 100644 --- a/src/balanceplatform/api_grant_accounts.go +++ b/src/balanceplatform/api_grant_accounts.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // GrantAccountsApi service diff --git a/src/balanceplatform/api_grant_offers.go b/src/balanceplatform/api_grant_offers.go index 2ea8729b4..e9de080c1 100644 --- a/src/balanceplatform/api_grant_offers.go +++ b/src/balanceplatform/api_grant_offers.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // GrantOffersApi service diff --git a/src/balanceplatform/api_manage_card_pin.go b/src/balanceplatform/api_manage_card_pin.go index a04c828c2..9a490ca26 100644 --- a/src/balanceplatform/api_manage_card_pin.go +++ b/src/balanceplatform/api_manage_card_pin.go @@ -15,7 +15,7 @@ import ( "net/http" "net/url" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // ManageCardPINApi service diff --git a/src/balanceplatform/api_manage_sca_devices.go b/src/balanceplatform/api_manage_sca_devices.go index 9e7f8a781..d14e7901b 100644 --- a/src/balanceplatform/api_manage_sca_devices.go +++ b/src/balanceplatform/api_manage_sca_devices.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // ManageSCADevicesApi service diff --git a/src/balanceplatform/api_network_tokens.go b/src/balanceplatform/api_network_tokens.go index 8e3e79262..7e0e4387a 100644 --- a/src/balanceplatform/api_network_tokens.go +++ b/src/balanceplatform/api_network_tokens.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // NetworkTokensApi service diff --git a/src/balanceplatform/api_payment_instrument_groups.go b/src/balanceplatform/api_payment_instrument_groups.go index b9056fb7f..0fce284c1 100644 --- a/src/balanceplatform/api_payment_instrument_groups.go +++ b/src/balanceplatform/api_payment_instrument_groups.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // PaymentInstrumentGroupsApi service diff --git a/src/balanceplatform/api_payment_instruments.go b/src/balanceplatform/api_payment_instruments.go index df03d7a02..f2fbd8694 100644 --- a/src/balanceplatform/api_payment_instruments.go +++ b/src/balanceplatform/api_payment_instruments.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // PaymentInstrumentsApi service diff --git a/src/balanceplatform/api_pin_functionality.go b/src/balanceplatform/api_pin_functionality.go index 5345de1a9..d3346c04f 100644 --- a/src/balanceplatform/api_pin_functionality.go +++ b/src/balanceplatform/api_pin_functionality.go @@ -15,7 +15,7 @@ import ( "net/http" "net/url" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // PINFunctionalityApi service diff --git a/src/balanceplatform/api_platform.go b/src/balanceplatform/api_platform.go index a45381a9a..9afcf034c 100644 --- a/src/balanceplatform/api_platform.go +++ b/src/balanceplatform/api_platform.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // PlatformApi service diff --git a/src/balanceplatform/api_transaction_rules.go b/src/balanceplatform/api_transaction_rules.go index f189acac8..7aaaa73fe 100644 --- a/src/balanceplatform/api_transaction_rules.go +++ b/src/balanceplatform/api_transaction_rules.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // TransactionRulesApi service diff --git a/src/balanceplatform/api_transfer_routes.go b/src/balanceplatform/api_transfer_routes.go index cc6521866..497df3b58 100644 --- a/src/balanceplatform/api_transfer_routes.go +++ b/src/balanceplatform/api_transfer_routes.go @@ -15,7 +15,7 @@ import ( "net/http" "net/url" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // TransferRoutesApi service diff --git a/src/balanceplatform/client.go b/src/balanceplatform/client.go index baf71ee9b..b12541f45 100644 --- a/src/balanceplatform/client.go +++ b/src/balanceplatform/client.go @@ -9,7 +9,7 @@ API version: 2 package balanceplatform import ( - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // APIClient manages communication with the Configuration API API v2 diff --git a/src/balanceplatform/model_account_holder.go b/src/balanceplatform/model_account_holder.go index 0812ba62f..f57619c06 100644 --- a/src/balanceplatform/model_account_holder.go +++ b/src/balanceplatform/model_account_holder.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AccountHolder type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_account_holder_capability.go b/src/balanceplatform/model_account_holder_capability.go index fda1769ea..2b8cc1e26 100644 --- a/src/balanceplatform/model_account_holder_capability.go +++ b/src/balanceplatform/model_account_holder_capability.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AccountHolderCapability type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_account_holder_info.go b/src/balanceplatform/model_account_holder_info.go index 3a78b8731..8c59dd73e 100644 --- a/src/balanceplatform/model_account_holder_info.go +++ b/src/balanceplatform/model_account_holder_info.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AccountHolderInfo type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_account_holder_update_request.go b/src/balanceplatform/model_account_holder_update_request.go index 0b73bddb2..9431c4ccf 100644 --- a/src/balanceplatform/model_account_holder_update_request.go +++ b/src/balanceplatform/model_account_holder_update_request.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AccountHolderUpdateRequest type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_account_supporting_entity_capability.go b/src/balanceplatform/model_account_supporting_entity_capability.go index 1b8632bea..49b9f0a19 100644 --- a/src/balanceplatform/model_account_supporting_entity_capability.go +++ b/src/balanceplatform/model_account_supporting_entity_capability.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AccountSupportingEntityCapability type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_active_network_tokens_restriction.go b/src/balanceplatform/model_active_network_tokens_restriction.go index 744a50d22..f407f1431 100644 --- a/src/balanceplatform/model_active_network_tokens_restriction.go +++ b/src/balanceplatform/model_active_network_tokens_restriction.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ActiveNetworkTokensRestriction type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_additional_bank_identification.go b/src/balanceplatform/model_additional_bank_identification.go index cdca46e83..f500052bd 100644 --- a/src/balanceplatform/model_additional_bank_identification.go +++ b/src/balanceplatform/model_additional_bank_identification.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalBankIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_address.go b/src/balanceplatform/model_address.go index 922c45168..91b52d9c8 100644 --- a/src/balanceplatform/model_address.go +++ b/src/balanceplatform/model_address.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Address type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_address_requirement.go b/src/balanceplatform/model_address_requirement.go index 4b56ec371..1b591214c 100644 --- a/src/balanceplatform/model_address_requirement.go +++ b/src/balanceplatform/model_address_requirement.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AddressRequirement type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_amount.go b/src/balanceplatform/model_amount.go index 5893c9f0f..0f9896804 100644 --- a/src/balanceplatform/model_amount.go +++ b/src/balanceplatform/model_amount.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Amount type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_amount_min_max_requirement.go b/src/balanceplatform/model_amount_min_max_requirement.go index 6fe2a1292..e613b7651 100644 --- a/src/balanceplatform/model_amount_min_max_requirement.go +++ b/src/balanceplatform/model_amount_min_max_requirement.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AmountMinMaxRequirement type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_au_local_account_identification.go b/src/balanceplatform/model_au_local_account_identification.go index c30b9d13b..ce8411195 100644 --- a/src/balanceplatform/model_au_local_account_identification.go +++ b/src/balanceplatform/model_au_local_account_identification.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AULocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_authentication.go b/src/balanceplatform/model_authentication.go index 76ac9c083..43ac5f895 100644 --- a/src/balanceplatform/model_authentication.go +++ b/src/balanceplatform/model_authentication.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Authentication type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_balance.go b/src/balanceplatform/model_balance.go index 4792645a1..410618e03 100644 --- a/src/balanceplatform/model_balance.go +++ b/src/balanceplatform/model_balance.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Balance type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_balance_account.go b/src/balanceplatform/model_balance_account.go index c7ce3e97c..8962bda02 100644 --- a/src/balanceplatform/model_balance_account.go +++ b/src/balanceplatform/model_balance_account.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BalanceAccount type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_balance_account_base.go b/src/balanceplatform/model_balance_account_base.go index 632168448..b5ae92496 100644 --- a/src/balanceplatform/model_balance_account_base.go +++ b/src/balanceplatform/model_balance_account_base.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BalanceAccountBase type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_balance_account_info.go b/src/balanceplatform/model_balance_account_info.go index 0b01d05f5..489ba3571 100644 --- a/src/balanceplatform/model_balance_account_info.go +++ b/src/balanceplatform/model_balance_account_info.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BalanceAccountInfo type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_balance_account_update_request.go b/src/balanceplatform/model_balance_account_update_request.go index 1493a7d34..900dfdde6 100644 --- a/src/balanceplatform/model_balance_account_update_request.go +++ b/src/balanceplatform/model_balance_account_update_request.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BalanceAccountUpdateRequest type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_balance_platform.go b/src/balanceplatform/model_balance_platform.go index a175972dc..be9ebaf24 100644 --- a/src/balanceplatform/model_balance_platform.go +++ b/src/balanceplatform/model_balance_platform.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BalancePlatform type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_balance_sweep_configurations_response.go b/src/balanceplatform/model_balance_sweep_configurations_response.go index b5de08553..86abdf7fb 100644 --- a/src/balanceplatform/model_balance_sweep_configurations_response.go +++ b/src/balanceplatform/model_balance_sweep_configurations_response.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BalanceSweepConfigurationsResponse type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_bank_account.go b/src/balanceplatform/model_bank_account.go index 7546f6522..15618a152 100644 --- a/src/balanceplatform/model_bank_account.go +++ b/src/balanceplatform/model_bank_account.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BankAccount type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_bank_account_details.go b/src/balanceplatform/model_bank_account_details.go index 0051046a0..26f35b0f9 100644 --- a/src/balanceplatform/model_bank_account_details.go +++ b/src/balanceplatform/model_bank_account_details.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BankAccountDetails type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_bank_account_identification_type_requirement.go b/src/balanceplatform/model_bank_account_identification_type_requirement.go index fcc9ba6f0..ed77bc031 100644 --- a/src/balanceplatform/model_bank_account_identification_type_requirement.go +++ b/src/balanceplatform/model_bank_account_identification_type_requirement.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BankAccountIdentificationTypeRequirement type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_bank_account_identification_validation_request.go b/src/balanceplatform/model_bank_account_identification_validation_request.go index 9cb7b7f03..5a761b17e 100644 --- a/src/balanceplatform/model_bank_account_identification_validation_request.go +++ b/src/balanceplatform/model_bank_account_identification_validation_request.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BankAccountIdentificationValidationRequest type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_bank_account_model.go b/src/balanceplatform/model_bank_account_model.go index c015b213f..b9ec567cc 100644 --- a/src/balanceplatform/model_bank_account_model.go +++ b/src/balanceplatform/model_bank_account_model.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BankAccountModel type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_bank_identification.go b/src/balanceplatform/model_bank_identification.go index ba7893c4f..12a77505c 100644 --- a/src/balanceplatform/model_bank_identification.go +++ b/src/balanceplatform/model_bank_identification.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BankIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_br_local_account_identification.go b/src/balanceplatform/model_br_local_account_identification.go index 448379cb4..f42af749d 100644 --- a/src/balanceplatform/model_br_local_account_identification.go +++ b/src/balanceplatform/model_br_local_account_identification.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BRLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_brand_variants_restriction.go b/src/balanceplatform/model_brand_variants_restriction.go index 4e5c1c637..c1819dff7 100644 --- a/src/balanceplatform/model_brand_variants_restriction.go +++ b/src/balanceplatform/model_brand_variants_restriction.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BrandVariantsRestriction type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_bulk_address.go b/src/balanceplatform/model_bulk_address.go index 26337b662..de145b467 100644 --- a/src/balanceplatform/model_bulk_address.go +++ b/src/balanceplatform/model_bulk_address.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BulkAddress type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_ca_local_account_identification.go b/src/balanceplatform/model_ca_local_account_identification.go index 9a8ecde86..42fd2cb67 100644 --- a/src/balanceplatform/model_ca_local_account_identification.go +++ b/src/balanceplatform/model_ca_local_account_identification.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CALocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_capability_problem.go b/src/balanceplatform/model_capability_problem.go index 8d94d94da..b953685b5 100644 --- a/src/balanceplatform/model_capability_problem.go +++ b/src/balanceplatform/model_capability_problem.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CapabilityProblem type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_capability_problem_entity.go b/src/balanceplatform/model_capability_problem_entity.go index abeb12eb3..386339780 100644 --- a/src/balanceplatform/model_capability_problem_entity.go +++ b/src/balanceplatform/model_capability_problem_entity.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CapabilityProblemEntity type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_capability_problem_entity_recursive.go b/src/balanceplatform/model_capability_problem_entity_recursive.go index a59dccd50..30a3007b6 100644 --- a/src/balanceplatform/model_capability_problem_entity_recursive.go +++ b/src/balanceplatform/model_capability_problem_entity_recursive.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CapabilityProblemEntityRecursive type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_capability_settings.go b/src/balanceplatform/model_capability_settings.go index ee71406b3..513f2a576 100644 --- a/src/balanceplatform/model_capability_settings.go +++ b/src/balanceplatform/model_capability_settings.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CapabilitySettings type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_capital_balance.go b/src/balanceplatform/model_capital_balance.go index 9ca7ecd1d..3398d3031 100644 --- a/src/balanceplatform/model_capital_balance.go +++ b/src/balanceplatform/model_capital_balance.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CapitalBalance type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_capital_grant_account.go b/src/balanceplatform/model_capital_grant_account.go index 8bc7f1fd5..c9ad58618 100644 --- a/src/balanceplatform/model_capital_grant_account.go +++ b/src/balanceplatform/model_capital_grant_account.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CapitalGrantAccount type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_card.go b/src/balanceplatform/model_card.go index b5b698921..28e0df541 100644 --- a/src/balanceplatform/model_card.go +++ b/src/balanceplatform/model_card.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Card type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_card_configuration.go b/src/balanceplatform/model_card_configuration.go index d5ad65c21..3557c49a2 100644 --- a/src/balanceplatform/model_card_configuration.go +++ b/src/balanceplatform/model_card_configuration.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CardConfiguration type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_card_info.go b/src/balanceplatform/model_card_info.go index 06c81de46..12c059e83 100644 --- a/src/balanceplatform/model_card_info.go +++ b/src/balanceplatform/model_card_info.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CardInfo type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_card_order.go b/src/balanceplatform/model_card_order.go index f52ffe106..ada23453b 100644 --- a/src/balanceplatform/model_card_order.go +++ b/src/balanceplatform/model_card_order.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CardOrder type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_card_order_item.go b/src/balanceplatform/model_card_order_item.go index 2b79b559a..89c87df87 100644 --- a/src/balanceplatform/model_card_order_item.go +++ b/src/balanceplatform/model_card_order_item.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CardOrderItem type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_card_order_item_delivery_status.go b/src/balanceplatform/model_card_order_item_delivery_status.go index 0016555f6..6c1fc08c7 100644 --- a/src/balanceplatform/model_card_order_item_delivery_status.go +++ b/src/balanceplatform/model_card_order_item_delivery_status.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CardOrderItemDeliveryStatus type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_contact_details.go b/src/balanceplatform/model_contact_details.go index 7ffd781b8..f0102b44f 100644 --- a/src/balanceplatform/model_contact_details.go +++ b/src/balanceplatform/model_contact_details.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ContactDetails type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_counterparty.go b/src/balanceplatform/model_counterparty.go index 5b482f7ce..6cf46ef9e 100644 --- a/src/balanceplatform/model_counterparty.go +++ b/src/balanceplatform/model_counterparty.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Counterparty type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_counterparty_bank_restriction.go b/src/balanceplatform/model_counterparty_bank_restriction.go index 42732a673..4ad2ce0c2 100644 --- a/src/balanceplatform/model_counterparty_bank_restriction.go +++ b/src/balanceplatform/model_counterparty_bank_restriction.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CounterpartyBankRestriction type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_countries_restriction.go b/src/balanceplatform/model_countries_restriction.go index af860ff3c..584e8db0e 100644 --- a/src/balanceplatform/model_countries_restriction.go +++ b/src/balanceplatform/model_countries_restriction.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CountriesRestriction type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_create_sweep_configuration_v2.go b/src/balanceplatform/model_create_sweep_configuration_v2.go index 97c71ba05..26d54f996 100644 --- a/src/balanceplatform/model_create_sweep_configuration_v2.go +++ b/src/balanceplatform/model_create_sweep_configuration_v2.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CreateSweepConfigurationV2 type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_cz_local_account_identification.go b/src/balanceplatform/model_cz_local_account_identification.go index 73001c392..d479d71ac 100644 --- a/src/balanceplatform/model_cz_local_account_identification.go +++ b/src/balanceplatform/model_cz_local_account_identification.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CZLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_day_of_week_restriction.go b/src/balanceplatform/model_day_of_week_restriction.go index 4c282bc64..6be9f7dea 100644 --- a/src/balanceplatform/model_day_of_week_restriction.go +++ b/src/balanceplatform/model_day_of_week_restriction.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DayOfWeekRestriction type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_delegated_authentication_data.go b/src/balanceplatform/model_delegated_authentication_data.go index ce3ec7903..dd942f499 100644 --- a/src/balanceplatform/model_delegated_authentication_data.go +++ b/src/balanceplatform/model_delegated_authentication_data.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DelegatedAuthenticationData type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_delivery_address.go b/src/balanceplatform/model_delivery_address.go index 9d0f09e2a..004972d39 100644 --- a/src/balanceplatform/model_delivery_address.go +++ b/src/balanceplatform/model_delivery_address.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DeliveryAddress type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_delivery_contact.go b/src/balanceplatform/model_delivery_contact.go index 9332cb9c4..7775a10e9 100644 --- a/src/balanceplatform/model_delivery_contact.go +++ b/src/balanceplatform/model_delivery_contact.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DeliveryContact type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_device.go b/src/balanceplatform/model_device.go index 373071a7f..2092365b4 100644 --- a/src/balanceplatform/model_device.go +++ b/src/balanceplatform/model_device.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Device type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_device_info.go b/src/balanceplatform/model_device_info.go index 243d25de8..fced2b683 100644 --- a/src/balanceplatform/model_device_info.go +++ b/src/balanceplatform/model_device_info.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DeviceInfo type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_different_currencies_restriction.go b/src/balanceplatform/model_different_currencies_restriction.go index cd3471720..fab9e324a 100644 --- a/src/balanceplatform/model_different_currencies_restriction.go +++ b/src/balanceplatform/model_different_currencies_restriction.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DifferentCurrenciesRestriction type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_dk_local_account_identification.go b/src/balanceplatform/model_dk_local_account_identification.go index 1f6636b50..2f837f71d 100644 --- a/src/balanceplatform/model_dk_local_account_identification.go +++ b/src/balanceplatform/model_dk_local_account_identification.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DKLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_duration.go b/src/balanceplatform/model_duration.go index 548763bc3..53500321c 100644 --- a/src/balanceplatform/model_duration.go +++ b/src/balanceplatform/model_duration.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Duration type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_entry_modes_restriction.go b/src/balanceplatform/model_entry_modes_restriction.go index 00a458f16..ef02c7efb 100644 --- a/src/balanceplatform/model_entry_modes_restriction.go +++ b/src/balanceplatform/model_entry_modes_restriction.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the EntryModesRestriction type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_expiry.go b/src/balanceplatform/model_expiry.go index 1eff79156..9087b00ee 100644 --- a/src/balanceplatform/model_expiry.go +++ b/src/balanceplatform/model_expiry.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Expiry type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_fee.go b/src/balanceplatform/model_fee.go index 8b34123eb..81e596737 100644 --- a/src/balanceplatform/model_fee.go +++ b/src/balanceplatform/model_fee.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Fee type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_get_network_token_response.go b/src/balanceplatform/model_get_network_token_response.go index 3353bd90a..2fa97a823 100644 --- a/src/balanceplatform/model_get_network_token_response.go +++ b/src/balanceplatform/model_get_network_token_response.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the GetNetworkTokenResponse type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_get_tax_form_response.go b/src/balanceplatform/model_get_tax_form_response.go index fb02b840f..c1be5ef56 100644 --- a/src/balanceplatform/model_get_tax_form_response.go +++ b/src/balanceplatform/model_get_tax_form_response.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the GetTaxFormResponse type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_grant_limit.go b/src/balanceplatform/model_grant_limit.go index 2f4894ae9..71b56e5e8 100644 --- a/src/balanceplatform/model_grant_limit.go +++ b/src/balanceplatform/model_grant_limit.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the GrantLimit type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_grant_offer.go b/src/balanceplatform/model_grant_offer.go index 644e801e9..e0ea28c1f 100644 --- a/src/balanceplatform/model_grant_offer.go +++ b/src/balanceplatform/model_grant_offer.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the GrantOffer type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_grant_offers.go b/src/balanceplatform/model_grant_offers.go index 6887ede3a..c795f291f 100644 --- a/src/balanceplatform/model_grant_offers.go +++ b/src/balanceplatform/model_grant_offers.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the GrantOffers type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_hk_local_account_identification.go b/src/balanceplatform/model_hk_local_account_identification.go index dc78258e9..24a1237eb 100644 --- a/src/balanceplatform/model_hk_local_account_identification.go +++ b/src/balanceplatform/model_hk_local_account_identification.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the HKLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_href.go b/src/balanceplatform/model_href.go index 1278bc6b2..b09ec2786 100644 --- a/src/balanceplatform/model_href.go +++ b/src/balanceplatform/model_href.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Href type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_hu_local_account_identification.go b/src/balanceplatform/model_hu_local_account_identification.go index 0ff242c6e..94362b42d 100644 --- a/src/balanceplatform/model_hu_local_account_identification.go +++ b/src/balanceplatform/model_hu_local_account_identification.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the HULocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_iban_account_identification.go b/src/balanceplatform/model_iban_account_identification.go index a6813794c..3c7631f13 100644 --- a/src/balanceplatform/model_iban_account_identification.go +++ b/src/balanceplatform/model_iban_account_identification.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the IbanAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_international_transaction_restriction.go b/src/balanceplatform/model_international_transaction_restriction.go index 8f9220456..8da73b60f 100644 --- a/src/balanceplatform/model_international_transaction_restriction.go +++ b/src/balanceplatform/model_international_transaction_restriction.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the InternationalTransactionRestriction type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_invalid_field.go b/src/balanceplatform/model_invalid_field.go index d9af3f32f..81ffbec09 100644 --- a/src/balanceplatform/model_invalid_field.go +++ b/src/balanceplatform/model_invalid_field.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the InvalidField type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_json_object.go b/src/balanceplatform/model_json_object.go index d68e0da03..2f9684f59 100644 --- a/src/balanceplatform/model_json_object.go +++ b/src/balanceplatform/model_json_object.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the JSONObject type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_json_path.go b/src/balanceplatform/model_json_path.go index 7da2317b9..fa9c37727 100644 --- a/src/balanceplatform/model_json_path.go +++ b/src/balanceplatform/model_json_path.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the JSONPath type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_link.go b/src/balanceplatform/model_link.go index fea291526..e2ea664e5 100644 --- a/src/balanceplatform/model_link.go +++ b/src/balanceplatform/model_link.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Link type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_list_network_tokens_response.go b/src/balanceplatform/model_list_network_tokens_response.go index 28a9734e6..d29d94cb1 100644 --- a/src/balanceplatform/model_list_network_tokens_response.go +++ b/src/balanceplatform/model_list_network_tokens_response.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ListNetworkTokensResponse type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_matching_transactions_restriction.go b/src/balanceplatform/model_matching_transactions_restriction.go index 33f21c751..87dcc1c1e 100644 --- a/src/balanceplatform/model_matching_transactions_restriction.go +++ b/src/balanceplatform/model_matching_transactions_restriction.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the MatchingTransactionsRestriction type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_matching_values_restriction.go b/src/balanceplatform/model_matching_values_restriction.go index 26d0dedff..527253746 100644 --- a/src/balanceplatform/model_matching_values_restriction.go +++ b/src/balanceplatform/model_matching_values_restriction.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the MatchingValuesRestriction type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_mccs_restriction.go b/src/balanceplatform/model_mccs_restriction.go index 89f70af96..729a5b172 100644 --- a/src/balanceplatform/model_mccs_restriction.go +++ b/src/balanceplatform/model_mccs_restriction.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the MccsRestriction type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_merchant_acquirer_pair.go b/src/balanceplatform/model_merchant_acquirer_pair.go index df1ac6db0..f652aa983 100644 --- a/src/balanceplatform/model_merchant_acquirer_pair.go +++ b/src/balanceplatform/model_merchant_acquirer_pair.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the MerchantAcquirerPair type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_merchant_names_restriction.go b/src/balanceplatform/model_merchant_names_restriction.go index d87beb690..ec65b92ba 100644 --- a/src/balanceplatform/model_merchant_names_restriction.go +++ b/src/balanceplatform/model_merchant_names_restriction.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the MerchantNamesRestriction type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_merchants_restriction.go b/src/balanceplatform/model_merchants_restriction.go index a960a14d8..17100f4fd 100644 --- a/src/balanceplatform/model_merchants_restriction.go +++ b/src/balanceplatform/model_merchants_restriction.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the MerchantsRestriction type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_name.go b/src/balanceplatform/model_name.go index 309d5988c..06b91dac3 100644 --- a/src/balanceplatform/model_name.go +++ b/src/balanceplatform/model_name.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Name type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_network_token.go b/src/balanceplatform/model_network_token.go index d5b73553d..24796bde6 100644 --- a/src/balanceplatform/model_network_token.go +++ b/src/balanceplatform/model_network_token.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the NetworkToken type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_no_local_account_identification.go b/src/balanceplatform/model_no_local_account_identification.go index 025623a68..faa3ffcf2 100644 --- a/src/balanceplatform/model_no_local_account_identification.go +++ b/src/balanceplatform/model_no_local_account_identification.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the NOLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_number_and_bic_account_identification.go b/src/balanceplatform/model_number_and_bic_account_identification.go index 15bd5b195..e04923303 100644 --- a/src/balanceplatform/model_number_and_bic_account_identification.go +++ b/src/balanceplatform/model_number_and_bic_account_identification.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the NumberAndBicAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_nz_local_account_identification.go b/src/balanceplatform/model_nz_local_account_identification.go index 8f68df98f..74ec64347 100644 --- a/src/balanceplatform/model_nz_local_account_identification.go +++ b/src/balanceplatform/model_nz_local_account_identification.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the NZLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_paginated_account_holders_response.go b/src/balanceplatform/model_paginated_account_holders_response.go index d010c2606..a3739b65e 100644 --- a/src/balanceplatform/model_paginated_account_holders_response.go +++ b/src/balanceplatform/model_paginated_account_holders_response.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaginatedAccountHoldersResponse type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_paginated_balance_accounts_response.go b/src/balanceplatform/model_paginated_balance_accounts_response.go index df8f49e3b..5b705aa62 100644 --- a/src/balanceplatform/model_paginated_balance_accounts_response.go +++ b/src/balanceplatform/model_paginated_balance_accounts_response.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaginatedBalanceAccountsResponse type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_paginated_get_card_order_item_response.go b/src/balanceplatform/model_paginated_get_card_order_item_response.go index 9848aba37..661e742fe 100644 --- a/src/balanceplatform/model_paginated_get_card_order_item_response.go +++ b/src/balanceplatform/model_paginated_get_card_order_item_response.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaginatedGetCardOrderItemResponse type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_paginated_get_card_order_response.go b/src/balanceplatform/model_paginated_get_card_order_response.go index 859f3c30c..c2c7d84e9 100644 --- a/src/balanceplatform/model_paginated_get_card_order_response.go +++ b/src/balanceplatform/model_paginated_get_card_order_response.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaginatedGetCardOrderResponse type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_paginated_payment_instruments_response.go b/src/balanceplatform/model_paginated_payment_instruments_response.go index 8106d92b1..42b78c3d6 100644 --- a/src/balanceplatform/model_paginated_payment_instruments_response.go +++ b/src/balanceplatform/model_paginated_payment_instruments_response.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaginatedPaymentInstrumentsResponse type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_payment_instrument.go b/src/balanceplatform/model_payment_instrument.go index 9e8a44bab..3e8248183 100644 --- a/src/balanceplatform/model_payment_instrument.go +++ b/src/balanceplatform/model_payment_instrument.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentInstrument type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_payment_instrument_group.go b/src/balanceplatform/model_payment_instrument_group.go index 31c017ad7..8b8e1590d 100644 --- a/src/balanceplatform/model_payment_instrument_group.go +++ b/src/balanceplatform/model_payment_instrument_group.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentInstrumentGroup type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_payment_instrument_group_info.go b/src/balanceplatform/model_payment_instrument_group_info.go index 2d1eae1c8..9fa2a473f 100644 --- a/src/balanceplatform/model_payment_instrument_group_info.go +++ b/src/balanceplatform/model_payment_instrument_group_info.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentInstrumentGroupInfo type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_payment_instrument_info.go b/src/balanceplatform/model_payment_instrument_info.go index b5ffd6fb8..048c39538 100644 --- a/src/balanceplatform/model_payment_instrument_info.go +++ b/src/balanceplatform/model_payment_instrument_info.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentInstrumentInfo type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_payment_instrument_requirement.go b/src/balanceplatform/model_payment_instrument_requirement.go index 514355c9e..339f75d02 100644 --- a/src/balanceplatform/model_payment_instrument_requirement.go +++ b/src/balanceplatform/model_payment_instrument_requirement.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentInstrumentRequirement type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_payment_instrument_reveal_info.go b/src/balanceplatform/model_payment_instrument_reveal_info.go index c84edc225..34914856b 100644 --- a/src/balanceplatform/model_payment_instrument_reveal_info.go +++ b/src/balanceplatform/model_payment_instrument_reveal_info.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentInstrumentRevealInfo type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_payment_instrument_reveal_request.go b/src/balanceplatform/model_payment_instrument_reveal_request.go index 0fb7a9395..1b8271d2a 100644 --- a/src/balanceplatform/model_payment_instrument_reveal_request.go +++ b/src/balanceplatform/model_payment_instrument_reveal_request.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentInstrumentRevealRequest type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_payment_instrument_reveal_response.go b/src/balanceplatform/model_payment_instrument_reveal_response.go index 2a1d60e66..94bcae83c 100644 --- a/src/balanceplatform/model_payment_instrument_reveal_response.go +++ b/src/balanceplatform/model_payment_instrument_reveal_response.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentInstrumentRevealResponse type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_payment_instrument_update_request.go b/src/balanceplatform/model_payment_instrument_update_request.go index 8cb689cbc..be4da3569 100644 --- a/src/balanceplatform/model_payment_instrument_update_request.go +++ b/src/balanceplatform/model_payment_instrument_update_request.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentInstrumentUpdateRequest type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_phone.go b/src/balanceplatform/model_phone.go index 028554cc0..be34f70e2 100644 --- a/src/balanceplatform/model_phone.go +++ b/src/balanceplatform/model_phone.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Phone type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_phone_number.go b/src/balanceplatform/model_phone_number.go index 1493d09a9..1caa1f15e 100644 --- a/src/balanceplatform/model_phone_number.go +++ b/src/balanceplatform/model_phone_number.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PhoneNumber type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_pin_change_request.go b/src/balanceplatform/model_pin_change_request.go index 4fc06e86e..51645d5ad 100644 --- a/src/balanceplatform/model_pin_change_request.go +++ b/src/balanceplatform/model_pin_change_request.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PinChangeRequest type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_pin_change_response.go b/src/balanceplatform/model_pin_change_response.go index e45f569d1..cc52ff0ed 100644 --- a/src/balanceplatform/model_pin_change_response.go +++ b/src/balanceplatform/model_pin_change_response.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PinChangeResponse type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_pl_local_account_identification.go b/src/balanceplatform/model_pl_local_account_identification.go index 4433a09ef..1c90281d5 100644 --- a/src/balanceplatform/model_pl_local_account_identification.go +++ b/src/balanceplatform/model_pl_local_account_identification.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PLLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_platform_payment_configuration.go b/src/balanceplatform/model_platform_payment_configuration.go index 0d8570991..f5f241194 100644 --- a/src/balanceplatform/model_platform_payment_configuration.go +++ b/src/balanceplatform/model_platform_payment_configuration.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PlatformPaymentConfiguration type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_processing_types_restriction.go b/src/balanceplatform/model_processing_types_restriction.go index 7bc6a3268..c305e86d4 100644 --- a/src/balanceplatform/model_processing_types_restriction.go +++ b/src/balanceplatform/model_processing_types_restriction.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ProcessingTypesRestriction type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_public_key_response.go b/src/balanceplatform/model_public_key_response.go index 04f5147cf..2157a6529 100644 --- a/src/balanceplatform/model_public_key_response.go +++ b/src/balanceplatform/model_public_key_response.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PublicKeyResponse type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_register_sca_final_response.go b/src/balanceplatform/model_register_sca_final_response.go index 2c307ddea..f84405357 100644 --- a/src/balanceplatform/model_register_sca_final_response.go +++ b/src/balanceplatform/model_register_sca_final_response.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the RegisterSCAFinalResponse type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_register_sca_request.go b/src/balanceplatform/model_register_sca_request.go index 212da32d7..d6cd15a0d 100644 --- a/src/balanceplatform/model_register_sca_request.go +++ b/src/balanceplatform/model_register_sca_request.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the RegisterSCARequest type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_register_sca_response.go b/src/balanceplatform/model_register_sca_response.go index 86167de06..81710ef68 100644 --- a/src/balanceplatform/model_register_sca_response.go +++ b/src/balanceplatform/model_register_sca_response.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the RegisterSCAResponse type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_remediating_action.go b/src/balanceplatform/model_remediating_action.go index 1d4343d95..df415d07f 100644 --- a/src/balanceplatform/model_remediating_action.go +++ b/src/balanceplatform/model_remediating_action.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the RemediatingAction type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_repayment.go b/src/balanceplatform/model_repayment.go index 89a8a8507..866161954 100644 --- a/src/balanceplatform/model_repayment.go +++ b/src/balanceplatform/model_repayment.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Repayment type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_repayment_term.go b/src/balanceplatform/model_repayment_term.go index da1f86228..578d60a28 100644 --- a/src/balanceplatform/model_repayment_term.go +++ b/src/balanceplatform/model_repayment_term.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the RepaymentTerm type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_rest_service_error.go b/src/balanceplatform/model_rest_service_error.go index d41652d10..633466ac1 100644 --- a/src/balanceplatform/model_rest_service_error.go +++ b/src/balanceplatform/model_rest_service_error.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the RestServiceError type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_reveal_pin_request.go b/src/balanceplatform/model_reveal_pin_request.go index de8fc88ab..9d1f44a50 100644 --- a/src/balanceplatform/model_reveal_pin_request.go +++ b/src/balanceplatform/model_reveal_pin_request.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the RevealPinRequest type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_reveal_pin_response.go b/src/balanceplatform/model_reveal_pin_response.go index 002cf5fa8..415843ff8 100644 --- a/src/balanceplatform/model_reveal_pin_response.go +++ b/src/balanceplatform/model_reveal_pin_response.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the RevealPinResponse type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_risk_scores.go b/src/balanceplatform/model_risk_scores.go index 5a2158d9f..290c31ad8 100644 --- a/src/balanceplatform/model_risk_scores.go +++ b/src/balanceplatform/model_risk_scores.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the RiskScores type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_risk_scores_restriction.go b/src/balanceplatform/model_risk_scores_restriction.go index 862456c9e..76a604296 100644 --- a/src/balanceplatform/model_risk_scores_restriction.go +++ b/src/balanceplatform/model_risk_scores_restriction.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the RiskScoresRestriction type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_same_amount_restriction.go b/src/balanceplatform/model_same_amount_restriction.go index 19edeac42..2ec3d291e 100644 --- a/src/balanceplatform/model_same_amount_restriction.go +++ b/src/balanceplatform/model_same_amount_restriction.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SameAmountRestriction type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_same_counterparty_restriction.go b/src/balanceplatform/model_same_counterparty_restriction.go index 4451764e7..94240cd0f 100644 --- a/src/balanceplatform/model_same_counterparty_restriction.go +++ b/src/balanceplatform/model_same_counterparty_restriction.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SameCounterpartyRestriction type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_se_local_account_identification.go b/src/balanceplatform/model_se_local_account_identification.go index c9567fc63..e49f00007 100644 --- a/src/balanceplatform/model_se_local_account_identification.go +++ b/src/balanceplatform/model_se_local_account_identification.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SELocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_search_registered_devices_response.go b/src/balanceplatform/model_search_registered_devices_response.go index 83a5fd39b..1fcaed5e3 100644 --- a/src/balanceplatform/model_search_registered_devices_response.go +++ b/src/balanceplatform/model_search_registered_devices_response.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SearchRegisteredDevicesResponse type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_sg_local_account_identification.go b/src/balanceplatform/model_sg_local_account_identification.go index 8bab40465..5a1ef453b 100644 --- a/src/balanceplatform/model_sg_local_account_identification.go +++ b/src/balanceplatform/model_sg_local_account_identification.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SGLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_string_match.go b/src/balanceplatform/model_string_match.go index eb182b365..66f6c56cb 100644 --- a/src/balanceplatform/model_string_match.go +++ b/src/balanceplatform/model_string_match.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StringMatch type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_sweep_configuration_v2.go b/src/balanceplatform/model_sweep_configuration_v2.go index 47b1a15f9..d9dbe8b5b 100644 --- a/src/balanceplatform/model_sweep_configuration_v2.go +++ b/src/balanceplatform/model_sweep_configuration_v2.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SweepConfigurationV2 type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_sweep_counterparty.go b/src/balanceplatform/model_sweep_counterparty.go index c2264ea93..12b34c0da 100644 --- a/src/balanceplatform/model_sweep_counterparty.go +++ b/src/balanceplatform/model_sweep_counterparty.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SweepCounterparty type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_sweep_schedule.go b/src/balanceplatform/model_sweep_schedule.go index eb14d686a..95181fdcd 100644 --- a/src/balanceplatform/model_sweep_schedule.go +++ b/src/balanceplatform/model_sweep_schedule.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SweepSchedule type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_threshold_repayment.go b/src/balanceplatform/model_threshold_repayment.go index 3e7ef5256..727617616 100644 --- a/src/balanceplatform/model_threshold_repayment.go +++ b/src/balanceplatform/model_threshold_repayment.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ThresholdRepayment type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_time_of_day.go b/src/balanceplatform/model_time_of_day.go index b82c7c34b..ec237b8ed 100644 --- a/src/balanceplatform/model_time_of_day.go +++ b/src/balanceplatform/model_time_of_day.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TimeOfDay type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_time_of_day_restriction.go b/src/balanceplatform/model_time_of_day_restriction.go index d08e4ef7b..2e21af9d3 100644 --- a/src/balanceplatform/model_time_of_day_restriction.go +++ b/src/balanceplatform/model_time_of_day_restriction.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TimeOfDayRestriction type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_total_amount_restriction.go b/src/balanceplatform/model_total_amount_restriction.go index 22200f677..fdf363555 100644 --- a/src/balanceplatform/model_total_amount_restriction.go +++ b/src/balanceplatform/model_total_amount_restriction.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TotalAmountRestriction type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_transaction_rule.go b/src/balanceplatform/model_transaction_rule.go index 83b2cb1c2..1c6a8ccf5 100644 --- a/src/balanceplatform/model_transaction_rule.go +++ b/src/balanceplatform/model_transaction_rule.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransactionRule type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_transaction_rule_entity_key.go b/src/balanceplatform/model_transaction_rule_entity_key.go index 37e69fb40..e8b6b0d38 100644 --- a/src/balanceplatform/model_transaction_rule_entity_key.go +++ b/src/balanceplatform/model_transaction_rule_entity_key.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransactionRuleEntityKey type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_transaction_rule_info.go b/src/balanceplatform/model_transaction_rule_info.go index fd2ac27fc..75012b718 100644 --- a/src/balanceplatform/model_transaction_rule_info.go +++ b/src/balanceplatform/model_transaction_rule_info.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransactionRuleInfo type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_transaction_rule_interval.go b/src/balanceplatform/model_transaction_rule_interval.go index c91da04f6..c60fcbb16 100644 --- a/src/balanceplatform/model_transaction_rule_interval.go +++ b/src/balanceplatform/model_transaction_rule_interval.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransactionRuleInterval type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_transaction_rule_response.go b/src/balanceplatform/model_transaction_rule_response.go index e06f29119..7a4251ef6 100644 --- a/src/balanceplatform/model_transaction_rule_response.go +++ b/src/balanceplatform/model_transaction_rule_response.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransactionRuleResponse type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_transaction_rule_restrictions.go b/src/balanceplatform/model_transaction_rule_restrictions.go index ac73d9c2d..8a1bc04dd 100644 --- a/src/balanceplatform/model_transaction_rule_restrictions.go +++ b/src/balanceplatform/model_transaction_rule_restrictions.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransactionRuleRestrictions type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_transaction_rules_response.go b/src/balanceplatform/model_transaction_rules_response.go index 4a1806bba..851d378c9 100644 --- a/src/balanceplatform/model_transaction_rules_response.go +++ b/src/balanceplatform/model_transaction_rules_response.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransactionRulesResponse type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_transfer_route.go b/src/balanceplatform/model_transfer_route.go index 013cd8cd7..53d39737a 100644 --- a/src/balanceplatform/model_transfer_route.go +++ b/src/balanceplatform/model_transfer_route.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransferRoute type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_transfer_route_request.go b/src/balanceplatform/model_transfer_route_request.go index de3eb96a3..1721ad31c 100644 --- a/src/balanceplatform/model_transfer_route_request.go +++ b/src/balanceplatform/model_transfer_route_request.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransferRouteRequest type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_transfer_route_response.go b/src/balanceplatform/model_transfer_route_response.go index 67b30f540..9b9f23101 100644 --- a/src/balanceplatform/model_transfer_route_response.go +++ b/src/balanceplatform/model_transfer_route_response.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransferRouteResponse type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_uk_local_account_identification.go b/src/balanceplatform/model_uk_local_account_identification.go index a4b6bee79..bc37570d1 100644 --- a/src/balanceplatform/model_uk_local_account_identification.go +++ b/src/balanceplatform/model_uk_local_account_identification.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UKLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_update_network_token_request.go b/src/balanceplatform/model_update_network_token_request.go index ec69eb6ed..b979f701f 100644 --- a/src/balanceplatform/model_update_network_token_request.go +++ b/src/balanceplatform/model_update_network_token_request.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UpdateNetworkTokenRequest type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_update_payment_instrument.go b/src/balanceplatform/model_update_payment_instrument.go index 3d0b18403..c21f443d9 100644 --- a/src/balanceplatform/model_update_payment_instrument.go +++ b/src/balanceplatform/model_update_payment_instrument.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UpdatePaymentInstrument type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_update_sweep_configuration_v2.go b/src/balanceplatform/model_update_sweep_configuration_v2.go index 332628ff2..2006030a3 100644 --- a/src/balanceplatform/model_update_sweep_configuration_v2.go +++ b/src/balanceplatform/model_update_sweep_configuration_v2.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UpdateSweepConfigurationV2 type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_us_local_account_identification.go b/src/balanceplatform/model_us_local_account_identification.go index 4c46e876a..3b199de38 100644 --- a/src/balanceplatform/model_us_local_account_identification.go +++ b/src/balanceplatform/model_us_local_account_identification.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the USLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_verification_deadline.go b/src/balanceplatform/model_verification_deadline.go index 933f7e623..1071bbda5 100644 --- a/src/balanceplatform/model_verification_deadline.go +++ b/src/balanceplatform/model_verification_deadline.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the VerificationDeadline type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_verification_error.go b/src/balanceplatform/model_verification_error.go index 0a7d5e003..34ecc7e61 100644 --- a/src/balanceplatform/model_verification_error.go +++ b/src/balanceplatform/model_verification_error.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the VerificationError type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_verification_error_recursive.go b/src/balanceplatform/model_verification_error_recursive.go index 22734392b..e871e73bc 100644 --- a/src/balanceplatform/model_verification_error_recursive.go +++ b/src/balanceplatform/model_verification_error_recursive.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the VerificationErrorRecursive type satisfies the MappedNullable interface at compile time diff --git a/src/binlookup/api_general.go b/src/binlookup/api_general.go index d48f9d1e4..4ee012a33 100644 --- a/src/binlookup/api_general.go +++ b/src/binlookup/api_general.go @@ -13,7 +13,7 @@ import ( "net/http" "net/url" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // GeneralApi service diff --git a/src/binlookup/model_amount.go b/src/binlookup/model_amount.go index d4436dcc0..0a3be2829 100644 --- a/src/binlookup/model_amount.go +++ b/src/binlookup/model_amount.go @@ -11,7 +11,7 @@ package binlookup import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Amount type satisfies the MappedNullable interface at compile time diff --git a/src/binlookup/model_bin_detail.go b/src/binlookup/model_bin_detail.go index ea991c9b4..1738a9093 100644 --- a/src/binlookup/model_bin_detail.go +++ b/src/binlookup/model_bin_detail.go @@ -11,7 +11,7 @@ package binlookup import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BinDetail type satisfies the MappedNullable interface at compile time diff --git a/src/binlookup/model_card_bin.go b/src/binlookup/model_card_bin.go index 1a4a9ec5f..68c7e2665 100644 --- a/src/binlookup/model_card_bin.go +++ b/src/binlookup/model_card_bin.go @@ -11,7 +11,7 @@ package binlookup import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CardBin type satisfies the MappedNullable interface at compile time diff --git a/src/binlookup/model_cost_estimate_assumptions.go b/src/binlookup/model_cost_estimate_assumptions.go index 2d3a3d7f2..d5c291b9d 100644 --- a/src/binlookup/model_cost_estimate_assumptions.go +++ b/src/binlookup/model_cost_estimate_assumptions.go @@ -11,7 +11,7 @@ package binlookup import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CostEstimateAssumptions type satisfies the MappedNullable interface at compile time diff --git a/src/binlookup/model_cost_estimate_request.go b/src/binlookup/model_cost_estimate_request.go index 9aa6f6d44..e615e98fc 100644 --- a/src/binlookup/model_cost_estimate_request.go +++ b/src/binlookup/model_cost_estimate_request.go @@ -11,7 +11,7 @@ package binlookup import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CostEstimateRequest type satisfies the MappedNullable interface at compile time diff --git a/src/binlookup/model_cost_estimate_response.go b/src/binlookup/model_cost_estimate_response.go index 5a948659a..6565a9c86 100644 --- a/src/binlookup/model_cost_estimate_response.go +++ b/src/binlookup/model_cost_estimate_response.go @@ -11,7 +11,7 @@ package binlookup import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CostEstimateResponse type satisfies the MappedNullable interface at compile time diff --git a/src/binlookup/model_ds_public_key_detail.go b/src/binlookup/model_ds_public_key_detail.go index d626eba70..a1e18ee44 100644 --- a/src/binlookup/model_ds_public_key_detail.go +++ b/src/binlookup/model_ds_public_key_detail.go @@ -11,7 +11,7 @@ package binlookup import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DSPublicKeyDetail type satisfies the MappedNullable interface at compile time diff --git a/src/binlookup/model_merchant_details.go b/src/binlookup/model_merchant_details.go index 755368700..8cff8058e 100644 --- a/src/binlookup/model_merchant_details.go +++ b/src/binlookup/model_merchant_details.go @@ -11,7 +11,7 @@ package binlookup import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the MerchantDetails type satisfies the MappedNullable interface at compile time diff --git a/src/binlookup/model_recurring.go b/src/binlookup/model_recurring.go index dd694ed19..ebc36cdec 100644 --- a/src/binlookup/model_recurring.go +++ b/src/binlookup/model_recurring.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Recurring type satisfies the MappedNullable interface at compile time diff --git a/src/binlookup/model_service_error.go b/src/binlookup/model_service_error.go index 4d568029a..039f82b66 100644 --- a/src/binlookup/model_service_error.go +++ b/src/binlookup/model_service_error.go @@ -11,7 +11,7 @@ package binlookup import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ServiceError type satisfies the MappedNullable interface at compile time diff --git a/src/binlookup/model_three_ds2_card_range_detail.go b/src/binlookup/model_three_ds2_card_range_detail.go index d2e19dffd..c9c9ce45c 100644 --- a/src/binlookup/model_three_ds2_card_range_detail.go +++ b/src/binlookup/model_three_ds2_card_range_detail.go @@ -11,7 +11,7 @@ package binlookup import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ThreeDS2CardRangeDetail type satisfies the MappedNullable interface at compile time diff --git a/src/binlookup/model_three_ds_availability_request.go b/src/binlookup/model_three_ds_availability_request.go index 6bb71e86a..35cfa884d 100644 --- a/src/binlookup/model_three_ds_availability_request.go +++ b/src/binlookup/model_three_ds_availability_request.go @@ -11,7 +11,7 @@ package binlookup import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ThreeDSAvailabilityRequest type satisfies the MappedNullable interface at compile time diff --git a/src/binlookup/model_three_ds_availability_response.go b/src/binlookup/model_three_ds_availability_response.go index 55fa65300..6cf21d17b 100644 --- a/src/binlookup/model_three_ds_availability_response.go +++ b/src/binlookup/model_three_ds_availability_response.go @@ -11,7 +11,7 @@ package binlookup import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ThreeDSAvailabilityResponse type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/api_classic_checkout_sdk.go b/src/checkout/api_classic_checkout_sdk.go index e195c17cc..a081a4978 100644 --- a/src/checkout/api_classic_checkout_sdk.go +++ b/src/checkout/api_classic_checkout_sdk.go @@ -13,7 +13,7 @@ import ( "net/http" "net/url" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // ClassicCheckoutSDKApi service diff --git a/src/checkout/api_donations.go b/src/checkout/api_donations.go index 59c66db30..6f0b82ba8 100644 --- a/src/checkout/api_donations.go +++ b/src/checkout/api_donations.go @@ -13,7 +13,7 @@ import ( "net/http" "net/url" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // DonationsApi service diff --git a/src/checkout/api_modifications.go b/src/checkout/api_modifications.go index ed4d0552c..fa2871a23 100644 --- a/src/checkout/api_modifications.go +++ b/src/checkout/api_modifications.go @@ -14,7 +14,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // ModificationsApi service diff --git a/src/checkout/api_orders.go b/src/checkout/api_orders.go index a4c493675..00a255178 100644 --- a/src/checkout/api_orders.go +++ b/src/checkout/api_orders.go @@ -13,7 +13,7 @@ import ( "net/http" "net/url" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // OrdersApi service diff --git a/src/checkout/api_payment_links.go b/src/checkout/api_payment_links.go index d65c6211c..e6b573177 100644 --- a/src/checkout/api_payment_links.go +++ b/src/checkout/api_payment_links.go @@ -14,7 +14,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // PaymentLinksApi service diff --git a/src/checkout/api_payments.go b/src/checkout/api_payments.go index 468cc7301..373eb3435 100644 --- a/src/checkout/api_payments.go +++ b/src/checkout/api_payments.go @@ -14,7 +14,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // PaymentsApi service diff --git a/src/checkout/api_recurring.go b/src/checkout/api_recurring.go index e064d8bff..37abe5d46 100644 --- a/src/checkout/api_recurring.go +++ b/src/checkout/api_recurring.go @@ -14,7 +14,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // RecurringApi service diff --git a/src/checkout/api_utility.go b/src/checkout/api_utility.go index e8f2783ac..67e884e69 100644 --- a/src/checkout/api_utility.go +++ b/src/checkout/api_utility.go @@ -13,7 +13,7 @@ import ( "net/http" "net/url" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // UtilityApi service diff --git a/src/checkout/client.go b/src/checkout/client.go index 8690147de..cf9a5ee4c 100644 --- a/src/checkout/client.go +++ b/src/checkout/client.go @@ -9,7 +9,7 @@ API version: 71 package checkout import ( - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // APIClient manages communication with the Adyen Checkout API API v71 diff --git a/src/checkout/model_account_info.go b/src/checkout/model_account_info.go index dd96853e7..c38ef73eb 100644 --- a/src/checkout/model_account_info.go +++ b/src/checkout/model_account_info.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AccountInfo type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_acct_info.go b/src/checkout/model_acct_info.go index 098da90c1..05e62d222 100644 --- a/src/checkout/model_acct_info.go +++ b/src/checkout/model_acct_info.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AcctInfo type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_ach_details.go b/src/checkout/model_ach_details.go index f51100495..32c79e434 100644 --- a/src/checkout/model_ach_details.go +++ b/src/checkout/model_ach_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AchDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_additional_data3_d_secure.go b/src/checkout/model_additional_data3_d_secure.go index cfac599fe..2e2feb464 100644 --- a/src/checkout/model_additional_data3_d_secure.go +++ b/src/checkout/model_additional_data3_d_secure.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalData3DSecure type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_additional_data_airline.go b/src/checkout/model_additional_data_airline.go index 25201a805..85c030954 100644 --- a/src/checkout/model_additional_data_airline.go +++ b/src/checkout/model_additional_data_airline.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalDataAirline type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_additional_data_car_rental.go b/src/checkout/model_additional_data_car_rental.go index 301dc8085..6aa5b4f87 100644 --- a/src/checkout/model_additional_data_car_rental.go +++ b/src/checkout/model_additional_data_car_rental.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalDataCarRental type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_additional_data_common.go b/src/checkout/model_additional_data_common.go index f03f65878..4d8554b2c 100644 --- a/src/checkout/model_additional_data_common.go +++ b/src/checkout/model_additional_data_common.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalDataCommon type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_additional_data_level23.go b/src/checkout/model_additional_data_level23.go index 136cb1434..a571a505c 100644 --- a/src/checkout/model_additional_data_level23.go +++ b/src/checkout/model_additional_data_level23.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalDataLevel23 type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_additional_data_lodging.go b/src/checkout/model_additional_data_lodging.go index 3171fa011..e2e95321c 100644 --- a/src/checkout/model_additional_data_lodging.go +++ b/src/checkout/model_additional_data_lodging.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalDataLodging type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_additional_data_open_invoice.go b/src/checkout/model_additional_data_open_invoice.go index 1ef0a1b5c..850e4e7ea 100644 --- a/src/checkout/model_additional_data_open_invoice.go +++ b/src/checkout/model_additional_data_open_invoice.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalDataOpenInvoice type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_additional_data_opi.go b/src/checkout/model_additional_data_opi.go index 20f50b541..170b27489 100644 --- a/src/checkout/model_additional_data_opi.go +++ b/src/checkout/model_additional_data_opi.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalDataOpi type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_additional_data_ratepay.go b/src/checkout/model_additional_data_ratepay.go index 0a53a2bac..5987eb7e0 100644 --- a/src/checkout/model_additional_data_ratepay.go +++ b/src/checkout/model_additional_data_ratepay.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalDataRatepay type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_additional_data_retry.go b/src/checkout/model_additional_data_retry.go index 7efb36cb2..432059613 100644 --- a/src/checkout/model_additional_data_retry.go +++ b/src/checkout/model_additional_data_retry.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalDataRetry type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_additional_data_risk.go b/src/checkout/model_additional_data_risk.go index 3f9de1fe9..3ca9f9195 100644 --- a/src/checkout/model_additional_data_risk.go +++ b/src/checkout/model_additional_data_risk.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalDataRisk type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_additional_data_risk_standalone.go b/src/checkout/model_additional_data_risk_standalone.go index 42addf42b..e8fed822b 100644 --- a/src/checkout/model_additional_data_risk_standalone.go +++ b/src/checkout/model_additional_data_risk_standalone.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalDataRiskStandalone type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_additional_data_sub_merchant.go b/src/checkout/model_additional_data_sub_merchant.go index 44f17963e..1669ec4ee 100644 --- a/src/checkout/model_additional_data_sub_merchant.go +++ b/src/checkout/model_additional_data_sub_merchant.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalDataSubMerchant type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_additional_data_temporary_services.go b/src/checkout/model_additional_data_temporary_services.go index fc5372fe1..824a1ccb4 100644 --- a/src/checkout/model_additional_data_temporary_services.go +++ b/src/checkout/model_additional_data_temporary_services.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalDataTemporaryServices type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_additional_data_wallets.go b/src/checkout/model_additional_data_wallets.go index c72361b62..3465fba42 100644 --- a/src/checkout/model_additional_data_wallets.go +++ b/src/checkout/model_additional_data_wallets.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalDataWallets type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_address.go b/src/checkout/model_address.go index 9c0022090..fe5dd12ba 100644 --- a/src/checkout/model_address.go +++ b/src/checkout/model_address.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Address type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_afterpay_details.go b/src/checkout/model_afterpay_details.go index c1c31840e..984b602ed 100644 --- a/src/checkout/model_afterpay_details.go +++ b/src/checkout/model_afterpay_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AfterpayDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_amazon_pay_details.go b/src/checkout/model_amazon_pay_details.go index b1efc72f0..9a26fe09d 100644 --- a/src/checkout/model_amazon_pay_details.go +++ b/src/checkout/model_amazon_pay_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AmazonPayDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_amount.go b/src/checkout/model_amount.go index 22b990a75..03fc5b3f9 100644 --- a/src/checkout/model_amount.go +++ b/src/checkout/model_amount.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Amount type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_amounts.go b/src/checkout/model_amounts.go index d541d85e7..f309e2527 100644 --- a/src/checkout/model_amounts.go +++ b/src/checkout/model_amounts.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Amounts type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_ancv_details.go b/src/checkout/model_ancv_details.go index 206290f1a..3d8e526a5 100644 --- a/src/checkout/model_ancv_details.go +++ b/src/checkout/model_ancv_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AncvDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_android_pay_details.go b/src/checkout/model_android_pay_details.go index 1e960cfc2..a277f566c 100644 --- a/src/checkout/model_android_pay_details.go +++ b/src/checkout/model_android_pay_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AndroidPayDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_apple_pay_details.go b/src/checkout/model_apple_pay_details.go index 3cc995a07..7f9952755 100644 --- a/src/checkout/model_apple_pay_details.go +++ b/src/checkout/model_apple_pay_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ApplePayDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_apple_pay_donations.go b/src/checkout/model_apple_pay_donations.go index b9670dc68..fbdbd4ff1 100644 --- a/src/checkout/model_apple_pay_donations.go +++ b/src/checkout/model_apple_pay_donations.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ApplePayDonations type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_apple_pay_session_request.go b/src/checkout/model_apple_pay_session_request.go index f0e4604ee..dc3455bbd 100644 --- a/src/checkout/model_apple_pay_session_request.go +++ b/src/checkout/model_apple_pay_session_request.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ApplePaySessionRequest type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_apple_pay_session_response.go b/src/checkout/model_apple_pay_session_response.go index 9c6adaf4e..e02190972 100644 --- a/src/checkout/model_apple_pay_session_response.go +++ b/src/checkout/model_apple_pay_session_response.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ApplePaySessionResponse type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_application_info.go b/src/checkout/model_application_info.go index dca8b794f..261636829 100644 --- a/src/checkout/model_application_info.go +++ b/src/checkout/model_application_info.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ApplicationInfo type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_authentication_data.go b/src/checkout/model_authentication_data.go index c31241caf..2428f35f3 100644 --- a/src/checkout/model_authentication_data.go +++ b/src/checkout/model_authentication_data.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AuthenticationData type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_avs.go b/src/checkout/model_avs.go index fa5356160..7ae4fec7e 100644 --- a/src/checkout/model_avs.go +++ b/src/checkout/model_avs.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Avs type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_bacs_direct_debit_details.go b/src/checkout/model_bacs_direct_debit_details.go index 28239237e..234407506 100644 --- a/src/checkout/model_bacs_direct_debit_details.go +++ b/src/checkout/model_bacs_direct_debit_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BacsDirectDebitDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_balance_check_request.go b/src/checkout/model_balance_check_request.go index 5a450384f..977238f1b 100644 --- a/src/checkout/model_balance_check_request.go +++ b/src/checkout/model_balance_check_request.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BalanceCheckRequest type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_balance_check_response.go b/src/checkout/model_balance_check_response.go index 6c54cdf0e..6d7c4ecb3 100644 --- a/src/checkout/model_balance_check_response.go +++ b/src/checkout/model_balance_check_response.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BalanceCheckResponse type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_bank_account.go b/src/checkout/model_bank_account.go index bb4275380..983ddb024 100644 --- a/src/checkout/model_bank_account.go +++ b/src/checkout/model_bank_account.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BankAccount type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_bill_desk_details.go b/src/checkout/model_bill_desk_details.go index 901edeebb..8e3e8e68a 100644 --- a/src/checkout/model_bill_desk_details.go +++ b/src/checkout/model_bill_desk_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BillDeskDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_billing_address.go b/src/checkout/model_billing_address.go index 621f9f9b4..e20147347 100644 --- a/src/checkout/model_billing_address.go +++ b/src/checkout/model_billing_address.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BillingAddress type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_blik_details.go b/src/checkout/model_blik_details.go index 06a9f018a..03a8fadb8 100644 --- a/src/checkout/model_blik_details.go +++ b/src/checkout/model_blik_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BlikDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_browser_info.go b/src/checkout/model_browser_info.go index f366839fe..504ccfc64 100644 --- a/src/checkout/model_browser_info.go +++ b/src/checkout/model_browser_info.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BrowserInfo type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_cancel_order_request.go b/src/checkout/model_cancel_order_request.go index fe88d135c..7b3fb6dd6 100644 --- a/src/checkout/model_cancel_order_request.go +++ b/src/checkout/model_cancel_order_request.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CancelOrderRequest type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_cancel_order_response.go b/src/checkout/model_cancel_order_response.go index f3576f719..a039836b4 100644 --- a/src/checkout/model_cancel_order_response.go +++ b/src/checkout/model_cancel_order_response.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CancelOrderResponse type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_card.go b/src/checkout/model_card.go index 00b5bb172..ba498f25b 100644 --- a/src/checkout/model_card.go +++ b/src/checkout/model_card.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Card type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_card_brand_details.go b/src/checkout/model_card_brand_details.go index 3a1af17ba..dec11e6eb 100644 --- a/src/checkout/model_card_brand_details.go +++ b/src/checkout/model_card_brand_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CardBrandDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_card_details.go b/src/checkout/model_card_details.go index 00d91424b..23c2e413c 100644 --- a/src/checkout/model_card_details.go +++ b/src/checkout/model_card_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CardDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_card_details_request.go b/src/checkout/model_card_details_request.go index dd531bb89..b9d66a86c 100644 --- a/src/checkout/model_card_details_request.go +++ b/src/checkout/model_card_details_request.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CardDetailsRequest type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_card_details_response.go b/src/checkout/model_card_details_response.go index 37c9f1d5b..f2272eca3 100644 --- a/src/checkout/model_card_details_response.go +++ b/src/checkout/model_card_details_response.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CardDetailsResponse type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_card_donations.go b/src/checkout/model_card_donations.go index d37f09f95..272b277ca 100644 --- a/src/checkout/model_card_donations.go +++ b/src/checkout/model_card_donations.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CardDonations type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_cash_app_details.go b/src/checkout/model_cash_app_details.go index f49b287a0..6f341fbbc 100644 --- a/src/checkout/model_cash_app_details.go +++ b/src/checkout/model_cash_app_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CashAppDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_cellulant_details.go b/src/checkout/model_cellulant_details.go index 7dbf6ae1f..e6d5fc774 100644 --- a/src/checkout/model_cellulant_details.go +++ b/src/checkout/model_cellulant_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CellulantDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_checkout_await_action.go b/src/checkout/model_checkout_await_action.go index ce7d11639..14c3de9db 100644 --- a/src/checkout/model_checkout_await_action.go +++ b/src/checkout/model_checkout_await_action.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CheckoutAwaitAction type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_checkout_delegated_authentication_action.go b/src/checkout/model_checkout_delegated_authentication_action.go index 069435066..a04b913c1 100644 --- a/src/checkout/model_checkout_delegated_authentication_action.go +++ b/src/checkout/model_checkout_delegated_authentication_action.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CheckoutDelegatedAuthenticationAction type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_checkout_native_redirect_action.go b/src/checkout/model_checkout_native_redirect_action.go index 710cac984..538633ed6 100644 --- a/src/checkout/model_checkout_native_redirect_action.go +++ b/src/checkout/model_checkout_native_redirect_action.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CheckoutNativeRedirectAction type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_checkout_order_response.go b/src/checkout/model_checkout_order_response.go index 08444ec90..ecc00b1e9 100644 --- a/src/checkout/model_checkout_order_response.go +++ b/src/checkout/model_checkout_order_response.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CheckoutOrderResponse type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_checkout_qr_code_action.go b/src/checkout/model_checkout_qr_code_action.go index 46dd45f6f..7bd191423 100644 --- a/src/checkout/model_checkout_qr_code_action.go +++ b/src/checkout/model_checkout_qr_code_action.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CheckoutQrCodeAction type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_checkout_redirect_action.go b/src/checkout/model_checkout_redirect_action.go index 9f49a8aa5..195bac411 100644 --- a/src/checkout/model_checkout_redirect_action.go +++ b/src/checkout/model_checkout_redirect_action.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CheckoutRedirectAction type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_checkout_sdk_action.go b/src/checkout/model_checkout_sdk_action.go index 6ff6decef..06d88a5d8 100644 --- a/src/checkout/model_checkout_sdk_action.go +++ b/src/checkout/model_checkout_sdk_action.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CheckoutSDKAction type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_checkout_session_installment_option.go b/src/checkout/model_checkout_session_installment_option.go index 04c24d04d..4f0e13ab8 100644 --- a/src/checkout/model_checkout_session_installment_option.go +++ b/src/checkout/model_checkout_session_installment_option.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CheckoutSessionInstallmentOption type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_checkout_session_three_ds2_request_data.go b/src/checkout/model_checkout_session_three_ds2_request_data.go index 1c6220bc9..230627a86 100644 --- a/src/checkout/model_checkout_session_three_ds2_request_data.go +++ b/src/checkout/model_checkout_session_three_ds2_request_data.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CheckoutSessionThreeDS2RequestData type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_checkout_three_ds2_action.go b/src/checkout/model_checkout_three_ds2_action.go index 04d98be92..55aaf8f62 100644 --- a/src/checkout/model_checkout_three_ds2_action.go +++ b/src/checkout/model_checkout_three_ds2_action.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CheckoutThreeDS2Action type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_checkout_voucher_action.go b/src/checkout/model_checkout_voucher_action.go index 2ffde2681..79ec9ab54 100644 --- a/src/checkout/model_checkout_voucher_action.go +++ b/src/checkout/model_checkout_voucher_action.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CheckoutVoucherAction type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_common_field.go b/src/checkout/model_common_field.go index 28aabbe6d..40919ede3 100644 --- a/src/checkout/model_common_field.go +++ b/src/checkout/model_common_field.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CommonField type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_company.go b/src/checkout/model_company.go index 9adfed66d..acf9bb13e 100644 --- a/src/checkout/model_company.go +++ b/src/checkout/model_company.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Company type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_configuration.go b/src/checkout/model_configuration.go index 15073a4e4..128a7086f 100644 --- a/src/checkout/model_configuration.go +++ b/src/checkout/model_configuration.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Configuration type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_create_checkout_session_request.go b/src/checkout/model_create_checkout_session_request.go index f75c4e9bc..4ac1c12d7 100644 --- a/src/checkout/model_create_checkout_session_request.go +++ b/src/checkout/model_create_checkout_session_request.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CreateCheckoutSessionRequest type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_create_checkout_session_response.go b/src/checkout/model_create_checkout_session_response.go index b75f1a186..4a614e83e 100644 --- a/src/checkout/model_create_checkout_session_response.go +++ b/src/checkout/model_create_checkout_session_response.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CreateCheckoutSessionResponse type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_create_order_request.go b/src/checkout/model_create_order_request.go index aa594715d..073a703bc 100644 --- a/src/checkout/model_create_order_request.go +++ b/src/checkout/model_create_order_request.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CreateOrderRequest type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_create_order_response.go b/src/checkout/model_create_order_response.go index 26e8c57dc..f38479327 100644 --- a/src/checkout/model_create_order_response.go +++ b/src/checkout/model_create_order_response.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CreateOrderResponse type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_delivery_address.go b/src/checkout/model_delivery_address.go index 3b9495fdb..627229b64 100644 --- a/src/checkout/model_delivery_address.go +++ b/src/checkout/model_delivery_address.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DeliveryAddress type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_delivery_method.go b/src/checkout/model_delivery_method.go index 470daf766..20b595ab8 100644 --- a/src/checkout/model_delivery_method.go +++ b/src/checkout/model_delivery_method.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DeliveryMethod type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_details_request_authentication_data.go b/src/checkout/model_details_request_authentication_data.go index 65981aa45..d017de344 100644 --- a/src/checkout/model_details_request_authentication_data.go +++ b/src/checkout/model_details_request_authentication_data.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DetailsRequestAuthenticationData type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_device_render_options.go b/src/checkout/model_device_render_options.go index 323357762..a63d553ba 100644 --- a/src/checkout/model_device_render_options.go +++ b/src/checkout/model_device_render_options.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DeviceRenderOptions type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_doku_details.go b/src/checkout/model_doku_details.go index 598fb1329..4ff502685 100644 --- a/src/checkout/model_doku_details.go +++ b/src/checkout/model_doku_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DokuDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_donation.go b/src/checkout/model_donation.go index dbf12d9e7..b7f62fff3 100644 --- a/src/checkout/model_donation.go +++ b/src/checkout/model_donation.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Donation type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_donation_campaign.go b/src/checkout/model_donation_campaign.go index 8904deb21..7950abf8a 100644 --- a/src/checkout/model_donation_campaign.go +++ b/src/checkout/model_donation_campaign.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DonationCampaign type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_donation_campaigns_request.go b/src/checkout/model_donation_campaigns_request.go index 23b30d34e..c6e5b5f48 100644 --- a/src/checkout/model_donation_campaigns_request.go +++ b/src/checkout/model_donation_campaigns_request.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DonationCampaignsRequest type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_donation_campaigns_response.go b/src/checkout/model_donation_campaigns_response.go index b45202d0d..209fa4712 100644 --- a/src/checkout/model_donation_campaigns_response.go +++ b/src/checkout/model_donation_campaigns_response.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DonationCampaignsResponse type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_donation_payment_request.go b/src/checkout/model_donation_payment_request.go index e89adc0d5..d141b37fd 100644 --- a/src/checkout/model_donation_payment_request.go +++ b/src/checkout/model_donation_payment_request.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DonationPaymentRequest type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_donation_payment_response.go b/src/checkout/model_donation_payment_response.go index cf868ada2..c0712e008 100644 --- a/src/checkout/model_donation_payment_response.go +++ b/src/checkout/model_donation_payment_response.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DonationPaymentResponse type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_dotpay_details.go b/src/checkout/model_dotpay_details.go index 34edcc479..adc564976 100644 --- a/src/checkout/model_dotpay_details.go +++ b/src/checkout/model_dotpay_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DotpayDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_dragonpay_details.go b/src/checkout/model_dragonpay_details.go index 4ef0b0cd6..2ec18299a 100644 --- a/src/checkout/model_dragonpay_details.go +++ b/src/checkout/model_dragonpay_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DragonpayDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_econtext_voucher_details.go b/src/checkout/model_econtext_voucher_details.go index d0453cf1f..5d09dea40 100644 --- a/src/checkout/model_econtext_voucher_details.go +++ b/src/checkout/model_econtext_voucher_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the EcontextVoucherDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_encrypted_order_data.go b/src/checkout/model_encrypted_order_data.go index 5c47de8f2..9887dac02 100644 --- a/src/checkout/model_encrypted_order_data.go +++ b/src/checkout/model_encrypted_order_data.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the EncryptedOrderData type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_external_platform.go b/src/checkout/model_external_platform.go index fced87efd..212d3483e 100644 --- a/src/checkout/model_external_platform.go +++ b/src/checkout/model_external_platform.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ExternalPlatform type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_forex_quote.go b/src/checkout/model_forex_quote.go index 1e67a9952..fbe590969 100644 --- a/src/checkout/model_forex_quote.go +++ b/src/checkout/model_forex_quote.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ForexQuote type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_fraud_check_result.go b/src/checkout/model_fraud_check_result.go index 5da83f7f3..76a1d9d7c 100644 --- a/src/checkout/model_fraud_check_result.go +++ b/src/checkout/model_fraud_check_result.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the FraudCheckResult type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_fraud_result.go b/src/checkout/model_fraud_result.go index 0c3392826..630b99cf2 100644 --- a/src/checkout/model_fraud_result.go +++ b/src/checkout/model_fraud_result.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the FraudResult type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_fund_origin.go b/src/checkout/model_fund_origin.go index f570efe62..77723184c 100644 --- a/src/checkout/model_fund_origin.go +++ b/src/checkout/model_fund_origin.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the FundOrigin type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_fund_recipient.go b/src/checkout/model_fund_recipient.go index 92d86bc06..935bae7b9 100644 --- a/src/checkout/model_fund_recipient.go +++ b/src/checkout/model_fund_recipient.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the FundRecipient type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_generic_issuer_payment_method_details.go b/src/checkout/model_generic_issuer_payment_method_details.go index 67bc4492f..4e78c604f 100644 --- a/src/checkout/model_generic_issuer_payment_method_details.go +++ b/src/checkout/model_generic_issuer_payment_method_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the GenericIssuerPaymentMethodDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_giropay_details.go b/src/checkout/model_giropay_details.go index e113e518f..ba9818cf5 100644 --- a/src/checkout/model_giropay_details.go +++ b/src/checkout/model_giropay_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the GiropayDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_google_pay_details.go b/src/checkout/model_google_pay_details.go index ab23502ba..a98a4ecbd 100644 --- a/src/checkout/model_google_pay_details.go +++ b/src/checkout/model_google_pay_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the GooglePayDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_google_pay_donations.go b/src/checkout/model_google_pay_donations.go index de7db45a0..804f23891 100644 --- a/src/checkout/model_google_pay_donations.go +++ b/src/checkout/model_google_pay_donations.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the GooglePayDonations type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_ideal_details.go b/src/checkout/model_ideal_details.go index a0f3d740d..efbd046cc 100644 --- a/src/checkout/model_ideal_details.go +++ b/src/checkout/model_ideal_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the IdealDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_ideal_donations.go b/src/checkout/model_ideal_donations.go index df7d4baa3..d51037aa1 100644 --- a/src/checkout/model_ideal_donations.go +++ b/src/checkout/model_ideal_donations.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the IdealDonations type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_input_detail.go b/src/checkout/model_input_detail.go index 829ba9e4a..57e89c0ee 100644 --- a/src/checkout/model_input_detail.go +++ b/src/checkout/model_input_detail.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the InputDetail type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_installment_option.go b/src/checkout/model_installment_option.go index 65d56c0ab..1b07aa065 100644 --- a/src/checkout/model_installment_option.go +++ b/src/checkout/model_installment_option.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the InstallmentOption type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_installments.go b/src/checkout/model_installments.go index 789288628..4d6f17bd5 100644 --- a/src/checkout/model_installments.go +++ b/src/checkout/model_installments.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Installments type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_installments_number.go b/src/checkout/model_installments_number.go index bbef7b4fb..fa5885701 100644 --- a/src/checkout/model_installments_number.go +++ b/src/checkout/model_installments_number.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the InstallmentsNumber type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_item.go b/src/checkout/model_item.go index 3b1e42546..3f1558336 100644 --- a/src/checkout/model_item.go +++ b/src/checkout/model_item.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Item type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_klarna_details.go b/src/checkout/model_klarna_details.go index ec2e6c989..bb362bafe 100644 --- a/src/checkout/model_klarna_details.go +++ b/src/checkout/model_klarna_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the KlarnaDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_line_item.go b/src/checkout/model_line_item.go index 13d999acc..d1137fd05 100644 --- a/src/checkout/model_line_item.go +++ b/src/checkout/model_line_item.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the LineItem type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_list_stored_payment_methods_response.go b/src/checkout/model_list_stored_payment_methods_response.go index f1d243c06..badbd1167 100644 --- a/src/checkout/model_list_stored_payment_methods_response.go +++ b/src/checkout/model_list_stored_payment_methods_response.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ListStoredPaymentMethodsResponse type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_mandate.go b/src/checkout/model_mandate.go index cc6941bbc..608a4de8f 100644 --- a/src/checkout/model_mandate.go +++ b/src/checkout/model_mandate.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Mandate type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_masterpass_details.go b/src/checkout/model_masterpass_details.go index 436bfbe7d..b8c3d63d2 100644 --- a/src/checkout/model_masterpass_details.go +++ b/src/checkout/model_masterpass_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the MasterpassDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_mbway_details.go b/src/checkout/model_mbway_details.go index cc4f60ca7..7041ffc5b 100644 --- a/src/checkout/model_mbway_details.go +++ b/src/checkout/model_mbway_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the MbwayDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_merchant_device.go b/src/checkout/model_merchant_device.go index e26173e2b..ce0ca44b2 100644 --- a/src/checkout/model_merchant_device.go +++ b/src/checkout/model_merchant_device.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the MerchantDevice type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_merchant_risk_indicator.go b/src/checkout/model_merchant_risk_indicator.go index 49f48794c..768c38936 100644 --- a/src/checkout/model_merchant_risk_indicator.go +++ b/src/checkout/model_merchant_risk_indicator.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the MerchantRiskIndicator type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_mobile_pay_details.go b/src/checkout/model_mobile_pay_details.go index 9f7c4a161..9de7a1897 100644 --- a/src/checkout/model_mobile_pay_details.go +++ b/src/checkout/model_mobile_pay_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the MobilePayDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_mol_pay_details.go b/src/checkout/model_mol_pay_details.go index 39d9dc262..1fb43b289 100644 --- a/src/checkout/model_mol_pay_details.go +++ b/src/checkout/model_mol_pay_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the MolPayDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_name.go b/src/checkout/model_name.go index 17410563b..a85526e11 100644 --- a/src/checkout/model_name.go +++ b/src/checkout/model_name.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Name type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_open_invoice_details.go b/src/checkout/model_open_invoice_details.go index 83f05fdbc..1eddfa5d9 100644 --- a/src/checkout/model_open_invoice_details.go +++ b/src/checkout/model_open_invoice_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the OpenInvoiceDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_pay_by_bank_details.go b/src/checkout/model_pay_by_bank_details.go index 1a27d0c3f..fa520b10b 100644 --- a/src/checkout/model_pay_by_bank_details.go +++ b/src/checkout/model_pay_by_bank_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PayByBankDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_pay_pal_details.go b/src/checkout/model_pay_pal_details.go index 23358ac3b..1ecc8c8ce 100644 --- a/src/checkout/model_pay_pal_details.go +++ b/src/checkout/model_pay_pal_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PayPalDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_pay_u_upi_details.go b/src/checkout/model_pay_u_upi_details.go index 84ad393bc..5aae73586 100644 --- a/src/checkout/model_pay_u_upi_details.go +++ b/src/checkout/model_pay_u_upi_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PayUUpiDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_pay_with_google_details.go b/src/checkout/model_pay_with_google_details.go index 644facd36..795f47378 100644 --- a/src/checkout/model_pay_with_google_details.go +++ b/src/checkout/model_pay_with_google_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PayWithGoogleDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_pay_with_google_donations.go b/src/checkout/model_pay_with_google_donations.go index 0479d02a5..b0ceda5bf 100644 --- a/src/checkout/model_pay_with_google_donations.go +++ b/src/checkout/model_pay_with_google_donations.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PayWithGoogleDonations type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_amount_update_request.go b/src/checkout/model_payment_amount_update_request.go index a47754aa8..0abd82282 100644 --- a/src/checkout/model_payment_amount_update_request.go +++ b/src/checkout/model_payment_amount_update_request.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentAmountUpdateRequest type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_amount_update_response.go b/src/checkout/model_payment_amount_update_response.go index fac19badd..e1f080e0c 100644 --- a/src/checkout/model_payment_amount_update_response.go +++ b/src/checkout/model_payment_amount_update_response.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentAmountUpdateResponse type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_cancel_request.go b/src/checkout/model_payment_cancel_request.go index 301faaf0c..1d1b31901 100644 --- a/src/checkout/model_payment_cancel_request.go +++ b/src/checkout/model_payment_cancel_request.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentCancelRequest type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_cancel_response.go b/src/checkout/model_payment_cancel_response.go index 836a6927a..0546e0593 100644 --- a/src/checkout/model_payment_cancel_response.go +++ b/src/checkout/model_payment_cancel_response.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentCancelResponse type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_capture_request.go b/src/checkout/model_payment_capture_request.go index 92bea2573..602ac98aa 100644 --- a/src/checkout/model_payment_capture_request.go +++ b/src/checkout/model_payment_capture_request.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentCaptureRequest type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_capture_response.go b/src/checkout/model_payment_capture_response.go index 3518bd1c9..00fcf009a 100644 --- a/src/checkout/model_payment_capture_response.go +++ b/src/checkout/model_payment_capture_response.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentCaptureResponse type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_completion_details.go b/src/checkout/model_payment_completion_details.go index 87db48e89..5cd02ad4d 100644 --- a/src/checkout/model_payment_completion_details.go +++ b/src/checkout/model_payment_completion_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentCompletionDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_details.go b/src/checkout/model_payment_details.go index 32ce4b292..4cc26b5c9 100644 --- a/src/checkout/model_payment_details.go +++ b/src/checkout/model_payment_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_details_request.go b/src/checkout/model_payment_details_request.go index a17987121..e4fad6aa3 100644 --- a/src/checkout/model_payment_details_request.go +++ b/src/checkout/model_payment_details_request.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentDetailsRequest type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_details_response.go b/src/checkout/model_payment_details_response.go index bb422518c..d0df541b2 100644 --- a/src/checkout/model_payment_details_response.go +++ b/src/checkout/model_payment_details_response.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentDetailsResponse type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_link_request.go b/src/checkout/model_payment_link_request.go index 1939845f8..e85f0d175 100644 --- a/src/checkout/model_payment_link_request.go +++ b/src/checkout/model_payment_link_request.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentLinkRequest type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_link_response.go b/src/checkout/model_payment_link_response.go index 745d69ebd..7da6924bc 100644 --- a/src/checkout/model_payment_link_response.go +++ b/src/checkout/model_payment_link_response.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentLinkResponse type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_method.go b/src/checkout/model_payment_method.go index 66f6b7845..d56c4a9be 100644 --- a/src/checkout/model_payment_method.go +++ b/src/checkout/model_payment_method.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentMethod type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_method_group.go b/src/checkout/model_payment_method_group.go index 257e8f891..d36e96fc8 100644 --- a/src/checkout/model_payment_method_group.go +++ b/src/checkout/model_payment_method_group.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentMethodGroup type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_method_issuer.go b/src/checkout/model_payment_method_issuer.go index 44eb809f5..860c2ff67 100644 --- a/src/checkout/model_payment_method_issuer.go +++ b/src/checkout/model_payment_method_issuer.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentMethodIssuer type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_method_to_store.go b/src/checkout/model_payment_method_to_store.go index e1511ed78..985c3c007 100644 --- a/src/checkout/model_payment_method_to_store.go +++ b/src/checkout/model_payment_method_to_store.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentMethodToStore type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_method_upi_apps.go b/src/checkout/model_payment_method_upi_apps.go index c35f673a4..b08e9a6f6 100644 --- a/src/checkout/model_payment_method_upi_apps.go +++ b/src/checkout/model_payment_method_upi_apps.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentMethodUPIApps type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_methods_request.go b/src/checkout/model_payment_methods_request.go index 01de2ecc7..073d5492b 100644 --- a/src/checkout/model_payment_methods_request.go +++ b/src/checkout/model_payment_methods_request.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentMethodsRequest type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_methods_response.go b/src/checkout/model_payment_methods_response.go index 4735b9e2d..faae83657 100644 --- a/src/checkout/model_payment_methods_response.go +++ b/src/checkout/model_payment_methods_response.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentMethodsResponse type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_refund_request.go b/src/checkout/model_payment_refund_request.go index 868f5b74b..a3833692e 100644 --- a/src/checkout/model_payment_refund_request.go +++ b/src/checkout/model_payment_refund_request.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentRefundRequest type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_refund_response.go b/src/checkout/model_payment_refund_response.go index f85a897ff..e06d48329 100644 --- a/src/checkout/model_payment_refund_response.go +++ b/src/checkout/model_payment_refund_response.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentRefundResponse type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_request.go b/src/checkout/model_payment_request.go index b2dc7e3b1..7366d59d1 100644 --- a/src/checkout/model_payment_request.go +++ b/src/checkout/model_payment_request.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentRequest type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_response.go b/src/checkout/model_payment_response.go index 14d7d6ec8..8fbd04932 100644 --- a/src/checkout/model_payment_response.go +++ b/src/checkout/model_payment_response.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentResponse type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_reversal_request.go b/src/checkout/model_payment_reversal_request.go index 53567f416..1819218f2 100644 --- a/src/checkout/model_payment_reversal_request.go +++ b/src/checkout/model_payment_reversal_request.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentReversalRequest type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_reversal_response.go b/src/checkout/model_payment_reversal_response.go index a9fa72b73..42f2b1bbb 100644 --- a/src/checkout/model_payment_reversal_response.go +++ b/src/checkout/model_payment_reversal_response.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentReversalResponse type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_setup_request.go b/src/checkout/model_payment_setup_request.go index 247389f2e..de7a7deac 100644 --- a/src/checkout/model_payment_setup_request.go +++ b/src/checkout/model_payment_setup_request.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentSetupRequest type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_setup_response.go b/src/checkout/model_payment_setup_response.go index 702a016cf..6637b6926 100644 --- a/src/checkout/model_payment_setup_response.go +++ b/src/checkout/model_payment_setup_response.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentSetupResponse type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_verification_request.go b/src/checkout/model_payment_verification_request.go index 920dde75f..dc8d3437c 100644 --- a/src/checkout/model_payment_verification_request.go +++ b/src/checkout/model_payment_verification_request.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentVerificationRequest type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_verification_response.go b/src/checkout/model_payment_verification_response.go index 3e7b011f4..e240bd686 100644 --- a/src/checkout/model_payment_verification_response.go +++ b/src/checkout/model_payment_verification_response.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentVerificationResponse type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_paypal_update_order_request.go b/src/checkout/model_paypal_update_order_request.go index 50114d0c6..4802de05a 100644 --- a/src/checkout/model_paypal_update_order_request.go +++ b/src/checkout/model_paypal_update_order_request.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaypalUpdateOrderRequest type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_paypal_update_order_response.go b/src/checkout/model_paypal_update_order_response.go index 8f30c7b15..5604a3b0c 100644 --- a/src/checkout/model_paypal_update_order_response.go +++ b/src/checkout/model_paypal_update_order_response.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaypalUpdateOrderResponse type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_phone.go b/src/checkout/model_phone.go index 41cb10bdc..caba8aefb 100644 --- a/src/checkout/model_phone.go +++ b/src/checkout/model_phone.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Phone type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_platform_chargeback_logic.go b/src/checkout/model_platform_chargeback_logic.go index 7a2894d3a..df300205b 100644 --- a/src/checkout/model_platform_chargeback_logic.go +++ b/src/checkout/model_platform_chargeback_logic.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PlatformChargebackLogic type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_ratepay_details.go b/src/checkout/model_ratepay_details.go index a5372f897..a71531f3f 100644 --- a/src/checkout/model_ratepay_details.go +++ b/src/checkout/model_ratepay_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the RatepayDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_recurring.go b/src/checkout/model_recurring.go index edac8c357..4df1bdd92 100644 --- a/src/checkout/model_recurring.go +++ b/src/checkout/model_recurring.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Recurring type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_recurring_detail.go b/src/checkout/model_recurring_detail.go index b05c609eb..d6d5e10dd 100644 --- a/src/checkout/model_recurring_detail.go +++ b/src/checkout/model_recurring_detail.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the RecurringDetail type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_response_additional_data3_d_secure.go b/src/checkout/model_response_additional_data3_d_secure.go index 66297bba1..7f0f56f43 100644 --- a/src/checkout/model_response_additional_data3_d_secure.go +++ b/src/checkout/model_response_additional_data3_d_secure.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResponseAdditionalData3DSecure type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_response_additional_data_billing_address.go b/src/checkout/model_response_additional_data_billing_address.go index d59c48aa1..db40c89b7 100644 --- a/src/checkout/model_response_additional_data_billing_address.go +++ b/src/checkout/model_response_additional_data_billing_address.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResponseAdditionalDataBillingAddress type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_response_additional_data_card.go b/src/checkout/model_response_additional_data_card.go index 70b96ea30..f00f292c3 100644 --- a/src/checkout/model_response_additional_data_card.go +++ b/src/checkout/model_response_additional_data_card.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResponseAdditionalDataCard type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_response_additional_data_common.go b/src/checkout/model_response_additional_data_common.go index 5735b6ec1..82ac9b7ff 100644 --- a/src/checkout/model_response_additional_data_common.go +++ b/src/checkout/model_response_additional_data_common.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResponseAdditionalDataCommon type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_response_additional_data_domestic_error.go b/src/checkout/model_response_additional_data_domestic_error.go index 6601b2d7d..42312f2f5 100644 --- a/src/checkout/model_response_additional_data_domestic_error.go +++ b/src/checkout/model_response_additional_data_domestic_error.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResponseAdditionalDataDomesticError type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_response_additional_data_installments.go b/src/checkout/model_response_additional_data_installments.go index 190276d6e..8ed07e3cd 100644 --- a/src/checkout/model_response_additional_data_installments.go +++ b/src/checkout/model_response_additional_data_installments.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResponseAdditionalDataInstallments type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_response_additional_data_network_tokens.go b/src/checkout/model_response_additional_data_network_tokens.go index e236268ae..247690b2a 100644 --- a/src/checkout/model_response_additional_data_network_tokens.go +++ b/src/checkout/model_response_additional_data_network_tokens.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResponseAdditionalDataNetworkTokens type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_response_additional_data_opi.go b/src/checkout/model_response_additional_data_opi.go index f8eb7cd79..03b01f9b1 100644 --- a/src/checkout/model_response_additional_data_opi.go +++ b/src/checkout/model_response_additional_data_opi.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResponseAdditionalDataOpi type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_response_additional_data_sepa.go b/src/checkout/model_response_additional_data_sepa.go index 803c6dad2..d1d581017 100644 --- a/src/checkout/model_response_additional_data_sepa.go +++ b/src/checkout/model_response_additional_data_sepa.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResponseAdditionalDataSepa type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_response_payment_method.go b/src/checkout/model_response_payment_method.go index 3dd489ab2..77aedb686 100644 --- a/src/checkout/model_response_payment_method.go +++ b/src/checkout/model_response_payment_method.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResponsePaymentMethod type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_risk_data.go b/src/checkout/model_risk_data.go index 800449622..b6b9319db 100644 --- a/src/checkout/model_risk_data.go +++ b/src/checkout/model_risk_data.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the RiskData type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_samsung_pay_details.go b/src/checkout/model_samsung_pay_details.go index 6969adf4c..55436a0ab 100644 --- a/src/checkout/model_samsung_pay_details.go +++ b/src/checkout/model_samsung_pay_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SamsungPayDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_sdk_ephem_pub_key.go b/src/checkout/model_sdk_ephem_pub_key.go index 162137059..1232a2d2c 100644 --- a/src/checkout/model_sdk_ephem_pub_key.go +++ b/src/checkout/model_sdk_ephem_pub_key.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SDKEphemPubKey type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_secure_remote_commerce_checkout_data.go b/src/checkout/model_secure_remote_commerce_checkout_data.go index 521fb11cf..b83dcd9a5 100644 --- a/src/checkout/model_secure_remote_commerce_checkout_data.go +++ b/src/checkout/model_secure_remote_commerce_checkout_data.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SecureRemoteCommerceCheckoutData type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_sepa_direct_debit_details.go b/src/checkout/model_sepa_direct_debit_details.go index 8ec86a62b..bc202f76f 100644 --- a/src/checkout/model_sepa_direct_debit_details.go +++ b/src/checkout/model_sepa_direct_debit_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SepaDirectDebitDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_service_error.go b/src/checkout/model_service_error.go index 008b112fb..7417d8d89 100644 --- a/src/checkout/model_service_error.go +++ b/src/checkout/model_service_error.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ServiceError type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_service_error_details.go b/src/checkout/model_service_error_details.go index 1b93eee90..3867aea40 100644 --- a/src/checkout/model_service_error_details.go +++ b/src/checkout/model_service_error_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ServiceErrorDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_session_result_response.go b/src/checkout/model_session_result_response.go index 0a64c6b6d..4959978be 100644 --- a/src/checkout/model_session_result_response.go +++ b/src/checkout/model_session_result_response.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SessionResultResponse type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_shopper_input.go b/src/checkout/model_shopper_input.go index a10294f3c..36ca8261b 100644 --- a/src/checkout/model_shopper_input.go +++ b/src/checkout/model_shopper_input.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ShopperInput type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_shopper_interaction_device.go b/src/checkout/model_shopper_interaction_device.go index 25a311dd8..7ecd700c3 100644 --- a/src/checkout/model_shopper_interaction_device.go +++ b/src/checkout/model_shopper_interaction_device.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ShopperInteractionDevice type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_split.go b/src/checkout/model_split.go index adc7cb5fa..18338de94 100644 --- a/src/checkout/model_split.go +++ b/src/checkout/model_split.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Split type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_split_amount.go b/src/checkout/model_split_amount.go index e63d5ef1a..118da1d63 100644 --- a/src/checkout/model_split_amount.go +++ b/src/checkout/model_split_amount.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SplitAmount type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_standalone_payment_cancel_request.go b/src/checkout/model_standalone_payment_cancel_request.go index 4fbbca41e..fea9253a8 100644 --- a/src/checkout/model_standalone_payment_cancel_request.go +++ b/src/checkout/model_standalone_payment_cancel_request.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StandalonePaymentCancelRequest type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_standalone_payment_cancel_response.go b/src/checkout/model_standalone_payment_cancel_response.go index b21fd5e71..341dbe18e 100644 --- a/src/checkout/model_standalone_payment_cancel_response.go +++ b/src/checkout/model_standalone_payment_cancel_response.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StandalonePaymentCancelResponse type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_stored_details.go b/src/checkout/model_stored_details.go index d5caaae96..85c6165fd 100644 --- a/src/checkout/model_stored_details.go +++ b/src/checkout/model_stored_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StoredDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_stored_payment_method.go b/src/checkout/model_stored_payment_method.go index 435d2c4ce..18803a4c9 100644 --- a/src/checkout/model_stored_payment_method.go +++ b/src/checkout/model_stored_payment_method.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StoredPaymentMethod type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_stored_payment_method_details.go b/src/checkout/model_stored_payment_method_details.go index e53484752..ad44908f4 100644 --- a/src/checkout/model_stored_payment_method_details.go +++ b/src/checkout/model_stored_payment_method_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StoredPaymentMethodDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_stored_payment_method_request.go b/src/checkout/model_stored_payment_method_request.go index 5c080c4e5..9c7236c6e 100644 --- a/src/checkout/model_stored_payment_method_request.go +++ b/src/checkout/model_stored_payment_method_request.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StoredPaymentMethodRequest type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_stored_payment_method_resource.go b/src/checkout/model_stored_payment_method_resource.go index ba9e0785e..d0bfd5ef7 100644 --- a/src/checkout/model_stored_payment_method_resource.go +++ b/src/checkout/model_stored_payment_method_resource.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StoredPaymentMethodResource type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_sub_input_detail.go b/src/checkout/model_sub_input_detail.go index 55ba3e6ff..dd3a24241 100644 --- a/src/checkout/model_sub_input_detail.go +++ b/src/checkout/model_sub_input_detail.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SubInputDetail type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_sub_merchant.go b/src/checkout/model_sub_merchant.go index 474d73c34..d8af45193 100644 --- a/src/checkout/model_sub_merchant.go +++ b/src/checkout/model_sub_merchant.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SubMerchant type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_sub_merchant_info.go b/src/checkout/model_sub_merchant_info.go index a28305c35..b40808b8b 100644 --- a/src/checkout/model_sub_merchant_info.go +++ b/src/checkout/model_sub_merchant_info.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SubMerchantInfo type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_tax_total.go b/src/checkout/model_tax_total.go index 1239d1542..2d7c35e92 100644 --- a/src/checkout/model_tax_total.go +++ b/src/checkout/model_tax_total.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TaxTotal type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_three_d_secure_data.go b/src/checkout/model_three_d_secure_data.go index 1a9e4ef9d..7d6eaf38e 100644 --- a/src/checkout/model_three_d_secure_data.go +++ b/src/checkout/model_three_d_secure_data.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ThreeDSecureData type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_three_ds2_request_data.go b/src/checkout/model_three_ds2_request_data.go index 42f26ffd8..e4b266b73 100644 --- a/src/checkout/model_three_ds2_request_data.go +++ b/src/checkout/model_three_ds2_request_data.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ThreeDS2RequestData type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_three_ds2_request_fields.go b/src/checkout/model_three_ds2_request_fields.go index ede1dd872..18b8d5d56 100644 --- a/src/checkout/model_three_ds2_request_fields.go +++ b/src/checkout/model_three_ds2_request_fields.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ThreeDS2RequestFields type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_three_ds2_response_data.go b/src/checkout/model_three_ds2_response_data.go index 7ffd35548..5e7fd5dba 100644 --- a/src/checkout/model_three_ds2_response_data.go +++ b/src/checkout/model_three_ds2_response_data.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ThreeDS2ResponseData type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_three_ds2_result.go b/src/checkout/model_three_ds2_result.go index b60c57a14..a8f260460 100644 --- a/src/checkout/model_three_ds2_result.go +++ b/src/checkout/model_three_ds2_result.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ThreeDS2Result type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_three_ds_request_data.go b/src/checkout/model_three_ds_request_data.go index 7e6041086..5bfe32059 100644 --- a/src/checkout/model_three_ds_request_data.go +++ b/src/checkout/model_three_ds_request_data.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ThreeDSRequestData type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_three_ds_requestor_authentication_info.go b/src/checkout/model_three_ds_requestor_authentication_info.go index 0f987536f..d629bb8c9 100644 --- a/src/checkout/model_three_ds_requestor_authentication_info.go +++ b/src/checkout/model_three_ds_requestor_authentication_info.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ThreeDSRequestorAuthenticationInfo type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_three_ds_requestor_prior_authentication_info.go b/src/checkout/model_three_ds_requestor_prior_authentication_info.go index 3ba3ea4e9..62e57146a 100644 --- a/src/checkout/model_three_ds_requestor_prior_authentication_info.go +++ b/src/checkout/model_three_ds_requestor_prior_authentication_info.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ThreeDSRequestorPriorAuthenticationInfo type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_update_payment_link_request.go b/src/checkout/model_update_payment_link_request.go index e784fc0f6..e05334b6c 100644 --- a/src/checkout/model_update_payment_link_request.go +++ b/src/checkout/model_update_payment_link_request.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UpdatePaymentLinkRequest type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_upi_collect_details.go b/src/checkout/model_upi_collect_details.go index 6b6a5c187..76a7c8679 100644 --- a/src/checkout/model_upi_collect_details.go +++ b/src/checkout/model_upi_collect_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UpiCollectDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_upi_intent_details.go b/src/checkout/model_upi_intent_details.go index fc2c24bc2..7415cb3a0 100644 --- a/src/checkout/model_upi_intent_details.go +++ b/src/checkout/model_upi_intent_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UpiIntentDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_utility_request.go b/src/checkout/model_utility_request.go index f91b15800..d9fa60785 100644 --- a/src/checkout/model_utility_request.go +++ b/src/checkout/model_utility_request.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UtilityRequest type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_utility_response.go b/src/checkout/model_utility_response.go index 97da4d178..53146fb76 100644 --- a/src/checkout/model_utility_response.go +++ b/src/checkout/model_utility_response.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UtilityResponse type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_vipps_details.go b/src/checkout/model_vipps_details.go index 84a8e00e6..8f2aea894 100644 --- a/src/checkout/model_vipps_details.go +++ b/src/checkout/model_vipps_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the VippsDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_visa_checkout_details.go b/src/checkout/model_visa_checkout_details.go index 8e4c4eb74..f6c3485cb 100644 --- a/src/checkout/model_visa_checkout_details.go +++ b/src/checkout/model_visa_checkout_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the VisaCheckoutDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_we_chat_pay_details.go b/src/checkout/model_we_chat_pay_details.go index 12b5e2b7a..c152aed27 100644 --- a/src/checkout/model_we_chat_pay_details.go +++ b/src/checkout/model_we_chat_pay_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the WeChatPayDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_we_chat_pay_mini_program_details.go b/src/checkout/model_we_chat_pay_mini_program_details.go index 82122b28d..ad89aee56 100644 --- a/src/checkout/model_we_chat_pay_mini_program_details.go +++ b/src/checkout/model_we_chat_pay_mini_program_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the WeChatPayMiniProgramDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_zip_details.go b/src/checkout/model_zip_details.go index 0547f5802..0c24eb551 100644 --- a/src/checkout/model_zip_details.go +++ b/src/checkout/model_zip_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ZipDetails type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_account_holder.go b/src/configurationwebhook/model_account_holder.go index e55bb8db2..6df574efa 100644 --- a/src/configurationwebhook/model_account_holder.go +++ b/src/configurationwebhook/model_account_holder.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AccountHolder type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_account_holder_capability.go b/src/configurationwebhook/model_account_holder_capability.go index 951197aba..762298a70 100644 --- a/src/configurationwebhook/model_account_holder_capability.go +++ b/src/configurationwebhook/model_account_holder_capability.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AccountHolderCapability type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_account_holder_notification_data.go b/src/configurationwebhook/model_account_holder_notification_data.go index 1091cd94c..1f50df14c 100644 --- a/src/configurationwebhook/model_account_holder_notification_data.go +++ b/src/configurationwebhook/model_account_holder_notification_data.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AccountHolderNotificationData type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_account_holder_notification_request.go b/src/configurationwebhook/model_account_holder_notification_request.go index 7b0040940..d957e7309 100644 --- a/src/configurationwebhook/model_account_holder_notification_request.go +++ b/src/configurationwebhook/model_account_holder_notification_request.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AccountHolderNotificationRequest type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_account_supporting_entity_capability.go b/src/configurationwebhook/model_account_supporting_entity_capability.go index 7b258f277..e7cbccb00 100644 --- a/src/configurationwebhook/model_account_supporting_entity_capability.go +++ b/src/configurationwebhook/model_account_supporting_entity_capability.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AccountSupportingEntityCapability type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_address.go b/src/configurationwebhook/model_address.go index b98ead2ed..d173915bf 100644 --- a/src/configurationwebhook/model_address.go +++ b/src/configurationwebhook/model_address.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Address type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_amount.go b/src/configurationwebhook/model_amount.go index a9f9c2567..f384ce11f 100644 --- a/src/configurationwebhook/model_amount.go +++ b/src/configurationwebhook/model_amount.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Amount type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_authentication.go b/src/configurationwebhook/model_authentication.go index 55eb957d1..05890defb 100644 --- a/src/configurationwebhook/model_authentication.go +++ b/src/configurationwebhook/model_authentication.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Authentication type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_balance.go b/src/configurationwebhook/model_balance.go index 7385cd577..4788fefe2 100644 --- a/src/configurationwebhook/model_balance.go +++ b/src/configurationwebhook/model_balance.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Balance type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_balance_account.go b/src/configurationwebhook/model_balance_account.go index e8f4cedfb..d66e6f299 100644 --- a/src/configurationwebhook/model_balance_account.go +++ b/src/configurationwebhook/model_balance_account.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BalanceAccount type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_balance_account_notification_data.go b/src/configurationwebhook/model_balance_account_notification_data.go index 7ac55fa79..4de529ca4 100644 --- a/src/configurationwebhook/model_balance_account_notification_data.go +++ b/src/configurationwebhook/model_balance_account_notification_data.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BalanceAccountNotificationData type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_balance_account_notification_request.go b/src/configurationwebhook/model_balance_account_notification_request.go index 87508501b..2e64aa149 100644 --- a/src/configurationwebhook/model_balance_account_notification_request.go +++ b/src/configurationwebhook/model_balance_account_notification_request.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BalanceAccountNotificationRequest type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_balance_platform_notification_response.go b/src/configurationwebhook/model_balance_platform_notification_response.go index a8a23ad57..f72b2ba9d 100644 --- a/src/configurationwebhook/model_balance_platform_notification_response.go +++ b/src/configurationwebhook/model_balance_platform_notification_response.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BalancePlatformNotificationResponse type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_bank_account_details.go b/src/configurationwebhook/model_bank_account_details.go index 29bbb26b8..c72e0a441 100644 --- a/src/configurationwebhook/model_bank_account_details.go +++ b/src/configurationwebhook/model_bank_account_details.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BankAccountDetails type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_bulk_address.go b/src/configurationwebhook/model_bulk_address.go index 7fa22377e..f29d8d539 100644 --- a/src/configurationwebhook/model_bulk_address.go +++ b/src/configurationwebhook/model_bulk_address.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BulkAddress type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_capability_problem.go b/src/configurationwebhook/model_capability_problem.go index f12e292de..4f2498ca5 100644 --- a/src/configurationwebhook/model_capability_problem.go +++ b/src/configurationwebhook/model_capability_problem.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CapabilityProblem type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_capability_problem_entity.go b/src/configurationwebhook/model_capability_problem_entity.go index 4096d1f8d..5f0c8c889 100644 --- a/src/configurationwebhook/model_capability_problem_entity.go +++ b/src/configurationwebhook/model_capability_problem_entity.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CapabilityProblemEntity type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_capability_problem_entity_recursive.go b/src/configurationwebhook/model_capability_problem_entity_recursive.go index c554dde45..947cdab19 100644 --- a/src/configurationwebhook/model_capability_problem_entity_recursive.go +++ b/src/configurationwebhook/model_capability_problem_entity_recursive.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CapabilityProblemEntityRecursive type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_capability_settings.go b/src/configurationwebhook/model_capability_settings.go index 025da459a..1c8673a6b 100644 --- a/src/configurationwebhook/model_capability_settings.go +++ b/src/configurationwebhook/model_capability_settings.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CapabilitySettings type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_card.go b/src/configurationwebhook/model_card.go index 44fc933ed..ca79d4ed2 100644 --- a/src/configurationwebhook/model_card.go +++ b/src/configurationwebhook/model_card.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Card type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_card_configuration.go b/src/configurationwebhook/model_card_configuration.go index 51ad7cd1d..aaa78500a 100644 --- a/src/configurationwebhook/model_card_configuration.go +++ b/src/configurationwebhook/model_card_configuration.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CardConfiguration type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_card_order_item.go b/src/configurationwebhook/model_card_order_item.go index 2611a7b33..46fa891ee 100644 --- a/src/configurationwebhook/model_card_order_item.go +++ b/src/configurationwebhook/model_card_order_item.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CardOrderItem type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_card_order_item_delivery_status.go b/src/configurationwebhook/model_card_order_item_delivery_status.go index 3c0df45d0..30a065dc1 100644 --- a/src/configurationwebhook/model_card_order_item_delivery_status.go +++ b/src/configurationwebhook/model_card_order_item_delivery_status.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CardOrderItemDeliveryStatus type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_card_order_notification_request.go b/src/configurationwebhook/model_card_order_notification_request.go index fff9ac483..ed17680b1 100644 --- a/src/configurationwebhook/model_card_order_notification_request.go +++ b/src/configurationwebhook/model_card_order_notification_request.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CardOrderNotificationRequest type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_contact.go b/src/configurationwebhook/model_contact.go index 9d802bacf..a9fe0e19d 100644 --- a/src/configurationwebhook/model_contact.go +++ b/src/configurationwebhook/model_contact.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Contact type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_contact_details.go b/src/configurationwebhook/model_contact_details.go index 0207ce022..a006e5bc7 100644 --- a/src/configurationwebhook/model_contact_details.go +++ b/src/configurationwebhook/model_contact_details.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ContactDetails type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_cron_sweep_schedule.go b/src/configurationwebhook/model_cron_sweep_schedule.go index 27c5d271b..0ca0d38e3 100644 --- a/src/configurationwebhook/model_cron_sweep_schedule.go +++ b/src/configurationwebhook/model_cron_sweep_schedule.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CronSweepSchedule type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_delivery_address.go b/src/configurationwebhook/model_delivery_address.go index 824cf0c84..5146a6a92 100644 --- a/src/configurationwebhook/model_delivery_address.go +++ b/src/configurationwebhook/model_delivery_address.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DeliveryAddress type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_delivery_contact.go b/src/configurationwebhook/model_delivery_contact.go index cd31a165f..09faa4b2a 100644 --- a/src/configurationwebhook/model_delivery_contact.go +++ b/src/configurationwebhook/model_delivery_contact.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DeliveryContact type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_expiry.go b/src/configurationwebhook/model_expiry.go index 4e0967fd0..2f1e58d3e 100644 --- a/src/configurationwebhook/model_expiry.go +++ b/src/configurationwebhook/model_expiry.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Expiry type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_iban_account_identification.go b/src/configurationwebhook/model_iban_account_identification.go index 1e9bc811f..7df3be76e 100644 --- a/src/configurationwebhook/model_iban_account_identification.go +++ b/src/configurationwebhook/model_iban_account_identification.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the IbanAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_name.go b/src/configurationwebhook/model_name.go index a91f1abd8..411a6762e 100644 --- a/src/configurationwebhook/model_name.go +++ b/src/configurationwebhook/model_name.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Name type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_payment_instrument.go b/src/configurationwebhook/model_payment_instrument.go index 9aa492d9c..104173192 100644 --- a/src/configurationwebhook/model_payment_instrument.go +++ b/src/configurationwebhook/model_payment_instrument.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentInstrument type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_payment_instrument_notification_data.go b/src/configurationwebhook/model_payment_instrument_notification_data.go index 877f8b172..75c79eafa 100644 --- a/src/configurationwebhook/model_payment_instrument_notification_data.go +++ b/src/configurationwebhook/model_payment_instrument_notification_data.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentInstrumentNotificationData type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_payment_instrument_reference.go b/src/configurationwebhook/model_payment_instrument_reference.go index 2a8432190..c88cc3750 100644 --- a/src/configurationwebhook/model_payment_instrument_reference.go +++ b/src/configurationwebhook/model_payment_instrument_reference.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentInstrumentReference type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_payment_notification_request.go b/src/configurationwebhook/model_payment_notification_request.go index a84a09b33..a2b3d7a0a 100644 --- a/src/configurationwebhook/model_payment_notification_request.go +++ b/src/configurationwebhook/model_payment_notification_request.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentNotificationRequest type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_personal_data.go b/src/configurationwebhook/model_personal_data.go index a0e8b2608..3a4bb22a5 100644 --- a/src/configurationwebhook/model_personal_data.go +++ b/src/configurationwebhook/model_personal_data.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PersonalData type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_phone.go b/src/configurationwebhook/model_phone.go index b14e54d09..6798d9df3 100644 --- a/src/configurationwebhook/model_phone.go +++ b/src/configurationwebhook/model_phone.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Phone type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_phone_number.go b/src/configurationwebhook/model_phone_number.go index f1d3dbee5..cbe493d4c 100644 --- a/src/configurationwebhook/model_phone_number.go +++ b/src/configurationwebhook/model_phone_number.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PhoneNumber type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_platform_payment_configuration.go b/src/configurationwebhook/model_platform_payment_configuration.go index 18eec589e..495a43cc0 100644 --- a/src/configurationwebhook/model_platform_payment_configuration.go +++ b/src/configurationwebhook/model_platform_payment_configuration.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PlatformPaymentConfiguration type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_remediating_action.go b/src/configurationwebhook/model_remediating_action.go index c99308eb1..69b91dfa6 100644 --- a/src/configurationwebhook/model_remediating_action.go +++ b/src/configurationwebhook/model_remediating_action.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the RemediatingAction type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_resource.go b/src/configurationwebhook/model_resource.go index 31563e00a..52d14061d 100644 --- a/src/configurationwebhook/model_resource.go +++ b/src/configurationwebhook/model_resource.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Resource type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_sweep_configuration.go b/src/configurationwebhook/model_sweep_configuration.go index 35bf2f216..4a3f3bbfb 100644 --- a/src/configurationwebhook/model_sweep_configuration.go +++ b/src/configurationwebhook/model_sweep_configuration.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SweepConfiguration type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_sweep_configuration_notification_data.go b/src/configurationwebhook/model_sweep_configuration_notification_data.go index ebb52d78a..a5e0ed00d 100644 --- a/src/configurationwebhook/model_sweep_configuration_notification_data.go +++ b/src/configurationwebhook/model_sweep_configuration_notification_data.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SweepConfigurationNotificationData type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_sweep_configuration_notification_request.go b/src/configurationwebhook/model_sweep_configuration_notification_request.go index 959c72ebe..cb87f4ad0 100644 --- a/src/configurationwebhook/model_sweep_configuration_notification_request.go +++ b/src/configurationwebhook/model_sweep_configuration_notification_request.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SweepConfigurationNotificationRequest type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_sweep_configuration_v2.go b/src/configurationwebhook/model_sweep_configuration_v2.go index 05ddebda5..13f4504ca 100644 --- a/src/configurationwebhook/model_sweep_configuration_v2.go +++ b/src/configurationwebhook/model_sweep_configuration_v2.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SweepConfigurationV2 type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_sweep_counterparty.go b/src/configurationwebhook/model_sweep_counterparty.go index fcd208836..dc8727a29 100644 --- a/src/configurationwebhook/model_sweep_counterparty.go +++ b/src/configurationwebhook/model_sweep_counterparty.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SweepCounterparty type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_sweep_schedule.go b/src/configurationwebhook/model_sweep_schedule.go index 3dadccb30..26b33bb24 100644 --- a/src/configurationwebhook/model_sweep_schedule.go +++ b/src/configurationwebhook/model_sweep_schedule.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SweepSchedule type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_uk_local_account_identification.go b/src/configurationwebhook/model_uk_local_account_identification.go index 5e7b2443b..924ccedfe 100644 --- a/src/configurationwebhook/model_uk_local_account_identification.go +++ b/src/configurationwebhook/model_uk_local_account_identification.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UKLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_us_local_account_identification.go b/src/configurationwebhook/model_us_local_account_identification.go index ad1e13325..0089106c3 100644 --- a/src/configurationwebhook/model_us_local_account_identification.go +++ b/src/configurationwebhook/model_us_local_account_identification.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the USLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_verification_deadline.go b/src/configurationwebhook/model_verification_deadline.go index efa79ed32..c138e257d 100644 --- a/src/configurationwebhook/model_verification_deadline.go +++ b/src/configurationwebhook/model_verification_deadline.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the VerificationDeadline type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_verification_error.go b/src/configurationwebhook/model_verification_error.go index 8b22fe262..bd852c77a 100644 --- a/src/configurationwebhook/model_verification_error.go +++ b/src/configurationwebhook/model_verification_error.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the VerificationError type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_verification_error_recursive.go b/src/configurationwebhook/model_verification_error_recursive.go index c9572da22..01c37fb7b 100644 --- a/src/configurationwebhook/model_verification_error_recursive.go +++ b/src/configurationwebhook/model_verification_error_recursive.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the VerificationErrorRecursive type satisfies the MappedNullable interface at compile time diff --git a/src/dataprotection/api_general.go b/src/dataprotection/api_general.go index 6aea649ce..2d53e6702 100644 --- a/src/dataprotection/api_general.go +++ b/src/dataprotection/api_general.go @@ -13,7 +13,7 @@ import ( "net/http" "net/url" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // GeneralApi service diff --git a/src/dataprotection/model_service_error.go b/src/dataprotection/model_service_error.go index 3117cfe56..36ffe3f48 100644 --- a/src/dataprotection/model_service_error.go +++ b/src/dataprotection/model_service_error.go @@ -11,7 +11,7 @@ package dataprotection import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ServiceError type satisfies the MappedNullable interface at compile time diff --git a/src/dataprotection/model_subject_erasure_by_psp_reference_request.go b/src/dataprotection/model_subject_erasure_by_psp_reference_request.go index bb74a96b0..8d1b1e583 100644 --- a/src/dataprotection/model_subject_erasure_by_psp_reference_request.go +++ b/src/dataprotection/model_subject_erasure_by_psp_reference_request.go @@ -11,7 +11,7 @@ package dataprotection import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SubjectErasureByPspReferenceRequest type satisfies the MappedNullable interface at compile time diff --git a/src/dataprotection/model_subject_erasure_response.go b/src/dataprotection/model_subject_erasure_response.go index 22f95dd30..68a9761f4 100644 --- a/src/dataprotection/model_subject_erasure_response.go +++ b/src/dataprotection/model_subject_erasure_response.go @@ -11,7 +11,7 @@ package dataprotection import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SubjectErasureResponse type satisfies the MappedNullable interface at compile time diff --git a/src/disputes/api_general.go b/src/disputes/api_general.go index 9ea0799fd..c33e7d6ca 100644 --- a/src/disputes/api_general.go +++ b/src/disputes/api_general.go @@ -13,7 +13,7 @@ import ( "net/http" "net/url" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // GeneralApi service diff --git a/src/disputes/model_accept_dispute_request.go b/src/disputes/model_accept_dispute_request.go index 43118587d..e1856ae93 100644 --- a/src/disputes/model_accept_dispute_request.go +++ b/src/disputes/model_accept_dispute_request.go @@ -11,7 +11,7 @@ package disputes import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AcceptDisputeRequest type satisfies the MappedNullable interface at compile time diff --git a/src/disputes/model_accept_dispute_response.go b/src/disputes/model_accept_dispute_response.go index 8208ac336..6fe55d435 100644 --- a/src/disputes/model_accept_dispute_response.go +++ b/src/disputes/model_accept_dispute_response.go @@ -11,7 +11,7 @@ package disputes import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AcceptDisputeResponse type satisfies the MappedNullable interface at compile time diff --git a/src/disputes/model_defend_dispute_request.go b/src/disputes/model_defend_dispute_request.go index e2e87b156..daf8159ae 100644 --- a/src/disputes/model_defend_dispute_request.go +++ b/src/disputes/model_defend_dispute_request.go @@ -11,7 +11,7 @@ package disputes import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DefendDisputeRequest type satisfies the MappedNullable interface at compile time diff --git a/src/disputes/model_defend_dispute_response.go b/src/disputes/model_defend_dispute_response.go index 00a2882eb..518ef0055 100644 --- a/src/disputes/model_defend_dispute_response.go +++ b/src/disputes/model_defend_dispute_response.go @@ -11,7 +11,7 @@ package disputes import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DefendDisputeResponse type satisfies the MappedNullable interface at compile time diff --git a/src/disputes/model_defense_document.go b/src/disputes/model_defense_document.go index b1e09adc1..ca0c91c30 100644 --- a/src/disputes/model_defense_document.go +++ b/src/disputes/model_defense_document.go @@ -11,7 +11,7 @@ package disputes import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DefenseDocument type satisfies the MappedNullable interface at compile time diff --git a/src/disputes/model_defense_document_type.go b/src/disputes/model_defense_document_type.go index cbe9523f0..8a0aaf061 100644 --- a/src/disputes/model_defense_document_type.go +++ b/src/disputes/model_defense_document_type.go @@ -11,7 +11,7 @@ package disputes import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DefenseDocumentType type satisfies the MappedNullable interface at compile time diff --git a/src/disputes/model_defense_reason.go b/src/disputes/model_defense_reason.go index 3032f2672..20fc07a50 100644 --- a/src/disputes/model_defense_reason.go +++ b/src/disputes/model_defense_reason.go @@ -11,7 +11,7 @@ package disputes import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DefenseReason type satisfies the MappedNullable interface at compile time diff --git a/src/disputes/model_defense_reasons_request.go b/src/disputes/model_defense_reasons_request.go index 0919a6682..1525bdb1c 100644 --- a/src/disputes/model_defense_reasons_request.go +++ b/src/disputes/model_defense_reasons_request.go @@ -11,7 +11,7 @@ package disputes import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DefenseReasonsRequest type satisfies the MappedNullable interface at compile time diff --git a/src/disputes/model_defense_reasons_response.go b/src/disputes/model_defense_reasons_response.go index 54730882d..d4e914e61 100644 --- a/src/disputes/model_defense_reasons_response.go +++ b/src/disputes/model_defense_reasons_response.go @@ -11,7 +11,7 @@ package disputes import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DefenseReasonsResponse type satisfies the MappedNullable interface at compile time diff --git a/src/disputes/model_delete_defense_document_request.go b/src/disputes/model_delete_defense_document_request.go index 22aaad4be..4ceea0b67 100644 --- a/src/disputes/model_delete_defense_document_request.go +++ b/src/disputes/model_delete_defense_document_request.go @@ -11,7 +11,7 @@ package disputes import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DeleteDefenseDocumentRequest type satisfies the MappedNullable interface at compile time diff --git a/src/disputes/model_delete_defense_document_response.go b/src/disputes/model_delete_defense_document_response.go index 2c47ab1e3..9c196a1c0 100644 --- a/src/disputes/model_delete_defense_document_response.go +++ b/src/disputes/model_delete_defense_document_response.go @@ -11,7 +11,7 @@ package disputes import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DeleteDefenseDocumentResponse type satisfies the MappedNullable interface at compile time diff --git a/src/disputes/model_dispute_service_result.go b/src/disputes/model_dispute_service_result.go index 546595d1b..697551561 100644 --- a/src/disputes/model_dispute_service_result.go +++ b/src/disputes/model_dispute_service_result.go @@ -11,7 +11,7 @@ package disputes import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DisputeServiceResult type satisfies the MappedNullable interface at compile time diff --git a/src/disputes/model_service_error.go b/src/disputes/model_service_error.go index 6d09dbdb8..a8de7ec5c 100644 --- a/src/disputes/model_service_error.go +++ b/src/disputes/model_service_error.go @@ -11,7 +11,7 @@ package disputes import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ServiceError type satisfies the MappedNullable interface at compile time diff --git a/src/disputes/model_supply_defense_document_request.go b/src/disputes/model_supply_defense_document_request.go index 7783d0de7..5a6e4e1ac 100644 --- a/src/disputes/model_supply_defense_document_request.go +++ b/src/disputes/model_supply_defense_document_request.go @@ -11,7 +11,7 @@ package disputes import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SupplyDefenseDocumentRequest type satisfies the MappedNullable interface at compile time diff --git a/src/disputes/model_supply_defense_document_response.go b/src/disputes/model_supply_defense_document_response.go index 396aa0a9e..7d84a1633 100644 --- a/src/disputes/model_supply_defense_document_response.go +++ b/src/disputes/model_supply_defense_document_response.go @@ -11,7 +11,7 @@ package disputes import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SupplyDefenseDocumentResponse type satisfies the MappedNullable interface at compile time diff --git a/src/hmacvalidator/hmacvalidator.go b/src/hmacvalidator/hmacvalidator.go index 6de4c6235..68c4d3a7c 100644 --- a/src/hmacvalidator/hmacvalidator.go +++ b/src/hmacvalidator/hmacvalidator.go @@ -11,7 +11,7 @@ import ( "strconv" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/webhook" + "github.com/adyen/adyen-go-api-library/v12/src/webhook" ) // CalculateHmac calculates the SHA-256 HMAC for the given data and key diff --git a/src/hmacvalidator/hmacvalidator_test.go b/src/hmacvalidator/hmacvalidator_test.go index ed9ebc19c..de4b63c8a 100644 --- a/src/hmacvalidator/hmacvalidator_test.go +++ b/src/hmacvalidator/hmacvalidator_test.go @@ -4,7 +4,7 @@ import ( "testing" "time" - "github.com/adyen/adyen-go-api-library/v11/src/webhook" + "github.com/adyen/adyen-go-api-library/v12/src/webhook" "github.com/stretchr/testify/assert" ) diff --git a/src/legalentity/api_business_lines.go b/src/legalentity/api_business_lines.go index a330840d4..9830d00b3 100644 --- a/src/legalentity/api_business_lines.go +++ b/src/legalentity/api_business_lines.go @@ -14,7 +14,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // BusinessLinesApi service diff --git a/src/legalentity/api_documents.go b/src/legalentity/api_documents.go index c692fd5d0..82e9d884f 100644 --- a/src/legalentity/api_documents.go +++ b/src/legalentity/api_documents.go @@ -14,7 +14,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // DocumentsApi service diff --git a/src/legalentity/api_hosted_onboarding.go b/src/legalentity/api_hosted_onboarding.go index 0494bc86c..289b43c8c 100644 --- a/src/legalentity/api_hosted_onboarding.go +++ b/src/legalentity/api_hosted_onboarding.go @@ -14,7 +14,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // HostedOnboardingApi service diff --git a/src/legalentity/api_legal_entities.go b/src/legalentity/api_legal_entities.go index c8e94d0ee..cfce1fbb1 100644 --- a/src/legalentity/api_legal_entities.go +++ b/src/legalentity/api_legal_entities.go @@ -14,7 +14,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // LegalEntitiesApi service diff --git a/src/legalentity/api_pci_questionnaires.go b/src/legalentity/api_pci_questionnaires.go index d503c2051..763411ac9 100644 --- a/src/legalentity/api_pci_questionnaires.go +++ b/src/legalentity/api_pci_questionnaires.go @@ -14,7 +14,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // PCIQuestionnairesApi service diff --git a/src/legalentity/api_terms_of_service.go b/src/legalentity/api_terms_of_service.go index 6d87dbcb0..17c86ccb3 100644 --- a/src/legalentity/api_terms_of_service.go +++ b/src/legalentity/api_terms_of_service.go @@ -14,7 +14,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // TermsOfServiceApi service diff --git a/src/legalentity/api_transfer_instruments.go b/src/legalentity/api_transfer_instruments.go index 3fd5feb76..8ddc46425 100644 --- a/src/legalentity/api_transfer_instruments.go +++ b/src/legalentity/api_transfer_instruments.go @@ -14,7 +14,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // TransferInstrumentsApi service diff --git a/src/legalentity/client.go b/src/legalentity/client.go index 2ab74ffbc..61727a44a 100644 --- a/src/legalentity/client.go +++ b/src/legalentity/client.go @@ -9,7 +9,7 @@ API version: 3 package legalentity import ( - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // APIClient manages communication with the Legal Entity Management API API v3 diff --git a/src/legalentity/model_accept_terms_of_service_request.go b/src/legalentity/model_accept_terms_of_service_request.go index 86895ae4d..f2d360a4a 100644 --- a/src/legalentity/model_accept_terms_of_service_request.go +++ b/src/legalentity/model_accept_terms_of_service_request.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AcceptTermsOfServiceRequest type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_accept_terms_of_service_response.go b/src/legalentity/model_accept_terms_of_service_response.go index ac7b273d1..cdf0b9041 100644 --- a/src/legalentity/model_accept_terms_of_service_response.go +++ b/src/legalentity/model_accept_terms_of_service_response.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AcceptTermsOfServiceResponse type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_additional_bank_identification.go b/src/legalentity/model_additional_bank_identification.go index 6853b0aad..6333a2974 100644 --- a/src/legalentity/model_additional_bank_identification.go +++ b/src/legalentity/model_additional_bank_identification.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalBankIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_address.go b/src/legalentity/model_address.go index 628688497..be88cacf5 100644 --- a/src/legalentity/model_address.go +++ b/src/legalentity/model_address.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Address type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_amount.go b/src/legalentity/model_amount.go index bc03d77a3..c806a4e72 100644 --- a/src/legalentity/model_amount.go +++ b/src/legalentity/model_amount.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Amount type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_attachment.go b/src/legalentity/model_attachment.go index e1e25be57..dff99183e 100644 --- a/src/legalentity/model_attachment.go +++ b/src/legalentity/model_attachment.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Attachment type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_au_local_account_identification.go b/src/legalentity/model_au_local_account_identification.go index 75b5bba41..535db0f15 100644 --- a/src/legalentity/model_au_local_account_identification.go +++ b/src/legalentity/model_au_local_account_identification.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AULocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_bank_account_info.go b/src/legalentity/model_bank_account_info.go index d7fa06533..a4a5264d2 100644 --- a/src/legalentity/model_bank_account_info.go +++ b/src/legalentity/model_bank_account_info.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BankAccountInfo type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_birth_data.go b/src/legalentity/model_birth_data.go index b1c58adaa..ee303bfab 100644 --- a/src/legalentity/model_birth_data.go +++ b/src/legalentity/model_birth_data.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BirthData type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_business_line.go b/src/legalentity/model_business_line.go index 7e9336cf2..a7cae069e 100644 --- a/src/legalentity/model_business_line.go +++ b/src/legalentity/model_business_line.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BusinessLine type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_business_line_info.go b/src/legalentity/model_business_line_info.go index 24dc26327..0fdefd718 100644 --- a/src/legalentity/model_business_line_info.go +++ b/src/legalentity/model_business_line_info.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BusinessLineInfo type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_business_line_info_update.go b/src/legalentity/model_business_line_info_update.go index 3d0e27c06..7f11940bf 100644 --- a/src/legalentity/model_business_line_info_update.go +++ b/src/legalentity/model_business_line_info_update.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BusinessLineInfoUpdate type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_business_lines.go b/src/legalentity/model_business_lines.go index d14916471..09d9e0097 100644 --- a/src/legalentity/model_business_lines.go +++ b/src/legalentity/model_business_lines.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BusinessLines type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_ca_local_account_identification.go b/src/legalentity/model_ca_local_account_identification.go index 596d78a90..77cc1cfe6 100644 --- a/src/legalentity/model_ca_local_account_identification.go +++ b/src/legalentity/model_ca_local_account_identification.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CALocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_calculate_terms_of_service_status_response.go b/src/legalentity/model_calculate_terms_of_service_status_response.go index 414ec09cc..32ed1261b 100644 --- a/src/legalentity/model_calculate_terms_of_service_status_response.go +++ b/src/legalentity/model_calculate_terms_of_service_status_response.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CalculateTermsOfServiceStatusResponse type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_capability_problem.go b/src/legalentity/model_capability_problem.go index 89b373316..0aaf6a56d 100644 --- a/src/legalentity/model_capability_problem.go +++ b/src/legalentity/model_capability_problem.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CapabilityProblem type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_capability_problem_entity.go b/src/legalentity/model_capability_problem_entity.go index c2cd98b65..e8351d389 100644 --- a/src/legalentity/model_capability_problem_entity.go +++ b/src/legalentity/model_capability_problem_entity.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CapabilityProblemEntity type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_capability_problem_entity_recursive.go b/src/legalentity/model_capability_problem_entity_recursive.go index 0923d90df..29ef96944 100644 --- a/src/legalentity/model_capability_problem_entity_recursive.go +++ b/src/legalentity/model_capability_problem_entity_recursive.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CapabilityProblemEntityRecursive type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_capability_settings.go b/src/legalentity/model_capability_settings.go index dbbf7edcc..093317569 100644 --- a/src/legalentity/model_capability_settings.go +++ b/src/legalentity/model_capability_settings.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CapabilitySettings type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_cz_local_account_identification.go b/src/legalentity/model_cz_local_account_identification.go index 527a909be..99f606bb6 100644 --- a/src/legalentity/model_cz_local_account_identification.go +++ b/src/legalentity/model_cz_local_account_identification.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CZLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_data_review_confirmation_response.go b/src/legalentity/model_data_review_confirmation_response.go index fe1a6efb8..34b948f72 100644 --- a/src/legalentity/model_data_review_confirmation_response.go +++ b/src/legalentity/model_data_review_confirmation_response.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DataReviewConfirmationResponse type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_dk_local_account_identification.go b/src/legalentity/model_dk_local_account_identification.go index db9419a41..5657be37a 100644 --- a/src/legalentity/model_dk_local_account_identification.go +++ b/src/legalentity/model_dk_local_account_identification.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DKLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_document.go b/src/legalentity/model_document.go index 6f0109c87..b2fade0d6 100644 --- a/src/legalentity/model_document.go +++ b/src/legalentity/model_document.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Document type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_document_page.go b/src/legalentity/model_document_page.go index 1ec544bfd..9a8c19c8c 100644 --- a/src/legalentity/model_document_page.go +++ b/src/legalentity/model_document_page.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DocumentPage type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_document_reference.go b/src/legalentity/model_document_reference.go index 74aad6a02..7f560cb68 100644 --- a/src/legalentity/model_document_reference.go +++ b/src/legalentity/model_document_reference.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DocumentReference type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_entity_reference.go b/src/legalentity/model_entity_reference.go index 7a10087c9..f19c6f0b7 100644 --- a/src/legalentity/model_entity_reference.go +++ b/src/legalentity/model_entity_reference.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the EntityReference type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_generate_pci_description_request.go b/src/legalentity/model_generate_pci_description_request.go index f2143a3b9..326f13f29 100644 --- a/src/legalentity/model_generate_pci_description_request.go +++ b/src/legalentity/model_generate_pci_description_request.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the GeneratePciDescriptionRequest type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_generate_pci_description_response.go b/src/legalentity/model_generate_pci_description_response.go index 66b48f55f..b5e9f489b 100644 --- a/src/legalentity/model_generate_pci_description_response.go +++ b/src/legalentity/model_generate_pci_description_response.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the GeneratePciDescriptionResponse type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_get_pci_questionnaire_infos_response.go b/src/legalentity/model_get_pci_questionnaire_infos_response.go index ef48e0426..fff0d79f8 100644 --- a/src/legalentity/model_get_pci_questionnaire_infos_response.go +++ b/src/legalentity/model_get_pci_questionnaire_infos_response.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the GetPciQuestionnaireInfosResponse type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_get_pci_questionnaire_response.go b/src/legalentity/model_get_pci_questionnaire_response.go index fc4fb577a..59857148b 100644 --- a/src/legalentity/model_get_pci_questionnaire_response.go +++ b/src/legalentity/model_get_pci_questionnaire_response.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the GetPciQuestionnaireResponse type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_get_terms_of_service_acceptance_infos_response.go b/src/legalentity/model_get_terms_of_service_acceptance_infos_response.go index f89f239d6..56ec496d8 100644 --- a/src/legalentity/model_get_terms_of_service_acceptance_infos_response.go +++ b/src/legalentity/model_get_terms_of_service_acceptance_infos_response.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the GetTermsOfServiceAcceptanceInfosResponse type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_get_terms_of_service_document_request.go b/src/legalentity/model_get_terms_of_service_document_request.go index 71e50515c..8abe6e050 100644 --- a/src/legalentity/model_get_terms_of_service_document_request.go +++ b/src/legalentity/model_get_terms_of_service_document_request.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the GetTermsOfServiceDocumentRequest type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_get_terms_of_service_document_response.go b/src/legalentity/model_get_terms_of_service_document_response.go index 7102c849d..1a798f6b8 100644 --- a/src/legalentity/model_get_terms_of_service_document_response.go +++ b/src/legalentity/model_get_terms_of_service_document_response.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the GetTermsOfServiceDocumentResponse type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_hk_local_account_identification.go b/src/legalentity/model_hk_local_account_identification.go index 85c146bd9..c91672395 100644 --- a/src/legalentity/model_hk_local_account_identification.go +++ b/src/legalentity/model_hk_local_account_identification.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the HKLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_hu_local_account_identification.go b/src/legalentity/model_hu_local_account_identification.go index 4915edaa3..c7be5965c 100644 --- a/src/legalentity/model_hu_local_account_identification.go +++ b/src/legalentity/model_hu_local_account_identification.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the HULocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_iban_account_identification.go b/src/legalentity/model_iban_account_identification.go index 90039dd19..4c56a496a 100644 --- a/src/legalentity/model_iban_account_identification.go +++ b/src/legalentity/model_iban_account_identification.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the IbanAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_identification_data.go b/src/legalentity/model_identification_data.go index df99de5eb..e68c18876 100644 --- a/src/legalentity/model_identification_data.go +++ b/src/legalentity/model_identification_data.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the IdentificationData type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_individual.go b/src/legalentity/model_individual.go index a14d6ac16..a2034b920 100644 --- a/src/legalentity/model_individual.go +++ b/src/legalentity/model_individual.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Individual type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_legal_entity.go b/src/legalentity/model_legal_entity.go index d184d333f..8e0b45bd6 100644 --- a/src/legalentity/model_legal_entity.go +++ b/src/legalentity/model_legal_entity.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the LegalEntity type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_legal_entity_association.go b/src/legalentity/model_legal_entity_association.go index 8e83a72fc..6a8200043 100644 --- a/src/legalentity/model_legal_entity_association.go +++ b/src/legalentity/model_legal_entity_association.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the LegalEntityAssociation type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_legal_entity_capability.go b/src/legalentity/model_legal_entity_capability.go index 98070234b..5e4ce4cdc 100644 --- a/src/legalentity/model_legal_entity_capability.go +++ b/src/legalentity/model_legal_entity_capability.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the LegalEntityCapability type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_legal_entity_info.go b/src/legalentity/model_legal_entity_info.go index f71476d17..68c77150a 100644 --- a/src/legalentity/model_legal_entity_info.go +++ b/src/legalentity/model_legal_entity_info.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the LegalEntityInfo type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_legal_entity_info_required_type.go b/src/legalentity/model_legal_entity_info_required_type.go index ad512ac02..f92ddcc07 100644 --- a/src/legalentity/model_legal_entity_info_required_type.go +++ b/src/legalentity/model_legal_entity_info_required_type.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the LegalEntityInfoRequiredType type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_name.go b/src/legalentity/model_name.go index af43c4e1f..368445f11 100644 --- a/src/legalentity/model_name.go +++ b/src/legalentity/model_name.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Name type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_no_local_account_identification.go b/src/legalentity/model_no_local_account_identification.go index af804b810..94ea1772c 100644 --- a/src/legalentity/model_no_local_account_identification.go +++ b/src/legalentity/model_no_local_account_identification.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the NOLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_number_and_bic_account_identification.go b/src/legalentity/model_number_and_bic_account_identification.go index 6da4be6d1..c37f76545 100644 --- a/src/legalentity/model_number_and_bic_account_identification.go +++ b/src/legalentity/model_number_and_bic_account_identification.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the NumberAndBicAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_nz_local_account_identification.go b/src/legalentity/model_nz_local_account_identification.go index b17396119..293fcf25f 100644 --- a/src/legalentity/model_nz_local_account_identification.go +++ b/src/legalentity/model_nz_local_account_identification.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the NZLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_onboarding_link.go b/src/legalentity/model_onboarding_link.go index ae9945ab8..1f1b3b1ce 100644 --- a/src/legalentity/model_onboarding_link.go +++ b/src/legalentity/model_onboarding_link.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the OnboardingLink type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_onboarding_link_info.go b/src/legalentity/model_onboarding_link_info.go index 05b9646ce..66e249ed0 100644 --- a/src/legalentity/model_onboarding_link_info.go +++ b/src/legalentity/model_onboarding_link_info.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the OnboardingLinkInfo type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_onboarding_link_settings.go b/src/legalentity/model_onboarding_link_settings.go index 7362d191f..8de75905b 100644 --- a/src/legalentity/model_onboarding_link_settings.go +++ b/src/legalentity/model_onboarding_link_settings.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the OnboardingLinkSettings type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_onboarding_theme.go b/src/legalentity/model_onboarding_theme.go index efd50d6a1..afdd8e4cf 100644 --- a/src/legalentity/model_onboarding_theme.go +++ b/src/legalentity/model_onboarding_theme.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the OnboardingTheme type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_onboarding_themes.go b/src/legalentity/model_onboarding_themes.go index e8d1e348d..39b07b61a 100644 --- a/src/legalentity/model_onboarding_themes.go +++ b/src/legalentity/model_onboarding_themes.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the OnboardingThemes type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_organization.go b/src/legalentity/model_organization.go index e6c248141..e94ed81ba 100644 --- a/src/legalentity/model_organization.go +++ b/src/legalentity/model_organization.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Organization type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_owner_entity.go b/src/legalentity/model_owner_entity.go index b2f7b4e20..63b519130 100644 --- a/src/legalentity/model_owner_entity.go +++ b/src/legalentity/model_owner_entity.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the OwnerEntity type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_pci_document_info.go b/src/legalentity/model_pci_document_info.go index d8a0ba63e..4b89f334e 100644 --- a/src/legalentity/model_pci_document_info.go +++ b/src/legalentity/model_pci_document_info.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PciDocumentInfo type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_pci_signing_request.go b/src/legalentity/model_pci_signing_request.go index 78e3a47c0..557664bd3 100644 --- a/src/legalentity/model_pci_signing_request.go +++ b/src/legalentity/model_pci_signing_request.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PciSigningRequest type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_pci_signing_response.go b/src/legalentity/model_pci_signing_response.go index 4a08494eb..2588265c7 100644 --- a/src/legalentity/model_pci_signing_response.go +++ b/src/legalentity/model_pci_signing_response.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PciSigningResponse type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_phone_number.go b/src/legalentity/model_phone_number.go index 9a4d25277..2f54c4fe6 100644 --- a/src/legalentity/model_phone_number.go +++ b/src/legalentity/model_phone_number.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PhoneNumber type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_pl_local_account_identification.go b/src/legalentity/model_pl_local_account_identification.go index 80e707fc7..ab413f1f2 100644 --- a/src/legalentity/model_pl_local_account_identification.go +++ b/src/legalentity/model_pl_local_account_identification.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PLLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_remediating_action.go b/src/legalentity/model_remediating_action.go index e0ca73804..0a6909a0c 100644 --- a/src/legalentity/model_remediating_action.go +++ b/src/legalentity/model_remediating_action.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the RemediatingAction type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_se_local_account_identification.go b/src/legalentity/model_se_local_account_identification.go index 40843e9bc..c93679458 100644 --- a/src/legalentity/model_se_local_account_identification.go +++ b/src/legalentity/model_se_local_account_identification.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SELocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_service_error.go b/src/legalentity/model_service_error.go index fe370435e..ae39b3b9b 100644 --- a/src/legalentity/model_service_error.go +++ b/src/legalentity/model_service_error.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ServiceError type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_sg_local_account_identification.go b/src/legalentity/model_sg_local_account_identification.go index 860440ec2..4d47a5c32 100644 --- a/src/legalentity/model_sg_local_account_identification.go +++ b/src/legalentity/model_sg_local_account_identification.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SGLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_sole_proprietorship.go b/src/legalentity/model_sole_proprietorship.go index 7504cf065..d97fa457d 100644 --- a/src/legalentity/model_sole_proprietorship.go +++ b/src/legalentity/model_sole_proprietorship.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SoleProprietorship type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_source_of_funds.go b/src/legalentity/model_source_of_funds.go index 82a6d2694..5ee49e18e 100644 --- a/src/legalentity/model_source_of_funds.go +++ b/src/legalentity/model_source_of_funds.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SourceOfFunds type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_stock_data.go b/src/legalentity/model_stock_data.go index a9f1d7670..81b1f84ab 100644 --- a/src/legalentity/model_stock_data.go +++ b/src/legalentity/model_stock_data.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StockData type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_supporting_entity_capability.go b/src/legalentity/model_supporting_entity_capability.go index b87928b00..4c037c985 100644 --- a/src/legalentity/model_supporting_entity_capability.go +++ b/src/legalentity/model_supporting_entity_capability.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SupportingEntityCapability type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_tax_information.go b/src/legalentity/model_tax_information.go index 0f4d32c73..37d4d8a3d 100644 --- a/src/legalentity/model_tax_information.go +++ b/src/legalentity/model_tax_information.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TaxInformation type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_tax_reporting_classification.go b/src/legalentity/model_tax_reporting_classification.go index 3d77fa8dd..87692881b 100644 --- a/src/legalentity/model_tax_reporting_classification.go +++ b/src/legalentity/model_tax_reporting_classification.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TaxReportingClassification type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_terms_of_service_acceptance_info.go b/src/legalentity/model_terms_of_service_acceptance_info.go index aa6f751da..af96465ec 100644 --- a/src/legalentity/model_terms_of_service_acceptance_info.go +++ b/src/legalentity/model_terms_of_service_acceptance_info.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TermsOfServiceAcceptanceInfo type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_transfer_instrument.go b/src/legalentity/model_transfer_instrument.go index e2321966c..b515adb67 100644 --- a/src/legalentity/model_transfer_instrument.go +++ b/src/legalentity/model_transfer_instrument.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransferInstrument type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_transfer_instrument_info.go b/src/legalentity/model_transfer_instrument_info.go index 427ae2dab..0144d779c 100644 --- a/src/legalentity/model_transfer_instrument_info.go +++ b/src/legalentity/model_transfer_instrument_info.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransferInstrumentInfo type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_transfer_instrument_reference.go b/src/legalentity/model_transfer_instrument_reference.go index e6ccfa808..22b33cb37 100644 --- a/src/legalentity/model_transfer_instrument_reference.go +++ b/src/legalentity/model_transfer_instrument_reference.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransferInstrumentReference type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_trust.go b/src/legalentity/model_trust.go index bc389e032..fe2bac4c3 100644 --- a/src/legalentity/model_trust.go +++ b/src/legalentity/model_trust.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Trust type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_uk_local_account_identification.go b/src/legalentity/model_uk_local_account_identification.go index 27150252c..8cd0de7ce 100644 --- a/src/legalentity/model_uk_local_account_identification.go +++ b/src/legalentity/model_uk_local_account_identification.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UKLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_undefined_beneficiary.go b/src/legalentity/model_undefined_beneficiary.go index ae3bfccdf..810e7c9a6 100644 --- a/src/legalentity/model_undefined_beneficiary.go +++ b/src/legalentity/model_undefined_beneficiary.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UndefinedBeneficiary type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_unincorporated_partnership.go b/src/legalentity/model_unincorporated_partnership.go index 3d72c330d..ab5c13de9 100644 --- a/src/legalentity/model_unincorporated_partnership.go +++ b/src/legalentity/model_unincorporated_partnership.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UnincorporatedPartnership type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_us_local_account_identification.go b/src/legalentity/model_us_local_account_identification.go index baecf1238..e96e4ec73 100644 --- a/src/legalentity/model_us_local_account_identification.go +++ b/src/legalentity/model_us_local_account_identification.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the USLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_verification_deadline.go b/src/legalentity/model_verification_deadline.go index fce3b2248..137e34864 100644 --- a/src/legalentity/model_verification_deadline.go +++ b/src/legalentity/model_verification_deadline.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the VerificationDeadline type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_verification_error.go b/src/legalentity/model_verification_error.go index c8e719b5f..8ba9b30c0 100644 --- a/src/legalentity/model_verification_error.go +++ b/src/legalentity/model_verification_error.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the VerificationError type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_verification_error_recursive.go b/src/legalentity/model_verification_error_recursive.go index 235529b8a..991391ae3 100644 --- a/src/legalentity/model_verification_error_recursive.go +++ b/src/legalentity/model_verification_error_recursive.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the VerificationErrorRecursive type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_verification_errors.go b/src/legalentity/model_verification_errors.go index fc0ae8cea..1d955baf8 100644 --- a/src/legalentity/model_verification_errors.go +++ b/src/legalentity/model_verification_errors.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the VerificationErrors type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_web_data.go b/src/legalentity/model_web_data.go index 8d3014176..347df694f 100644 --- a/src/legalentity/model_web_data.go +++ b/src/legalentity/model_web_data.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the WebData type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_web_data_exemption.go b/src/legalentity/model_web_data_exemption.go index a57f48af5..3bf46a281 100644 --- a/src/legalentity/model_web_data_exemption.go +++ b/src/legalentity/model_web_data_exemption.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the WebDataExemption type satisfies the MappedNullable interface at compile time diff --git a/src/management/api_account_company_level.go b/src/management/api_account_company_level.go index 7ac4b193d..79716060e 100644 --- a/src/management/api_account_company_level.go +++ b/src/management/api_account_company_level.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // AccountCompanyLevelApi service diff --git a/src/management/api_account_merchant_level.go b/src/management/api_account_merchant_level.go index 785034e5d..bd613c343 100644 --- a/src/management/api_account_merchant_level.go +++ b/src/management/api_account_merchant_level.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // AccountMerchantLevelApi service diff --git a/src/management/api_account_store_level.go b/src/management/api_account_store_level.go index f4c4db3ee..398b3190c 100644 --- a/src/management/api_account_store_level.go +++ b/src/management/api_account_store_level.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // AccountStoreLevelApi service diff --git a/src/management/api_allowed_origins_company_level.go b/src/management/api_allowed_origins_company_level.go index a80be5427..f50df1ca5 100644 --- a/src/management/api_allowed_origins_company_level.go +++ b/src/management/api_allowed_origins_company_level.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // AllowedOriginsCompanyLevelApi service diff --git a/src/management/api_allowed_origins_merchant_level.go b/src/management/api_allowed_origins_merchant_level.go index b4c23fd83..d99628233 100644 --- a/src/management/api_allowed_origins_merchant_level.go +++ b/src/management/api_allowed_origins_merchant_level.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // AllowedOriginsMerchantLevelApi service diff --git a/src/management/api_android_files_company_level.go b/src/management/api_android_files_company_level.go index 74d8fd41c..80c9dd89b 100644 --- a/src/management/api_android_files_company_level.go +++ b/src/management/api_android_files_company_level.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // AndroidFilesCompanyLevelApi service diff --git a/src/management/api_api_credentials_company_level.go b/src/management/api_api_credentials_company_level.go index b5fc2de53..f195a8c54 100644 --- a/src/management/api_api_credentials_company_level.go +++ b/src/management/api_api_credentials_company_level.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // APICredentialsCompanyLevelApi service diff --git a/src/management/api_api_credentials_merchant_level.go b/src/management/api_api_credentials_merchant_level.go index c4ab2f1fa..4dd75895a 100644 --- a/src/management/api_api_credentials_merchant_level.go +++ b/src/management/api_api_credentials_merchant_level.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // APICredentialsMerchantLevelApi service diff --git a/src/management/api_api_key_company_level.go b/src/management/api_api_key_company_level.go index dd71376c8..83d8daf53 100644 --- a/src/management/api_api_key_company_level.go +++ b/src/management/api_api_key_company_level.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // APIKeyCompanyLevelApi service diff --git a/src/management/api_api_key_merchant_level.go b/src/management/api_api_key_merchant_level.go index ef79ae104..3fffbd20d 100644 --- a/src/management/api_api_key_merchant_level.go +++ b/src/management/api_api_key_merchant_level.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // APIKeyMerchantLevelApi service diff --git a/src/management/api_client_key_company_level.go b/src/management/api_client_key_company_level.go index d84f465fc..862dcf019 100644 --- a/src/management/api_client_key_company_level.go +++ b/src/management/api_client_key_company_level.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // ClientKeyCompanyLevelApi service diff --git a/src/management/api_client_key_merchant_level.go b/src/management/api_client_key_merchant_level.go index 571bf094f..84547d6d8 100644 --- a/src/management/api_client_key_merchant_level.go +++ b/src/management/api_client_key_merchant_level.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // ClientKeyMerchantLevelApi service diff --git a/src/management/api_my_api_credential.go b/src/management/api_my_api_credential.go index a6a998a9a..17bb8b8dc 100644 --- a/src/management/api_my_api_credential.go +++ b/src/management/api_my_api_credential.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // MyAPICredentialApi service diff --git a/src/management/api_payment_methods_merchant_level.go b/src/management/api_payment_methods_merchant_level.go index d05cb5e7c..9e2ee3ed4 100644 --- a/src/management/api_payment_methods_merchant_level.go +++ b/src/management/api_payment_methods_merchant_level.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // PaymentMethodsMerchantLevelApi service diff --git a/src/management/api_payout_settings_merchant_level.go b/src/management/api_payout_settings_merchant_level.go index f2aa0f5a8..a96149dd3 100644 --- a/src/management/api_payout_settings_merchant_level.go +++ b/src/management/api_payout_settings_merchant_level.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // PayoutSettingsMerchantLevelApi service diff --git a/src/management/api_split_configuration_merchant_level.go b/src/management/api_split_configuration_merchant_level.go index 105a2471c..07454bd11 100644 --- a/src/management/api_split_configuration_merchant_level.go +++ b/src/management/api_split_configuration_merchant_level.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // SplitConfigurationMerchantLevelApi service diff --git a/src/management/api_terminal_actions_company_level.go b/src/management/api_terminal_actions_company_level.go index d5c9f3a04..7f5f6aa28 100644 --- a/src/management/api_terminal_actions_company_level.go +++ b/src/management/api_terminal_actions_company_level.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // TerminalActionsCompanyLevelApi service diff --git a/src/management/api_terminal_actions_terminal_level.go b/src/management/api_terminal_actions_terminal_level.go index c99d2838c..94f7383f0 100644 --- a/src/management/api_terminal_actions_terminal_level.go +++ b/src/management/api_terminal_actions_terminal_level.go @@ -15,7 +15,7 @@ import ( "net/http" "net/url" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // TerminalActionsTerminalLevelApi service diff --git a/src/management/api_terminal_orders_company_level.go b/src/management/api_terminal_orders_company_level.go index 858dcceab..86686cb90 100644 --- a/src/management/api_terminal_orders_company_level.go +++ b/src/management/api_terminal_orders_company_level.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // TerminalOrdersCompanyLevelApi service diff --git a/src/management/api_terminal_orders_merchant_level.go b/src/management/api_terminal_orders_merchant_level.go index 5a9dc24c9..c500c23dd 100644 --- a/src/management/api_terminal_orders_merchant_level.go +++ b/src/management/api_terminal_orders_merchant_level.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // TerminalOrdersMerchantLevelApi service diff --git a/src/management/api_terminal_settings_company_level.go b/src/management/api_terminal_settings_company_level.go index 4526c0827..059456a60 100644 --- a/src/management/api_terminal_settings_company_level.go +++ b/src/management/api_terminal_settings_company_level.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // TerminalSettingsCompanyLevelApi service diff --git a/src/management/api_terminal_settings_merchant_level.go b/src/management/api_terminal_settings_merchant_level.go index 0b4003bbb..f19cf51b8 100644 --- a/src/management/api_terminal_settings_merchant_level.go +++ b/src/management/api_terminal_settings_merchant_level.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // TerminalSettingsMerchantLevelApi service diff --git a/src/management/api_terminal_settings_store_level.go b/src/management/api_terminal_settings_store_level.go index c3c903c9d..9fe4d5643 100644 --- a/src/management/api_terminal_settings_store_level.go +++ b/src/management/api_terminal_settings_store_level.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // TerminalSettingsStoreLevelApi service diff --git a/src/management/api_terminal_settings_terminal_level.go b/src/management/api_terminal_settings_terminal_level.go index b6302b88e..40b8ec54f 100644 --- a/src/management/api_terminal_settings_terminal_level.go +++ b/src/management/api_terminal_settings_terminal_level.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // TerminalSettingsTerminalLevelApi service diff --git a/src/management/api_terminals_terminal_level.go b/src/management/api_terminals_terminal_level.go index f807ee47a..a49daa065 100644 --- a/src/management/api_terminals_terminal_level.go +++ b/src/management/api_terminals_terminal_level.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // TerminalsTerminalLevelApi service diff --git a/src/management/api_users_company_level.go b/src/management/api_users_company_level.go index 43a6d5ceb..280ab363a 100644 --- a/src/management/api_users_company_level.go +++ b/src/management/api_users_company_level.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // UsersCompanyLevelApi service diff --git a/src/management/api_users_merchant_level.go b/src/management/api_users_merchant_level.go index 2a8358049..67eb9c910 100644 --- a/src/management/api_users_merchant_level.go +++ b/src/management/api_users_merchant_level.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // UsersMerchantLevelApi service diff --git a/src/management/api_webhooks_company_level.go b/src/management/api_webhooks_company_level.go index d18c4ab73..d228d70eb 100644 --- a/src/management/api_webhooks_company_level.go +++ b/src/management/api_webhooks_company_level.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // WebhooksCompanyLevelApi service diff --git a/src/management/api_webhooks_merchant_level.go b/src/management/api_webhooks_merchant_level.go index 3231a6934..2074642af 100644 --- a/src/management/api_webhooks_merchant_level.go +++ b/src/management/api_webhooks_merchant_level.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // WebhooksMerchantLevelApi service diff --git a/src/management/client.go b/src/management/client.go index 7128e6d88..af496b182 100644 --- a/src/management/client.go +++ b/src/management/client.go @@ -9,7 +9,7 @@ API version: 3 package management import ( - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // APIClient manages communication with the Management API API v3 diff --git a/src/management/model_additional_commission.go b/src/management/model_additional_commission.go index 4968472c5..bd87c2255 100644 --- a/src/management/model_additional_commission.go +++ b/src/management/model_additional_commission.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalCommission type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_additional_settings.go b/src/management/model_additional_settings.go index 70cfe474c..51145f029 100644 --- a/src/management/model_additional_settings.go +++ b/src/management/model_additional_settings.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalSettings type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_additional_settings_response.go b/src/management/model_additional_settings_response.go index a14f1c95a..a1e6cf83b 100644 --- a/src/management/model_additional_settings_response.go +++ b/src/management/model_additional_settings_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalSettingsResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_address.go b/src/management/model_address.go index 2931ba356..a9e6b56e7 100644 --- a/src/management/model_address.go +++ b/src/management/model_address.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Address type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_afterpay_touch_info.go b/src/management/model_afterpay_touch_info.go index b4b2b834e..adc12a8e4 100644 --- a/src/management/model_afterpay_touch_info.go +++ b/src/management/model_afterpay_touch_info.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AfterpayTouchInfo type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_allowed_origin.go b/src/management/model_allowed_origin.go index 2ef6d3466..cd04d76aa 100644 --- a/src/management/model_allowed_origin.go +++ b/src/management/model_allowed_origin.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AllowedOrigin type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_allowed_origins_response.go b/src/management/model_allowed_origins_response.go index 7e6150527..059812b72 100644 --- a/src/management/model_allowed_origins_response.go +++ b/src/management/model_allowed_origins_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AllowedOriginsResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_amex_info.go b/src/management/model_amex_info.go index 3d6c458b3..a494f3e3b 100644 --- a/src/management/model_amex_info.go +++ b/src/management/model_amex_info.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AmexInfo type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_amount.go b/src/management/model_amount.go index 895c918e8..1190abb46 100644 --- a/src/management/model_amount.go +++ b/src/management/model_amount.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Amount type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_android_app.go b/src/management/model_android_app.go index 231b99d4c..99d2eb95d 100644 --- a/src/management/model_android_app.go +++ b/src/management/model_android_app.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AndroidApp type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_android_app_error.go b/src/management/model_android_app_error.go index fcadcc2b8..497b5424c 100644 --- a/src/management/model_android_app_error.go +++ b/src/management/model_android_app_error.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AndroidAppError type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_android_apps_response.go b/src/management/model_android_apps_response.go index df100792f..d1733b41d 100644 --- a/src/management/model_android_apps_response.go +++ b/src/management/model_android_apps_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AndroidAppsResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_android_certificate.go b/src/management/model_android_certificate.go index e62d85a05..662b21289 100644 --- a/src/management/model_android_certificate.go +++ b/src/management/model_android_certificate.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AndroidCertificate type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_android_certificates_response.go b/src/management/model_android_certificates_response.go index 3cfc123a8..29ae12774 100644 --- a/src/management/model_android_certificates_response.go +++ b/src/management/model_android_certificates_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AndroidCertificatesResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_api_credential.go b/src/management/model_api_credential.go index f01b9fc85..dfee62202 100644 --- a/src/management/model_api_credential.go +++ b/src/management/model_api_credential.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ApiCredential type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_api_credential_links.go b/src/management/model_api_credential_links.go index 8d4c85ebf..a9717dd57 100644 --- a/src/management/model_api_credential_links.go +++ b/src/management/model_api_credential_links.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ApiCredentialLinks type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_apple_pay_info.go b/src/management/model_apple_pay_info.go index 34027e873..327c96b17 100644 --- a/src/management/model_apple_pay_info.go +++ b/src/management/model_apple_pay_info.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ApplePayInfo type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_bcmc_info.go b/src/management/model_bcmc_info.go index 176d2e56e..1abcafbe2 100644 --- a/src/management/model_bcmc_info.go +++ b/src/management/model_bcmc_info.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BcmcInfo type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_billing_entities_response.go b/src/management/model_billing_entities_response.go index f3c134b1d..ac777f98a 100644 --- a/src/management/model_billing_entities_response.go +++ b/src/management/model_billing_entities_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BillingEntitiesResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_billing_entity.go b/src/management/model_billing_entity.go index b0fe17db7..a4b7fa467 100644 --- a/src/management/model_billing_entity.go +++ b/src/management/model_billing_entity.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BillingEntity type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_cardholder_receipt.go b/src/management/model_cardholder_receipt.go index 18b93914b..e272d9860 100644 --- a/src/management/model_cardholder_receipt.go +++ b/src/management/model_cardholder_receipt.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CardholderReceipt type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_cartes_bancaires_info.go b/src/management/model_cartes_bancaires_info.go index 115a70584..f59a8737f 100644 --- a/src/management/model_cartes_bancaires_info.go +++ b/src/management/model_cartes_bancaires_info.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CartesBancairesInfo type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_clearpay_info.go b/src/management/model_clearpay_info.go index ebf9c76a8..cf1ce94b0 100644 --- a/src/management/model_clearpay_info.go +++ b/src/management/model_clearpay_info.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ClearpayInfo type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_commission.go b/src/management/model_commission.go index 4ccfc0b0e..e0ff5cb18 100644 --- a/src/management/model_commission.go +++ b/src/management/model_commission.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Commission type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_company.go b/src/management/model_company.go index dcd336830..bc14adc9b 100644 --- a/src/management/model_company.go +++ b/src/management/model_company.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Company type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_company_api_credential.go b/src/management/model_company_api_credential.go index 354f0c9dd..4781828b7 100644 --- a/src/management/model_company_api_credential.go +++ b/src/management/model_company_api_credential.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CompanyApiCredential type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_company_links.go b/src/management/model_company_links.go index 992ca7e60..07ebaf0b8 100644 --- a/src/management/model_company_links.go +++ b/src/management/model_company_links.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CompanyLinks type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_company_user.go b/src/management/model_company_user.go index 525cd8c3c..7fb2c715a 100644 --- a/src/management/model_company_user.go +++ b/src/management/model_company_user.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CompanyUser type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_configuration.go b/src/management/model_configuration.go index 0d526a11b..00c734bdb 100644 --- a/src/management/model_configuration.go +++ b/src/management/model_configuration.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Configuration type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_connectivity.go b/src/management/model_connectivity.go index 9b443bfe7..b0c1d80cd 100644 --- a/src/management/model_connectivity.go +++ b/src/management/model_connectivity.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Connectivity type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_contact.go b/src/management/model_contact.go index e593bbbd7..7cf99c861 100644 --- a/src/management/model_contact.go +++ b/src/management/model_contact.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Contact type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_create_allowed_origin_request.go b/src/management/model_create_allowed_origin_request.go index 8fe6b2469..bffd191fa 100644 --- a/src/management/model_create_allowed_origin_request.go +++ b/src/management/model_create_allowed_origin_request.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CreateAllowedOriginRequest type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_create_api_credential_response.go b/src/management/model_create_api_credential_response.go index b8c33c017..c92f9a4d9 100644 --- a/src/management/model_create_api_credential_response.go +++ b/src/management/model_create_api_credential_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CreateApiCredentialResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_create_company_api_credential_request.go b/src/management/model_create_company_api_credential_request.go index de2db86b4..4f98b02e5 100644 --- a/src/management/model_create_company_api_credential_request.go +++ b/src/management/model_create_company_api_credential_request.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CreateCompanyApiCredentialRequest type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_create_company_api_credential_response.go b/src/management/model_create_company_api_credential_response.go index 68bade3fd..c991847a9 100644 --- a/src/management/model_create_company_api_credential_response.go +++ b/src/management/model_create_company_api_credential_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CreateCompanyApiCredentialResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_create_company_user_request.go b/src/management/model_create_company_user_request.go index a6342d3bd..2630058d1 100644 --- a/src/management/model_create_company_user_request.go +++ b/src/management/model_create_company_user_request.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CreateCompanyUserRequest type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_create_company_user_response.go b/src/management/model_create_company_user_response.go index 165b2d83c..e3be67df5 100644 --- a/src/management/model_create_company_user_response.go +++ b/src/management/model_create_company_user_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CreateCompanyUserResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_create_company_webhook_request.go b/src/management/model_create_company_webhook_request.go index 782a93540..ee0c45f86 100644 --- a/src/management/model_create_company_webhook_request.go +++ b/src/management/model_create_company_webhook_request.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CreateCompanyWebhookRequest type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_create_merchant_api_credential_request.go b/src/management/model_create_merchant_api_credential_request.go index 20d4c78c4..dac93befc 100644 --- a/src/management/model_create_merchant_api_credential_request.go +++ b/src/management/model_create_merchant_api_credential_request.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CreateMerchantApiCredentialRequest type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_create_merchant_request.go b/src/management/model_create_merchant_request.go index 1959c1aee..728f0d89f 100644 --- a/src/management/model_create_merchant_request.go +++ b/src/management/model_create_merchant_request.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CreateMerchantRequest type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_create_merchant_response.go b/src/management/model_create_merchant_response.go index 42498e6a1..ddd56281f 100644 --- a/src/management/model_create_merchant_response.go +++ b/src/management/model_create_merchant_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CreateMerchantResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_create_merchant_user_request.go b/src/management/model_create_merchant_user_request.go index 49c795de8..e49058da1 100644 --- a/src/management/model_create_merchant_user_request.go +++ b/src/management/model_create_merchant_user_request.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CreateMerchantUserRequest type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_create_merchant_webhook_request.go b/src/management/model_create_merchant_webhook_request.go index 198f34923..fd32ba83e 100644 --- a/src/management/model_create_merchant_webhook_request.go +++ b/src/management/model_create_merchant_webhook_request.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CreateMerchantWebhookRequest type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_create_user_response.go b/src/management/model_create_user_response.go index 5a79ebd35..59f48844c 100644 --- a/src/management/model_create_user_response.go +++ b/src/management/model_create_user_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CreateUserResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_currency.go b/src/management/model_currency.go index c1d66cf37..94be3c424 100644 --- a/src/management/model_currency.go +++ b/src/management/model_currency.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Currency type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_custom_notification.go b/src/management/model_custom_notification.go index 85b8a2ea7..46bbeed17 100644 --- a/src/management/model_custom_notification.go +++ b/src/management/model_custom_notification.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CustomNotification type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_data_center.go b/src/management/model_data_center.go index 41dce3d03..f6fb53a9e 100644 --- a/src/management/model_data_center.go +++ b/src/management/model_data_center.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DataCenter type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_event_url.go b/src/management/model_event_url.go index b602d0132..1743e4441 100644 --- a/src/management/model_event_url.go +++ b/src/management/model_event_url.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the EventUrl type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_external_terminal_action.go b/src/management/model_external_terminal_action.go index db8b8fb4c..ba94c6056 100644 --- a/src/management/model_external_terminal_action.go +++ b/src/management/model_external_terminal_action.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ExternalTerminalAction type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_file.go b/src/management/model_file.go index 3992ac559..2bd74e1d9 100644 --- a/src/management/model_file.go +++ b/src/management/model_file.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the File type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_generate_api_key_response.go b/src/management/model_generate_api_key_response.go index 23b417317..09b4b2899 100644 --- a/src/management/model_generate_api_key_response.go +++ b/src/management/model_generate_api_key_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the GenerateApiKeyResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_generate_client_key_response.go b/src/management/model_generate_client_key_response.go index 67079c865..3b9afffbc 100644 --- a/src/management/model_generate_client_key_response.go +++ b/src/management/model_generate_client_key_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the GenerateClientKeyResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_generate_hmac_key_response.go b/src/management/model_generate_hmac_key_response.go index c8521b7a7..2bd1556d6 100644 --- a/src/management/model_generate_hmac_key_response.go +++ b/src/management/model_generate_hmac_key_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the GenerateHmacKeyResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_generic_pm_with_tdi_info.go b/src/management/model_generic_pm_with_tdi_info.go index 3027e921c..1aec220bc 100644 --- a/src/management/model_generic_pm_with_tdi_info.go +++ b/src/management/model_generic_pm_with_tdi_info.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the GenericPmWithTdiInfo type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_giro_pay_info.go b/src/management/model_giro_pay_info.go index bb0e0df80..4c58014b4 100644 --- a/src/management/model_giro_pay_info.go +++ b/src/management/model_giro_pay_info.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the GiroPayInfo type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_google_pay_info.go b/src/management/model_google_pay_info.go index 6d043b44b..f785471e1 100644 --- a/src/management/model_google_pay_info.go +++ b/src/management/model_google_pay_info.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the GooglePayInfo type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_gratuity.go b/src/management/model_gratuity.go index 174007419..fcce999fd 100644 --- a/src/management/model_gratuity.go +++ b/src/management/model_gratuity.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Gratuity type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_hardware.go b/src/management/model_hardware.go index 0fb0697f8..7f8a02299 100644 --- a/src/management/model_hardware.go +++ b/src/management/model_hardware.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Hardware type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_id_name.go b/src/management/model_id_name.go index 809402c8c..cc595704a 100644 --- a/src/management/model_id_name.go +++ b/src/management/model_id_name.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the IdName type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_install_android_app_details.go b/src/management/model_install_android_app_details.go index ac7069297..d03867e44 100644 --- a/src/management/model_install_android_app_details.go +++ b/src/management/model_install_android_app_details.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the InstallAndroidAppDetails type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_install_android_certificate_details.go b/src/management/model_install_android_certificate_details.go index b9d4e466a..1d4def868 100644 --- a/src/management/model_install_android_certificate_details.go +++ b/src/management/model_install_android_certificate_details.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the InstallAndroidCertificateDetails type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_invalid_field.go b/src/management/model_invalid_field.go index f5c724faa..7ebf4e198 100644 --- a/src/management/model_invalid_field.go +++ b/src/management/model_invalid_field.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the InvalidField type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_json_object.go b/src/management/model_json_object.go index 2548a5e82..d569a97fc 100644 --- a/src/management/model_json_object.go +++ b/src/management/model_json_object.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the JSONObject type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_json_path.go b/src/management/model_json_path.go index 4b74d39b2..a4bb16af5 100644 --- a/src/management/model_json_path.go +++ b/src/management/model_json_path.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the JSONPath type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_key.go b/src/management/model_key.go index 3a8a4f6e7..bc2d8c915 100644 --- a/src/management/model_key.go +++ b/src/management/model_key.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Key type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_klarna_info.go b/src/management/model_klarna_info.go index 66cbf720d..3f1025737 100644 --- a/src/management/model_klarna_info.go +++ b/src/management/model_klarna_info.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the KlarnaInfo type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_links.go b/src/management/model_links.go index 61d22b9e6..8caf31089 100644 --- a/src/management/model_links.go +++ b/src/management/model_links.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Links type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_links_element.go b/src/management/model_links_element.go index ec7dfe1e8..aa0d53c4c 100644 --- a/src/management/model_links_element.go +++ b/src/management/model_links_element.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the LinksElement type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_list_company_api_credentials_response.go b/src/management/model_list_company_api_credentials_response.go index 9c22c9f3c..84436ebef 100644 --- a/src/management/model_list_company_api_credentials_response.go +++ b/src/management/model_list_company_api_credentials_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ListCompanyApiCredentialsResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_list_company_response.go b/src/management/model_list_company_response.go index 12f592d09..59e63fb90 100644 --- a/src/management/model_list_company_response.go +++ b/src/management/model_list_company_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ListCompanyResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_list_company_users_response.go b/src/management/model_list_company_users_response.go index b2e3ded12..192769f8f 100644 --- a/src/management/model_list_company_users_response.go +++ b/src/management/model_list_company_users_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ListCompanyUsersResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_list_external_terminal_actions_response.go b/src/management/model_list_external_terminal_actions_response.go index 2a0390d84..7346c0202 100644 --- a/src/management/model_list_external_terminal_actions_response.go +++ b/src/management/model_list_external_terminal_actions_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ListExternalTerminalActionsResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_list_merchant_api_credentials_response.go b/src/management/model_list_merchant_api_credentials_response.go index 025cd8903..6cebb8ac9 100644 --- a/src/management/model_list_merchant_api_credentials_response.go +++ b/src/management/model_list_merchant_api_credentials_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ListMerchantApiCredentialsResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_list_merchant_response.go b/src/management/model_list_merchant_response.go index 113c8763e..b3a7a6361 100644 --- a/src/management/model_list_merchant_response.go +++ b/src/management/model_list_merchant_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ListMerchantResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_list_merchant_users_response.go b/src/management/model_list_merchant_users_response.go index 31140bd86..a97966091 100644 --- a/src/management/model_list_merchant_users_response.go +++ b/src/management/model_list_merchant_users_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ListMerchantUsersResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_list_stores_response.go b/src/management/model_list_stores_response.go index 471afcc22..705444a5d 100644 --- a/src/management/model_list_stores_response.go +++ b/src/management/model_list_stores_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ListStoresResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_list_terminals_response.go b/src/management/model_list_terminals_response.go index e09cbe793..b36c8dd91 100644 --- a/src/management/model_list_terminals_response.go +++ b/src/management/model_list_terminals_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ListTerminalsResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_list_webhooks_response.go b/src/management/model_list_webhooks_response.go index 00c6262d7..2cd5b05c6 100644 --- a/src/management/model_list_webhooks_response.go +++ b/src/management/model_list_webhooks_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ListWebhooksResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_localization.go b/src/management/model_localization.go index 2926b6619..5a46d58fa 100644 --- a/src/management/model_localization.go +++ b/src/management/model_localization.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Localization type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_logo.go b/src/management/model_logo.go index 4aa3f44db..c29907a4b 100644 --- a/src/management/model_logo.go +++ b/src/management/model_logo.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Logo type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_me_api_credential.go b/src/management/model_me_api_credential.go index d29b46eff..4bf9339a0 100644 --- a/src/management/model_me_api_credential.go +++ b/src/management/model_me_api_credential.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the MeApiCredential type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_meal_voucher_fr_info.go b/src/management/model_meal_voucher_fr_info.go index 7858fea51..0ab121fb6 100644 --- a/src/management/model_meal_voucher_fr_info.go +++ b/src/management/model_meal_voucher_fr_info.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the MealVoucherFRInfo type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_merchant.go b/src/management/model_merchant.go index d7a54ad64..08b1ee9c5 100644 --- a/src/management/model_merchant.go +++ b/src/management/model_merchant.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Merchant type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_merchant_links.go b/src/management/model_merchant_links.go index 6d1ba1e82..47eaad8df 100644 --- a/src/management/model_merchant_links.go +++ b/src/management/model_merchant_links.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the MerchantLinks type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_minor_units_monetary_value.go b/src/management/model_minor_units_monetary_value.go index b0bd1d7ba..ca1304832 100644 --- a/src/management/model_minor_units_monetary_value.go +++ b/src/management/model_minor_units_monetary_value.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the MinorUnitsMonetaryValue type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_name.go b/src/management/model_name.go index a64c80ad3..f76319d2f 100644 --- a/src/management/model_name.go +++ b/src/management/model_name.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Name type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_name2.go b/src/management/model_name2.go index d3b923f04..36e101d9d 100644 --- a/src/management/model_name2.go +++ b/src/management/model_name2.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Name2 type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_nexo.go b/src/management/model_nexo.go index fb3770751..10a294da0 100644 --- a/src/management/model_nexo.go +++ b/src/management/model_nexo.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Nexo type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_notification.go b/src/management/model_notification.go index 421d383eb..2c3eff355 100644 --- a/src/management/model_notification.go +++ b/src/management/model_notification.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Notification type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_notification_url.go b/src/management/model_notification_url.go index a75c70778..346a06f1d 100644 --- a/src/management/model_notification_url.go +++ b/src/management/model_notification_url.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the NotificationUrl type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_offline_processing.go b/src/management/model_offline_processing.go index d2461f4d2..16e0e4169 100644 --- a/src/management/model_offline_processing.go +++ b/src/management/model_offline_processing.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the OfflineProcessing type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_opi.go b/src/management/model_opi.go index 88780eec5..f945a9bc2 100644 --- a/src/management/model_opi.go +++ b/src/management/model_opi.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Opi type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_order_item.go b/src/management/model_order_item.go index 2546d1fe6..c7b506415 100644 --- a/src/management/model_order_item.go +++ b/src/management/model_order_item.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the OrderItem type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_pagination_links.go b/src/management/model_pagination_links.go index 28ce5897d..5de8df0fd 100644 --- a/src/management/model_pagination_links.go +++ b/src/management/model_pagination_links.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaginationLinks type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_passcodes.go b/src/management/model_passcodes.go index 375ac1869..1dc451be0 100644 --- a/src/management/model_passcodes.go +++ b/src/management/model_passcodes.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Passcodes type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_pay_at_table.go b/src/management/model_pay_at_table.go index 7c132748f..d32d9c1a3 100644 --- a/src/management/model_pay_at_table.go +++ b/src/management/model_pay_at_table.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PayAtTable type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_pay_pal_info.go b/src/management/model_pay_pal_info.go index 35f0c5dbd..dcce9d0ec 100644 --- a/src/management/model_pay_pal_info.go +++ b/src/management/model_pay_pal_info.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PayPalInfo type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_payment.go b/src/management/model_payment.go index 444a57e10..b19fbabbb 100644 --- a/src/management/model_payment.go +++ b/src/management/model_payment.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Payment type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_payment_method.go b/src/management/model_payment_method.go index 739a301c4..33a9ab57a 100644 --- a/src/management/model_payment_method.go +++ b/src/management/model_payment_method.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentMethod type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_payment_method_response.go b/src/management/model_payment_method_response.go index f3a1329f8..e24906497 100644 --- a/src/management/model_payment_method_response.go +++ b/src/management/model_payment_method_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentMethodResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_payment_method_setup_info.go b/src/management/model_payment_method_setup_info.go index 5985d0507..be9312b28 100644 --- a/src/management/model_payment_method_setup_info.go +++ b/src/management/model_payment_method_setup_info.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentMethodSetupInfo type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_payout_settings.go b/src/management/model_payout_settings.go index d60b275bb..5bc9a59ce 100644 --- a/src/management/model_payout_settings.go +++ b/src/management/model_payout_settings.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PayoutSettings type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_payout_settings_request.go b/src/management/model_payout_settings_request.go index 906490dfd..93223b5dc 100644 --- a/src/management/model_payout_settings_request.go +++ b/src/management/model_payout_settings_request.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PayoutSettingsRequest type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_payout_settings_response.go b/src/management/model_payout_settings_response.go index a459b5b50..7c7a813b1 100644 --- a/src/management/model_payout_settings_response.go +++ b/src/management/model_payout_settings_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PayoutSettingsResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_profile.go b/src/management/model_profile.go index 8e26df225..b9afd9329 100644 --- a/src/management/model_profile.go +++ b/src/management/model_profile.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Profile type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_receipt_options.go b/src/management/model_receipt_options.go index 182c5d606..11e9f90e2 100644 --- a/src/management/model_receipt_options.go +++ b/src/management/model_receipt_options.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ReceiptOptions type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_receipt_printing.go b/src/management/model_receipt_printing.go index 8bb1ca5b6..2735d6cab 100644 --- a/src/management/model_receipt_printing.go +++ b/src/management/model_receipt_printing.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ReceiptPrinting type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_referenced.go b/src/management/model_referenced.go index 39f94a5d7..1ebec01d2 100644 --- a/src/management/model_referenced.go +++ b/src/management/model_referenced.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Referenced type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_refunds.go b/src/management/model_refunds.go index 09d5e43f1..3f9d62f82 100644 --- a/src/management/model_refunds.go +++ b/src/management/model_refunds.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Refunds type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_release_update_details.go b/src/management/model_release_update_details.go index 8b8df7b1c..6c5a3607b 100644 --- a/src/management/model_release_update_details.go +++ b/src/management/model_release_update_details.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ReleaseUpdateDetails type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_reprocess_android_app_response.go b/src/management/model_reprocess_android_app_response.go index 3b876c71e..5e20911df 100644 --- a/src/management/model_reprocess_android_app_response.go +++ b/src/management/model_reprocess_android_app_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ReprocessAndroidAppResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_request_activation_response.go b/src/management/model_request_activation_response.go index 9fb967be1..e985f4b93 100644 --- a/src/management/model_request_activation_response.go +++ b/src/management/model_request_activation_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the RequestActivationResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_rest_service_error.go b/src/management/model_rest_service_error.go index 425f38cc3..9e8659a1c 100644 --- a/src/management/model_rest_service_error.go +++ b/src/management/model_rest_service_error.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the RestServiceError type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_schedule_terminal_actions_request.go b/src/management/model_schedule_terminal_actions_request.go index a18d992fb..286d6247a 100644 --- a/src/management/model_schedule_terminal_actions_request.go +++ b/src/management/model_schedule_terminal_actions_request.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ScheduleTerminalActionsRequest type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_schedule_terminal_actions_response.go b/src/management/model_schedule_terminal_actions_response.go index 9672dc8a8..e02e0af32 100644 --- a/src/management/model_schedule_terminal_actions_response.go +++ b/src/management/model_schedule_terminal_actions_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ScheduleTerminalActionsResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_settings.go b/src/management/model_settings.go index 3bd80d1bf..f3e138218 100644 --- a/src/management/model_settings.go +++ b/src/management/model_settings.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Settings type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_shipping_location.go b/src/management/model_shipping_location.go index e87da4770..d5bdd4d97 100644 --- a/src/management/model_shipping_location.go +++ b/src/management/model_shipping_location.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ShippingLocation type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_shipping_locations_response.go b/src/management/model_shipping_locations_response.go index 5b3f028a9..ea938fbfa 100644 --- a/src/management/model_shipping_locations_response.go +++ b/src/management/model_shipping_locations_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ShippingLocationsResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_signature.go b/src/management/model_signature.go index f9309c40d..78e30607c 100644 --- a/src/management/model_signature.go +++ b/src/management/model_signature.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Signature type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_sofort_info.go b/src/management/model_sofort_info.go index 89b70ab99..e8f246987 100644 --- a/src/management/model_sofort_info.go +++ b/src/management/model_sofort_info.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SofortInfo type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_split_configuration.go b/src/management/model_split_configuration.go index b090b0e55..7cc4e8797 100644 --- a/src/management/model_split_configuration.go +++ b/src/management/model_split_configuration.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SplitConfiguration type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_split_configuration_list.go b/src/management/model_split_configuration_list.go index 32cbcc6e7..7c7723384 100644 --- a/src/management/model_split_configuration_list.go +++ b/src/management/model_split_configuration_list.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SplitConfigurationList type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_split_configuration_logic.go b/src/management/model_split_configuration_logic.go index 47473de9a..f179cac44 100644 --- a/src/management/model_split_configuration_logic.go +++ b/src/management/model_split_configuration_logic.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SplitConfigurationLogic type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_split_configuration_rule.go b/src/management/model_split_configuration_rule.go index d7be101c4..803afc0ab 100644 --- a/src/management/model_split_configuration_rule.go +++ b/src/management/model_split_configuration_rule.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SplitConfigurationRule type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_standalone.go b/src/management/model_standalone.go index ccacbf36e..11223e25c 100644 --- a/src/management/model_standalone.go +++ b/src/management/model_standalone.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Standalone type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_store.go b/src/management/model_store.go index 73e425012..43a04c5f8 100644 --- a/src/management/model_store.go +++ b/src/management/model_store.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Store type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_store_and_forward.go b/src/management/model_store_and_forward.go index ffbfd2fed..94d4364e7 100644 --- a/src/management/model_store_and_forward.go +++ b/src/management/model_store_and_forward.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StoreAndForward type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_store_creation_request.go b/src/management/model_store_creation_request.go index 4e511f5c4..a957e117b 100644 --- a/src/management/model_store_creation_request.go +++ b/src/management/model_store_creation_request.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StoreCreationRequest type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_store_creation_with_merchant_code_request.go b/src/management/model_store_creation_with_merchant_code_request.go index 9d72c3b41..e1671342b 100644 --- a/src/management/model_store_creation_with_merchant_code_request.go +++ b/src/management/model_store_creation_with_merchant_code_request.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StoreCreationWithMerchantCodeRequest type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_store_location.go b/src/management/model_store_location.go index 7a6b9edd0..16cf31930 100644 --- a/src/management/model_store_location.go +++ b/src/management/model_store_location.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StoreLocation type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_store_split_configuration.go b/src/management/model_store_split_configuration.go index d92d44f71..6ee732654 100644 --- a/src/management/model_store_split_configuration.go +++ b/src/management/model_store_split_configuration.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StoreSplitConfiguration type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_supported_card_types.go b/src/management/model_supported_card_types.go index 0ec9e3917..be0b41c64 100644 --- a/src/management/model_supported_card_types.go +++ b/src/management/model_supported_card_types.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SupportedCardTypes type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_surcharge.go b/src/management/model_surcharge.go index 242c603a6..9378519fe 100644 --- a/src/management/model_surcharge.go +++ b/src/management/model_surcharge.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Surcharge type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_swish_info.go b/src/management/model_swish_info.go index d170af99f..0d2fdd4c8 100644 --- a/src/management/model_swish_info.go +++ b/src/management/model_swish_info.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SwishInfo type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_tap_to_pay.go b/src/management/model_tap_to_pay.go index 5074683fa..ded4af3e0 100644 --- a/src/management/model_tap_to_pay.go +++ b/src/management/model_tap_to_pay.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TapToPay type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_terminal.go b/src/management/model_terminal.go index 90bbfdce5..921d969c1 100644 --- a/src/management/model_terminal.go +++ b/src/management/model_terminal.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Terminal type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_terminal_action_schedule_detail.go b/src/management/model_terminal_action_schedule_detail.go index 1f2309ac5..2286fba8e 100644 --- a/src/management/model_terminal_action_schedule_detail.go +++ b/src/management/model_terminal_action_schedule_detail.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TerminalActionScheduleDetail type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_terminal_assignment.go b/src/management/model_terminal_assignment.go index 282c81cda..86c4f3f10 100644 --- a/src/management/model_terminal_assignment.go +++ b/src/management/model_terminal_assignment.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TerminalAssignment type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_terminal_connectivity.go b/src/management/model_terminal_connectivity.go index ac2690c6e..207d9dd02 100644 --- a/src/management/model_terminal_connectivity.go +++ b/src/management/model_terminal_connectivity.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TerminalConnectivity type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_terminal_connectivity_bluetooth.go b/src/management/model_terminal_connectivity_bluetooth.go index 1a07f0fa3..7e8c6148d 100644 --- a/src/management/model_terminal_connectivity_bluetooth.go +++ b/src/management/model_terminal_connectivity_bluetooth.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TerminalConnectivityBluetooth type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_terminal_connectivity_cellular.go b/src/management/model_terminal_connectivity_cellular.go index 4b8100db7..6baaf0ccb 100644 --- a/src/management/model_terminal_connectivity_cellular.go +++ b/src/management/model_terminal_connectivity_cellular.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TerminalConnectivityCellular type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_terminal_connectivity_ethernet.go b/src/management/model_terminal_connectivity_ethernet.go index 7bf39cbf9..f54a26b17 100644 --- a/src/management/model_terminal_connectivity_ethernet.go +++ b/src/management/model_terminal_connectivity_ethernet.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TerminalConnectivityEthernet type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_terminal_connectivity_wifi.go b/src/management/model_terminal_connectivity_wifi.go index 4335788c1..4a5c91163 100644 --- a/src/management/model_terminal_connectivity_wifi.go +++ b/src/management/model_terminal_connectivity_wifi.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TerminalConnectivityWifi type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_terminal_instructions.go b/src/management/model_terminal_instructions.go index 1c70b8225..98f33aec0 100644 --- a/src/management/model_terminal_instructions.go +++ b/src/management/model_terminal_instructions.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TerminalInstructions type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_terminal_models_response.go b/src/management/model_terminal_models_response.go index e53c3bc06..7f0f3bb88 100644 --- a/src/management/model_terminal_models_response.go +++ b/src/management/model_terminal_models_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TerminalModelsResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_terminal_order.go b/src/management/model_terminal_order.go index 6b5c9c2f8..448158fa1 100644 --- a/src/management/model_terminal_order.go +++ b/src/management/model_terminal_order.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TerminalOrder type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_terminal_order_request.go b/src/management/model_terminal_order_request.go index e77c8355c..95ea605de 100644 --- a/src/management/model_terminal_order_request.go +++ b/src/management/model_terminal_order_request.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TerminalOrderRequest type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_terminal_orders_response.go b/src/management/model_terminal_orders_response.go index 4c210600f..a9c45bf0e 100644 --- a/src/management/model_terminal_orders_response.go +++ b/src/management/model_terminal_orders_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TerminalOrdersResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_terminal_product.go b/src/management/model_terminal_product.go index 3b766e322..44a523cb0 100644 --- a/src/management/model_terminal_product.go +++ b/src/management/model_terminal_product.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TerminalProduct type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_terminal_product_price.go b/src/management/model_terminal_product_price.go index dca04e202..0b0127f4e 100644 --- a/src/management/model_terminal_product_price.go +++ b/src/management/model_terminal_product_price.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TerminalProductPrice type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_terminal_products_response.go b/src/management/model_terminal_products_response.go index 7fffc51c5..d375b5616 100644 --- a/src/management/model_terminal_products_response.go +++ b/src/management/model_terminal_products_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TerminalProductsResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_terminal_reassignment_request.go b/src/management/model_terminal_reassignment_request.go index a87872ba6..56c09448b 100644 --- a/src/management/model_terminal_reassignment_request.go +++ b/src/management/model_terminal_reassignment_request.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TerminalReassignmentRequest type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_terminal_reassignment_target.go b/src/management/model_terminal_reassignment_target.go index a5a52c05b..6f4f1854a 100644 --- a/src/management/model_terminal_reassignment_target.go +++ b/src/management/model_terminal_reassignment_target.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TerminalReassignmentTarget type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_terminal_settings.go b/src/management/model_terminal_settings.go index bd36a6a6c..e3e30358d 100644 --- a/src/management/model_terminal_settings.go +++ b/src/management/model_terminal_settings.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TerminalSettings type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_test_company_webhook_request.go b/src/management/model_test_company_webhook_request.go index d8bb2a5b1..e637e0329 100644 --- a/src/management/model_test_company_webhook_request.go +++ b/src/management/model_test_company_webhook_request.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TestCompanyWebhookRequest type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_test_output.go b/src/management/model_test_output.go index e1e1b97f7..ea38a98a8 100644 --- a/src/management/model_test_output.go +++ b/src/management/model_test_output.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TestOutput type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_test_webhook_request.go b/src/management/model_test_webhook_request.go index 4f9125ee2..e4ec2faf0 100644 --- a/src/management/model_test_webhook_request.go +++ b/src/management/model_test_webhook_request.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TestWebhookRequest type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_test_webhook_response.go b/src/management/model_test_webhook_response.go index 0ec2a2d3f..b209ebbbe 100644 --- a/src/management/model_test_webhook_response.go +++ b/src/management/model_test_webhook_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TestWebhookResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_ticket_info.go b/src/management/model_ticket_info.go index 38c92737a..f4276b3a8 100644 --- a/src/management/model_ticket_info.go +++ b/src/management/model_ticket_info.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TicketInfo type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_timeouts.go b/src/management/model_timeouts.go index 03982db5c..8320f8bb1 100644 --- a/src/management/model_timeouts.go +++ b/src/management/model_timeouts.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Timeouts type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_transaction_description_info.go b/src/management/model_transaction_description_info.go index 5d528b2a0..08e5b622f 100644 --- a/src/management/model_transaction_description_info.go +++ b/src/management/model_transaction_description_info.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransactionDescriptionInfo type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_twint_info.go b/src/management/model_twint_info.go index c1ba7df4c..d720dd722 100644 --- a/src/management/model_twint_info.go +++ b/src/management/model_twint_info.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TwintInfo type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_uninstall_android_app_details.go b/src/management/model_uninstall_android_app_details.go index 45808910d..392821822 100644 --- a/src/management/model_uninstall_android_app_details.go +++ b/src/management/model_uninstall_android_app_details.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UninstallAndroidAppDetails type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_uninstall_android_certificate_details.go b/src/management/model_uninstall_android_certificate_details.go index 7e7f29d86..506832085 100644 --- a/src/management/model_uninstall_android_certificate_details.go +++ b/src/management/model_uninstall_android_certificate_details.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UninstallAndroidCertificateDetails type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_updatable_address.go b/src/management/model_updatable_address.go index 7e4e69269..eff3f968b 100644 --- a/src/management/model_updatable_address.go +++ b/src/management/model_updatable_address.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UpdatableAddress type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_update_company_api_credential_request.go b/src/management/model_update_company_api_credential_request.go index cf1dceb08..9397be51a 100644 --- a/src/management/model_update_company_api_credential_request.go +++ b/src/management/model_update_company_api_credential_request.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UpdateCompanyApiCredentialRequest type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_update_company_user_request.go b/src/management/model_update_company_user_request.go index ad8acc7a4..c865aa1b5 100644 --- a/src/management/model_update_company_user_request.go +++ b/src/management/model_update_company_user_request.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UpdateCompanyUserRequest type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_update_company_webhook_request.go b/src/management/model_update_company_webhook_request.go index be4509a92..839bffbf0 100644 --- a/src/management/model_update_company_webhook_request.go +++ b/src/management/model_update_company_webhook_request.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UpdateCompanyWebhookRequest type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_update_merchant_api_credential_request.go b/src/management/model_update_merchant_api_credential_request.go index a7a4bdfef..7cabce04a 100644 --- a/src/management/model_update_merchant_api_credential_request.go +++ b/src/management/model_update_merchant_api_credential_request.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UpdateMerchantApiCredentialRequest type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_update_merchant_user_request.go b/src/management/model_update_merchant_user_request.go index b9c9e5919..becec8887 100644 --- a/src/management/model_update_merchant_user_request.go +++ b/src/management/model_update_merchant_user_request.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UpdateMerchantUserRequest type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_update_merchant_webhook_request.go b/src/management/model_update_merchant_webhook_request.go index 5c889d0eb..acbcce12d 100644 --- a/src/management/model_update_merchant_webhook_request.go +++ b/src/management/model_update_merchant_webhook_request.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UpdateMerchantWebhookRequest type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_update_payment_method_info.go b/src/management/model_update_payment_method_info.go index 0fa4fbadf..ec990ec8f 100644 --- a/src/management/model_update_payment_method_info.go +++ b/src/management/model_update_payment_method_info.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UpdatePaymentMethodInfo type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_update_payout_settings_request.go b/src/management/model_update_payout_settings_request.go index 08e53d892..8fec96202 100644 --- a/src/management/model_update_payout_settings_request.go +++ b/src/management/model_update_payout_settings_request.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UpdatePayoutSettingsRequest type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_update_split_configuration_logic_request.go b/src/management/model_update_split_configuration_logic_request.go index 6292956ec..0c76ba071 100644 --- a/src/management/model_update_split_configuration_logic_request.go +++ b/src/management/model_update_split_configuration_logic_request.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UpdateSplitConfigurationLogicRequest type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_update_split_configuration_request.go b/src/management/model_update_split_configuration_request.go index 05ceabe19..0a2c779fc 100644 --- a/src/management/model_update_split_configuration_request.go +++ b/src/management/model_update_split_configuration_request.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UpdateSplitConfigurationRequest type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_update_split_configuration_rule_request.go b/src/management/model_update_split_configuration_rule_request.go index 694096774..397004731 100644 --- a/src/management/model_update_split_configuration_rule_request.go +++ b/src/management/model_update_split_configuration_rule_request.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UpdateSplitConfigurationRuleRequest type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_update_store_request.go b/src/management/model_update_store_request.go index 839d1f4af..4efb253ad 100644 --- a/src/management/model_update_store_request.go +++ b/src/management/model_update_store_request.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UpdateStoreRequest type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_upload_android_app_response.go b/src/management/model_upload_android_app_response.go index 42414e650..dd002f52f 100644 --- a/src/management/model_upload_android_app_response.go +++ b/src/management/model_upload_android_app_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UploadAndroidAppResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_upload_android_certificate_response.go b/src/management/model_upload_android_certificate_response.go index 50014fad1..c77906f28 100644 --- a/src/management/model_upload_android_certificate_response.go +++ b/src/management/model_upload_android_certificate_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UploadAndroidCertificateResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_url.go b/src/management/model_url.go index 8f9c8f3a4..b73399d6b 100644 --- a/src/management/model_url.go +++ b/src/management/model_url.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Url type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_user.go b/src/management/model_user.go index 782134b5c..304f4f340 100644 --- a/src/management/model_user.go +++ b/src/management/model_user.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the User type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_vipps_info.go b/src/management/model_vipps_info.go index 6a1d5487d..21579c05b 100644 --- a/src/management/model_vipps_info.go +++ b/src/management/model_vipps_info.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the VippsInfo type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_we_chat_pay_info.go b/src/management/model_we_chat_pay_info.go index 4057f0e98..a8439817d 100644 --- a/src/management/model_we_chat_pay_info.go +++ b/src/management/model_we_chat_pay_info.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the WeChatPayInfo type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_we_chat_pay_pos_info.go b/src/management/model_we_chat_pay_pos_info.go index 81f002b2e..5f72e8a65 100644 --- a/src/management/model_we_chat_pay_pos_info.go +++ b/src/management/model_we_chat_pay_pos_info.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the WeChatPayPosInfo type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_webhook.go b/src/management/model_webhook.go index 16ae75cf6..7ff24362e 100644 --- a/src/management/model_webhook.go +++ b/src/management/model_webhook.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Webhook type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_webhook_links.go b/src/management/model_webhook_links.go index 551a53407..83a69953d 100644 --- a/src/management/model_webhook_links.go +++ b/src/management/model_webhook_links.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the WebhookLinks type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_wifi_profiles.go b/src/management/model_wifi_profiles.go index 3483f43c9..1f582df4c 100644 --- a/src/management/model_wifi_profiles.go +++ b/src/management/model_wifi_profiles.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the WifiProfiles type satisfies the MappedNullable interface at compile time diff --git a/src/managementwebhook/model_account_capability_data.go b/src/managementwebhook/model_account_capability_data.go index ba8a9bb30..5a673e9db 100644 --- a/src/managementwebhook/model_account_capability_data.go +++ b/src/managementwebhook/model_account_capability_data.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AccountCapabilityData type satisfies the MappedNullable interface at compile time diff --git a/src/managementwebhook/model_account_create_notification_data.go b/src/managementwebhook/model_account_create_notification_data.go index 7ff2539a6..f3a9b0753 100644 --- a/src/managementwebhook/model_account_create_notification_data.go +++ b/src/managementwebhook/model_account_create_notification_data.go @@ -11,7 +11,7 @@ package managementwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AccountCreateNotificationData type satisfies the MappedNullable interface at compile time diff --git a/src/managementwebhook/model_account_notification_response.go b/src/managementwebhook/model_account_notification_response.go index 4e562e926..ca3435899 100644 --- a/src/managementwebhook/model_account_notification_response.go +++ b/src/managementwebhook/model_account_notification_response.go @@ -11,7 +11,7 @@ package managementwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AccountNotificationResponse type satisfies the MappedNullable interface at compile time diff --git a/src/managementwebhook/model_account_update_notification_data.go b/src/managementwebhook/model_account_update_notification_data.go index 7c633e64b..c55da4225 100644 --- a/src/managementwebhook/model_account_update_notification_data.go +++ b/src/managementwebhook/model_account_update_notification_data.go @@ -11,7 +11,7 @@ package managementwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AccountUpdateNotificationData type satisfies the MappedNullable interface at compile time diff --git a/src/managementwebhook/model_capability_problem.go b/src/managementwebhook/model_capability_problem.go index ecfea32bb..f1605a78d 100644 --- a/src/managementwebhook/model_capability_problem.go +++ b/src/managementwebhook/model_capability_problem.go @@ -11,7 +11,7 @@ package managementwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CapabilityProblem type satisfies the MappedNullable interface at compile time diff --git a/src/managementwebhook/model_capability_problem_entity.go b/src/managementwebhook/model_capability_problem_entity.go index 92189aa71..c0d67709e 100644 --- a/src/managementwebhook/model_capability_problem_entity.go +++ b/src/managementwebhook/model_capability_problem_entity.go @@ -11,7 +11,7 @@ package managementwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CapabilityProblemEntity type satisfies the MappedNullable interface at compile time diff --git a/src/managementwebhook/model_capability_problem_entity_recursive.go b/src/managementwebhook/model_capability_problem_entity_recursive.go index 33062a9e8..97adf8a19 100644 --- a/src/managementwebhook/model_capability_problem_entity_recursive.go +++ b/src/managementwebhook/model_capability_problem_entity_recursive.go @@ -11,7 +11,7 @@ package managementwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CapabilityProblemEntityRecursive type satisfies the MappedNullable interface at compile time diff --git a/src/managementwebhook/model_merchant_created_notification_request.go b/src/managementwebhook/model_merchant_created_notification_request.go index 5b2f73d3e..e06750740 100644 --- a/src/managementwebhook/model_merchant_created_notification_request.go +++ b/src/managementwebhook/model_merchant_created_notification_request.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the MerchantCreatedNotificationRequest type satisfies the MappedNullable interface at compile time diff --git a/src/managementwebhook/model_merchant_updated_notification_request.go b/src/managementwebhook/model_merchant_updated_notification_request.go index d88edf387..a909b3c30 100644 --- a/src/managementwebhook/model_merchant_updated_notification_request.go +++ b/src/managementwebhook/model_merchant_updated_notification_request.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the MerchantUpdatedNotificationRequest type satisfies the MappedNullable interface at compile time diff --git a/src/managementwebhook/model_mid_service_notification_data.go b/src/managementwebhook/model_mid_service_notification_data.go index 4445b396f..7862e0135 100644 --- a/src/managementwebhook/model_mid_service_notification_data.go +++ b/src/managementwebhook/model_mid_service_notification_data.go @@ -11,7 +11,7 @@ package managementwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the MidServiceNotificationData type satisfies the MappedNullable interface at compile time diff --git a/src/managementwebhook/model_notification_data_message.go b/src/managementwebhook/model_notification_data_message.go index 4d1d34f75..0b6ac5e59 100644 --- a/src/managementwebhook/model_notification_data_message.go +++ b/src/managementwebhook/model_notification_data_message.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the NotificationDataMessage type satisfies the MappedNullable interface at compile time diff --git a/src/managementwebhook/model_payment_method_created_notification_request.go b/src/managementwebhook/model_payment_method_created_notification_request.go index c132f65e9..91bbc1e71 100644 --- a/src/managementwebhook/model_payment_method_created_notification_request.go +++ b/src/managementwebhook/model_payment_method_created_notification_request.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentMethodCreatedNotificationRequest type satisfies the MappedNullable interface at compile time diff --git a/src/managementwebhook/model_payment_method_notification_response.go b/src/managementwebhook/model_payment_method_notification_response.go index 719a922ac..46fe7910c 100644 --- a/src/managementwebhook/model_payment_method_notification_response.go +++ b/src/managementwebhook/model_payment_method_notification_response.go @@ -11,7 +11,7 @@ package managementwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentMethodNotificationResponse type satisfies the MappedNullable interface at compile time diff --git a/src/managementwebhook/model_payment_method_request_removed_notification_request.go b/src/managementwebhook/model_payment_method_request_removed_notification_request.go index 600a462c5..41b010a67 100644 --- a/src/managementwebhook/model_payment_method_request_removed_notification_request.go +++ b/src/managementwebhook/model_payment_method_request_removed_notification_request.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentMethodRequestRemovedNotificationRequest type satisfies the MappedNullable interface at compile time diff --git a/src/managementwebhook/model_payment_method_scheduled_for_removal_notification_request.go b/src/managementwebhook/model_payment_method_scheduled_for_removal_notification_request.go index 835d384b6..7eb361de2 100644 --- a/src/managementwebhook/model_payment_method_scheduled_for_removal_notification_request.go +++ b/src/managementwebhook/model_payment_method_scheduled_for_removal_notification_request.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentMethodScheduledForRemovalNotificationRequest type satisfies the MappedNullable interface at compile time diff --git a/src/managementwebhook/model_remediating_action.go b/src/managementwebhook/model_remediating_action.go index 673581ea8..f67333d2d 100644 --- a/src/managementwebhook/model_remediating_action.go +++ b/src/managementwebhook/model_remediating_action.go @@ -11,7 +11,7 @@ package managementwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the RemediatingAction type satisfies the MappedNullable interface at compile time diff --git a/src/managementwebhook/model_terminal_boarding_data.go b/src/managementwebhook/model_terminal_boarding_data.go index 7b3d4f5e2..de4177f36 100644 --- a/src/managementwebhook/model_terminal_boarding_data.go +++ b/src/managementwebhook/model_terminal_boarding_data.go @@ -11,7 +11,7 @@ package managementwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TerminalBoardingData type satisfies the MappedNullable interface at compile time diff --git a/src/managementwebhook/model_terminal_boarding_notification_request.go b/src/managementwebhook/model_terminal_boarding_notification_request.go index 57a1713ca..a8219cc4b 100644 --- a/src/managementwebhook/model_terminal_boarding_notification_request.go +++ b/src/managementwebhook/model_terminal_boarding_notification_request.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TerminalBoardingNotificationRequest type satisfies the MappedNullable interface at compile time diff --git a/src/managementwebhook/model_terminal_boarding_notification_response.go b/src/managementwebhook/model_terminal_boarding_notification_response.go index 00e5a5179..8646bd4a0 100644 --- a/src/managementwebhook/model_terminal_boarding_notification_response.go +++ b/src/managementwebhook/model_terminal_boarding_notification_response.go @@ -11,7 +11,7 @@ package managementwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TerminalBoardingNotificationResponse type satisfies the MappedNullable interface at compile time diff --git a/src/managementwebhook/model_terminal_settings_data.go b/src/managementwebhook/model_terminal_settings_data.go index e267cfb7f..680463d4f 100644 --- a/src/managementwebhook/model_terminal_settings_data.go +++ b/src/managementwebhook/model_terminal_settings_data.go @@ -11,7 +11,7 @@ package managementwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TerminalSettingsData type satisfies the MappedNullable interface at compile time diff --git a/src/managementwebhook/model_terminal_settings_notification_request.go b/src/managementwebhook/model_terminal_settings_notification_request.go index af5f0876c..9b643f405 100644 --- a/src/managementwebhook/model_terminal_settings_notification_request.go +++ b/src/managementwebhook/model_terminal_settings_notification_request.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TerminalSettingsNotificationRequest type satisfies the MappedNullable interface at compile time diff --git a/src/managementwebhook/model_terminal_settings_notification_response.go b/src/managementwebhook/model_terminal_settings_notification_response.go index f0f6473c3..1de9a8413 100644 --- a/src/managementwebhook/model_terminal_settings_notification_response.go +++ b/src/managementwebhook/model_terminal_settings_notification_response.go @@ -11,7 +11,7 @@ package managementwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TerminalSettingsNotificationResponse type satisfies the MappedNullable interface at compile time diff --git a/src/managementwebhook/model_verification_error.go b/src/managementwebhook/model_verification_error.go index b589f24e9..9754bd5e8 100644 --- a/src/managementwebhook/model_verification_error.go +++ b/src/managementwebhook/model_verification_error.go @@ -11,7 +11,7 @@ package managementwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the VerificationError type satisfies the MappedNullable interface at compile time diff --git a/src/managementwebhook/model_verification_error_recursive.go b/src/managementwebhook/model_verification_error_recursive.go index 946569b14..e80e208d6 100644 --- a/src/managementwebhook/model_verification_error_recursive.go +++ b/src/managementwebhook/model_verification_error_recursive.go @@ -11,7 +11,7 @@ package managementwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the VerificationErrorRecursive type satisfies the MappedNullable interface at compile time diff --git a/src/payments/api_general.go b/src/payments/api_general.go index a6326e4d5..9e448124e 100644 --- a/src/payments/api_general.go +++ b/src/payments/api_general.go @@ -13,7 +13,7 @@ import ( "net/http" "net/url" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // GeneralApi service diff --git a/src/payments/api_modifications.go b/src/payments/api_modifications.go index c56d3a2e1..e017ecf9c 100644 --- a/src/payments/api_modifications.go +++ b/src/payments/api_modifications.go @@ -13,7 +13,7 @@ import ( "net/http" "net/url" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // ModificationsApi service diff --git a/src/payments/api_payments.go b/src/payments/api_payments.go index 6c65061da..aeff01794 100644 --- a/src/payments/api_payments.go +++ b/src/payments/api_payments.go @@ -13,7 +13,7 @@ import ( "net/http" "net/url" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // PaymentsApi service diff --git a/src/payments/client.go b/src/payments/client.go index c39a83aec..9d107e824 100644 --- a/src/payments/client.go +++ b/src/payments/client.go @@ -9,7 +9,7 @@ API version: 68 package payments import ( - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // APIClient manages communication with the Adyen Payment API API v68 diff --git a/src/payments/model_account_info.go b/src/payments/model_account_info.go index 4da9569c5..190221d57 100644 --- a/src/payments/model_account_info.go +++ b/src/payments/model_account_info.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AccountInfo type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_acct_info.go b/src/payments/model_acct_info.go index 3e4b8d29c..0ac805d7e 100644 --- a/src/payments/model_acct_info.go +++ b/src/payments/model_acct_info.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AcctInfo type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_additional_data3_d_secure.go b/src/payments/model_additional_data3_d_secure.go index 0fab80a1b..e8525f928 100644 --- a/src/payments/model_additional_data3_d_secure.go +++ b/src/payments/model_additional_data3_d_secure.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalData3DSecure type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_additional_data_airline.go b/src/payments/model_additional_data_airline.go index cca829e0e..69178e861 100644 --- a/src/payments/model_additional_data_airline.go +++ b/src/payments/model_additional_data_airline.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalDataAirline type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_additional_data_car_rental.go b/src/payments/model_additional_data_car_rental.go index 2953d47fc..a8b754af6 100644 --- a/src/payments/model_additional_data_car_rental.go +++ b/src/payments/model_additional_data_car_rental.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalDataCarRental type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_additional_data_common.go b/src/payments/model_additional_data_common.go index a50e5fed4..ee2c981e3 100644 --- a/src/payments/model_additional_data_common.go +++ b/src/payments/model_additional_data_common.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalDataCommon type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_additional_data_level23.go b/src/payments/model_additional_data_level23.go index 3170efbe7..03a14bc33 100644 --- a/src/payments/model_additional_data_level23.go +++ b/src/payments/model_additional_data_level23.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalDataLevel23 type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_additional_data_lodging.go b/src/payments/model_additional_data_lodging.go index 5b3281d37..0d686d3b3 100644 --- a/src/payments/model_additional_data_lodging.go +++ b/src/payments/model_additional_data_lodging.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalDataLodging type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_additional_data_modifications.go b/src/payments/model_additional_data_modifications.go index d19191f1e..c6cd00b52 100644 --- a/src/payments/model_additional_data_modifications.go +++ b/src/payments/model_additional_data_modifications.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalDataModifications type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_additional_data_open_invoice.go b/src/payments/model_additional_data_open_invoice.go index 3eed0ffa9..cea83ddf8 100644 --- a/src/payments/model_additional_data_open_invoice.go +++ b/src/payments/model_additional_data_open_invoice.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalDataOpenInvoice type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_additional_data_opi.go b/src/payments/model_additional_data_opi.go index 34e851430..431536cb6 100644 --- a/src/payments/model_additional_data_opi.go +++ b/src/payments/model_additional_data_opi.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalDataOpi type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_additional_data_ratepay.go b/src/payments/model_additional_data_ratepay.go index 9cdd775bd..cd25b4ee5 100644 --- a/src/payments/model_additional_data_ratepay.go +++ b/src/payments/model_additional_data_ratepay.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalDataRatepay type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_additional_data_retry.go b/src/payments/model_additional_data_retry.go index cd8a2d8f2..3b9d23e1e 100644 --- a/src/payments/model_additional_data_retry.go +++ b/src/payments/model_additional_data_retry.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalDataRetry type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_additional_data_risk.go b/src/payments/model_additional_data_risk.go index 828536835..ac0b5b565 100644 --- a/src/payments/model_additional_data_risk.go +++ b/src/payments/model_additional_data_risk.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalDataRisk type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_additional_data_risk_standalone.go b/src/payments/model_additional_data_risk_standalone.go index a4d03dc33..f3988a0a7 100644 --- a/src/payments/model_additional_data_risk_standalone.go +++ b/src/payments/model_additional_data_risk_standalone.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalDataRiskStandalone type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_additional_data_sub_merchant.go b/src/payments/model_additional_data_sub_merchant.go index 13421edce..d8c9feb10 100644 --- a/src/payments/model_additional_data_sub_merchant.go +++ b/src/payments/model_additional_data_sub_merchant.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalDataSubMerchant type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_additional_data_temporary_services.go b/src/payments/model_additional_data_temporary_services.go index 2983955b6..2ab36e87a 100644 --- a/src/payments/model_additional_data_temporary_services.go +++ b/src/payments/model_additional_data_temporary_services.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalDataTemporaryServices type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_additional_data_wallets.go b/src/payments/model_additional_data_wallets.go index 01ef32242..afd413fae 100644 --- a/src/payments/model_additional_data_wallets.go +++ b/src/payments/model_additional_data_wallets.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalDataWallets type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_address.go b/src/payments/model_address.go index b76010eb5..cec2848b2 100644 --- a/src/payments/model_address.go +++ b/src/payments/model_address.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Address type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_adjust_authorisation_request.go b/src/payments/model_adjust_authorisation_request.go index f6c2ae4d6..0e4d6dd61 100644 --- a/src/payments/model_adjust_authorisation_request.go +++ b/src/payments/model_adjust_authorisation_request.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdjustAuthorisationRequest type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_amount.go b/src/payments/model_amount.go index 9064f402d..4a81d4122 100644 --- a/src/payments/model_amount.go +++ b/src/payments/model_amount.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Amount type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_application_info.go b/src/payments/model_application_info.go index ed3cd1d35..3d3eb0506 100644 --- a/src/payments/model_application_info.go +++ b/src/payments/model_application_info.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ApplicationInfo type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_authentication_result_request.go b/src/payments/model_authentication_result_request.go index 24ebbc646..6c792f990 100644 --- a/src/payments/model_authentication_result_request.go +++ b/src/payments/model_authentication_result_request.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AuthenticationResultRequest type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_authentication_result_response.go b/src/payments/model_authentication_result_response.go index 7365a2b82..5167ff847 100644 --- a/src/payments/model_authentication_result_response.go +++ b/src/payments/model_authentication_result_response.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AuthenticationResultResponse type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_bank_account.go b/src/payments/model_bank_account.go index 680593109..b4aceedb0 100644 --- a/src/payments/model_bank_account.go +++ b/src/payments/model_bank_account.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BankAccount type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_browser_info.go b/src/payments/model_browser_info.go index e954391ee..94133dced 100644 --- a/src/payments/model_browser_info.go +++ b/src/payments/model_browser_info.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BrowserInfo type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_cancel_or_refund_request.go b/src/payments/model_cancel_or_refund_request.go index 9073ae84b..926101f9e 100644 --- a/src/payments/model_cancel_or_refund_request.go +++ b/src/payments/model_cancel_or_refund_request.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CancelOrRefundRequest type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_cancel_request.go b/src/payments/model_cancel_request.go index 660d0d7c5..e968be83a 100644 --- a/src/payments/model_cancel_request.go +++ b/src/payments/model_cancel_request.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CancelRequest type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_capture_request.go b/src/payments/model_capture_request.go index 0ad525da6..9dc19ed0d 100644 --- a/src/payments/model_capture_request.go +++ b/src/payments/model_capture_request.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CaptureRequest type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_card.go b/src/payments/model_card.go index 0bf795305..0c29f26e5 100644 --- a/src/payments/model_card.go +++ b/src/payments/model_card.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Card type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_common_field.go b/src/payments/model_common_field.go index a2a0506f6..c424c697c 100644 --- a/src/payments/model_common_field.go +++ b/src/payments/model_common_field.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CommonField type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_device_render_options.go b/src/payments/model_device_render_options.go index 48843027d..f2500316d 100644 --- a/src/payments/model_device_render_options.go +++ b/src/payments/model_device_render_options.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DeviceRenderOptions type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_donation_request.go b/src/payments/model_donation_request.go index 3d9b493a3..db4b71169 100644 --- a/src/payments/model_donation_request.go +++ b/src/payments/model_donation_request.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DonationRequest type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_external_platform.go b/src/payments/model_external_platform.go index 42b2cca45..f413be483 100644 --- a/src/payments/model_external_platform.go +++ b/src/payments/model_external_platform.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ExternalPlatform type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_forex_quote.go b/src/payments/model_forex_quote.go index f4eed9633..df8c58a7f 100644 --- a/src/payments/model_forex_quote.go +++ b/src/payments/model_forex_quote.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ForexQuote type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_fraud_check_result.go b/src/payments/model_fraud_check_result.go index 604a255e2..3831d6b67 100644 --- a/src/payments/model_fraud_check_result.go +++ b/src/payments/model_fraud_check_result.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the FraudCheckResult type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_fraud_check_result_wrapper.go b/src/payments/model_fraud_check_result_wrapper.go index 562971b69..fec9a1687 100644 --- a/src/payments/model_fraud_check_result_wrapper.go +++ b/src/payments/model_fraud_check_result_wrapper.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the FraudCheckResultWrapper type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_fraud_result.go b/src/payments/model_fraud_result.go index 9f5da4a80..f9465b598 100644 --- a/src/payments/model_fraud_result.go +++ b/src/payments/model_fraud_result.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the FraudResult type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_fund_destination.go b/src/payments/model_fund_destination.go index 840c6e1e9..278172e18 100644 --- a/src/payments/model_fund_destination.go +++ b/src/payments/model_fund_destination.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the FundDestination type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_fund_source.go b/src/payments/model_fund_source.go index 3c644edcb..ecb734a50 100644 --- a/src/payments/model_fund_source.go +++ b/src/payments/model_fund_source.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the FundSource type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_installments.go b/src/payments/model_installments.go index 6ee818ff1..4dde3f8cb 100644 --- a/src/payments/model_installments.go +++ b/src/payments/model_installments.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Installments type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_mandate.go b/src/payments/model_mandate.go index bf227e7fc..ff3d62f69 100644 --- a/src/payments/model_mandate.go +++ b/src/payments/model_mandate.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Mandate type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_merchant_device.go b/src/payments/model_merchant_device.go index 2a3ec6319..530906ca4 100644 --- a/src/payments/model_merchant_device.go +++ b/src/payments/model_merchant_device.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the MerchantDevice type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_merchant_risk_indicator.go b/src/payments/model_merchant_risk_indicator.go index 060a3fea5..94b5d6900 100644 --- a/src/payments/model_merchant_risk_indicator.go +++ b/src/payments/model_merchant_risk_indicator.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the MerchantRiskIndicator type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_modification_result.go b/src/payments/model_modification_result.go index 6ecb286e9..0978efb83 100644 --- a/src/payments/model_modification_result.go +++ b/src/payments/model_modification_result.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ModificationResult type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_name.go b/src/payments/model_name.go index f8487ff0a..c5593daa4 100644 --- a/src/payments/model_name.go +++ b/src/payments/model_name.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Name type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_payment_request.go b/src/payments/model_payment_request.go index b38d45716..a1a1c46fe 100644 --- a/src/payments/model_payment_request.go +++ b/src/payments/model_payment_request.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentRequest type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_payment_request3d.go b/src/payments/model_payment_request3d.go index 2a9b79fe4..6f14f752c 100644 --- a/src/payments/model_payment_request3d.go +++ b/src/payments/model_payment_request3d.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentRequest3d type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_payment_request3ds2.go b/src/payments/model_payment_request3ds2.go index b1c17390b..391478881 100644 --- a/src/payments/model_payment_request3ds2.go +++ b/src/payments/model_payment_request3ds2.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentRequest3ds2 type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_payment_result.go b/src/payments/model_payment_result.go index 7998d2f58..1c3cffa8c 100644 --- a/src/payments/model_payment_result.go +++ b/src/payments/model_payment_result.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentResult type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_phone.go b/src/payments/model_phone.go index 2262824be..057c9546f 100644 --- a/src/payments/model_phone.go +++ b/src/payments/model_phone.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Phone type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_platform_chargeback_logic.go b/src/payments/model_platform_chargeback_logic.go index 5d2a2b747..92c713f1d 100644 --- a/src/payments/model_platform_chargeback_logic.go +++ b/src/payments/model_platform_chargeback_logic.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PlatformChargebackLogic type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_recurring.go b/src/payments/model_recurring.go index 03790eb40..304d02360 100644 --- a/src/payments/model_recurring.go +++ b/src/payments/model_recurring.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Recurring type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_refund_request.go b/src/payments/model_refund_request.go index 6ab106b4e..ddad81ea4 100644 --- a/src/payments/model_refund_request.go +++ b/src/payments/model_refund_request.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the RefundRequest type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_response_additional_data3_d_secure.go b/src/payments/model_response_additional_data3_d_secure.go index 07ba73796..4294f7fa2 100644 --- a/src/payments/model_response_additional_data3_d_secure.go +++ b/src/payments/model_response_additional_data3_d_secure.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResponseAdditionalData3DSecure type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_response_additional_data_billing_address.go b/src/payments/model_response_additional_data_billing_address.go index eeee36091..346324f9b 100644 --- a/src/payments/model_response_additional_data_billing_address.go +++ b/src/payments/model_response_additional_data_billing_address.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResponseAdditionalDataBillingAddress type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_response_additional_data_card.go b/src/payments/model_response_additional_data_card.go index ee774e587..7b56f1d6e 100644 --- a/src/payments/model_response_additional_data_card.go +++ b/src/payments/model_response_additional_data_card.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResponseAdditionalDataCard type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_response_additional_data_common.go b/src/payments/model_response_additional_data_common.go index 3f5506a23..338afbccd 100644 --- a/src/payments/model_response_additional_data_common.go +++ b/src/payments/model_response_additional_data_common.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResponseAdditionalDataCommon type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_response_additional_data_domestic_error.go b/src/payments/model_response_additional_data_domestic_error.go index 6d6d763f9..5c49d3fb6 100644 --- a/src/payments/model_response_additional_data_domestic_error.go +++ b/src/payments/model_response_additional_data_domestic_error.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResponseAdditionalDataDomesticError type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_response_additional_data_installments.go b/src/payments/model_response_additional_data_installments.go index c36756249..c64082a6f 100644 --- a/src/payments/model_response_additional_data_installments.go +++ b/src/payments/model_response_additional_data_installments.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResponseAdditionalDataInstallments type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_response_additional_data_network_tokens.go b/src/payments/model_response_additional_data_network_tokens.go index f621e67b3..763881f77 100644 --- a/src/payments/model_response_additional_data_network_tokens.go +++ b/src/payments/model_response_additional_data_network_tokens.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResponseAdditionalDataNetworkTokens type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_response_additional_data_opi.go b/src/payments/model_response_additional_data_opi.go index 2269efbe9..f25ae74d5 100644 --- a/src/payments/model_response_additional_data_opi.go +++ b/src/payments/model_response_additional_data_opi.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResponseAdditionalDataOpi type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_response_additional_data_sepa.go b/src/payments/model_response_additional_data_sepa.go index 05d9fcf91..c5e041be8 100644 --- a/src/payments/model_response_additional_data_sepa.go +++ b/src/payments/model_response_additional_data_sepa.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResponseAdditionalDataSepa type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_sdk_ephem_pub_key.go b/src/payments/model_sdk_ephem_pub_key.go index 59b9fecbc..0cd3e2eff 100644 --- a/src/payments/model_sdk_ephem_pub_key.go +++ b/src/payments/model_sdk_ephem_pub_key.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SDKEphemPubKey type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_secure_remote_commerce_checkout_data.go b/src/payments/model_secure_remote_commerce_checkout_data.go index bf4098150..e855c166f 100644 --- a/src/payments/model_secure_remote_commerce_checkout_data.go +++ b/src/payments/model_secure_remote_commerce_checkout_data.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SecureRemoteCommerceCheckoutData type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_service_error.go b/src/payments/model_service_error.go index a87a20ca5..8eb6efe70 100644 --- a/src/payments/model_service_error.go +++ b/src/payments/model_service_error.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ServiceError type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_shopper_interaction_device.go b/src/payments/model_shopper_interaction_device.go index 60481ffe5..0c7b80ea5 100644 --- a/src/payments/model_shopper_interaction_device.go +++ b/src/payments/model_shopper_interaction_device.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ShopperInteractionDevice type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_split.go b/src/payments/model_split.go index e24d3d845..d74f04e9b 100644 --- a/src/payments/model_split.go +++ b/src/payments/model_split.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Split type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_split_amount.go b/src/payments/model_split_amount.go index 4d31b72ec..b2a8fbc8a 100644 --- a/src/payments/model_split_amount.go +++ b/src/payments/model_split_amount.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SplitAmount type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_sub_merchant.go b/src/payments/model_sub_merchant.go index 5152566c7..e01f4cffe 100644 --- a/src/payments/model_sub_merchant.go +++ b/src/payments/model_sub_merchant.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SubMerchant type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_technical_cancel_request.go b/src/payments/model_technical_cancel_request.go index f9c6adc41..8b197fcdc 100644 --- a/src/payments/model_technical_cancel_request.go +++ b/src/payments/model_technical_cancel_request.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TechnicalCancelRequest type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_three_d_secure_data.go b/src/payments/model_three_d_secure_data.go index 001d9cb0a..961a09927 100644 --- a/src/payments/model_three_d_secure_data.go +++ b/src/payments/model_three_d_secure_data.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ThreeDSecureData type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_three_ds1_result.go b/src/payments/model_three_ds1_result.go index c8950dffd..e2aefec65 100644 --- a/src/payments/model_three_ds1_result.go +++ b/src/payments/model_three_ds1_result.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ThreeDS1Result type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_three_ds2_request_data.go b/src/payments/model_three_ds2_request_data.go index d0240ae0a..4cec6621b 100644 --- a/src/payments/model_three_ds2_request_data.go +++ b/src/payments/model_three_ds2_request_data.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ThreeDS2RequestData type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_three_ds2_result.go b/src/payments/model_three_ds2_result.go index bc5b6aa6e..45114764b 100644 --- a/src/payments/model_three_ds2_result.go +++ b/src/payments/model_three_ds2_result.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ThreeDS2Result type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_three_ds2_result_request.go b/src/payments/model_three_ds2_result_request.go index daf3c8432..26f1792ce 100644 --- a/src/payments/model_three_ds2_result_request.go +++ b/src/payments/model_three_ds2_result_request.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ThreeDS2ResultRequest type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_three_ds2_result_response.go b/src/payments/model_three_ds2_result_response.go index 34594d535..dd8115da6 100644 --- a/src/payments/model_three_ds2_result_response.go +++ b/src/payments/model_three_ds2_result_response.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ThreeDS2ResultResponse type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_three_ds_requestor_authentication_info.go b/src/payments/model_three_ds_requestor_authentication_info.go index dda87395a..10211fbb0 100644 --- a/src/payments/model_three_ds_requestor_authentication_info.go +++ b/src/payments/model_three_ds_requestor_authentication_info.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ThreeDSRequestorAuthenticationInfo type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_three_ds_requestor_prior_authentication_info.go b/src/payments/model_three_ds_requestor_prior_authentication_info.go index 032fa6227..3a2b8a27f 100644 --- a/src/payments/model_three_ds_requestor_prior_authentication_info.go +++ b/src/payments/model_three_ds_requestor_prior_authentication_info.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ThreeDSRequestorPriorAuthenticationInfo type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_void_pending_refund_request.go b/src/payments/model_void_pending_refund_request.go index 2a6e6c886..106ab2d5b 100644 --- a/src/payments/model_void_pending_refund_request.go +++ b/src/payments/model_void_pending_refund_request.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the VoidPendingRefundRequest type satisfies the MappedNullable interface at compile time diff --git a/src/paymentsapp/api_payments_app.go b/src/paymentsapp/api_payments_app.go index bbe9306d2..624fd2eec 100644 --- a/src/paymentsapp/api_payments_app.go +++ b/src/paymentsapp/api_payments_app.go @@ -14,7 +14,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // PaymentsAppApi service diff --git a/src/paymentsapp/model_boarding_token_request.go b/src/paymentsapp/model_boarding_token_request.go index 2b4713e75..d97de8ee4 100644 --- a/src/paymentsapp/model_boarding_token_request.go +++ b/src/paymentsapp/model_boarding_token_request.go @@ -11,7 +11,7 @@ package paymentsapp import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BoardingTokenRequest type satisfies the MappedNullable interface at compile time diff --git a/src/paymentsapp/model_boarding_token_response.go b/src/paymentsapp/model_boarding_token_response.go index ef4d7384d..cf6b3a89b 100644 --- a/src/paymentsapp/model_boarding_token_response.go +++ b/src/paymentsapp/model_boarding_token_response.go @@ -11,7 +11,7 @@ package paymentsapp import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BoardingTokenResponse type satisfies the MappedNullable interface at compile time diff --git a/src/paymentsapp/model_default_error_response_entity.go b/src/paymentsapp/model_default_error_response_entity.go index f1e5fabcf..5a2f5492a 100644 --- a/src/paymentsapp/model_default_error_response_entity.go +++ b/src/paymentsapp/model_default_error_response_entity.go @@ -11,7 +11,7 @@ package paymentsapp import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DefaultErrorResponseEntity type satisfies the MappedNullable interface at compile time diff --git a/src/paymentsapp/model_invalid_field.go b/src/paymentsapp/model_invalid_field.go index 91a04f0ba..5c3c447de 100644 --- a/src/paymentsapp/model_invalid_field.go +++ b/src/paymentsapp/model_invalid_field.go @@ -11,7 +11,7 @@ package paymentsapp import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the InvalidField type satisfies the MappedNullable interface at compile time diff --git a/src/paymentsapp/model_payments_app_dto.go b/src/paymentsapp/model_payments_app_dto.go index 250f26b84..9ccdd7765 100644 --- a/src/paymentsapp/model_payments_app_dto.go +++ b/src/paymentsapp/model_payments_app_dto.go @@ -11,7 +11,7 @@ package paymentsapp import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentsAppDto type satisfies the MappedNullable interface at compile time diff --git a/src/paymentsapp/model_payments_app_response.go b/src/paymentsapp/model_payments_app_response.go index ea3813a2e..b73244066 100644 --- a/src/paymentsapp/model_payments_app_response.go +++ b/src/paymentsapp/model_payments_app_response.go @@ -11,7 +11,7 @@ package paymentsapp import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentsAppResponse type satisfies the MappedNullable interface at compile time diff --git a/src/payout/api_initialization.go b/src/payout/api_initialization.go index d8526080c..6781e2f28 100644 --- a/src/payout/api_initialization.go +++ b/src/payout/api_initialization.go @@ -13,7 +13,7 @@ import ( "net/http" "net/url" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // InitializationApi service diff --git a/src/payout/api_instant_payouts.go b/src/payout/api_instant_payouts.go index 6cb197e03..6f60c4636 100644 --- a/src/payout/api_instant_payouts.go +++ b/src/payout/api_instant_payouts.go @@ -13,7 +13,7 @@ import ( "net/http" "net/url" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // InstantPayoutsApi service diff --git a/src/payout/api_reviewing.go b/src/payout/api_reviewing.go index 77e514a9c..126a1ceb4 100644 --- a/src/payout/api_reviewing.go +++ b/src/payout/api_reviewing.go @@ -13,7 +13,7 @@ import ( "net/http" "net/url" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // ReviewingApi service diff --git a/src/payout/client.go b/src/payout/client.go index ddc33feac..fa1f13a52 100644 --- a/src/payout/client.go +++ b/src/payout/client.go @@ -9,7 +9,7 @@ API version: 68 package payout import ( - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // APIClient manages communication with the Adyen Payout API API v68 diff --git a/src/payout/model_address.go b/src/payout/model_address.go index 1da610c44..a6280cba5 100644 --- a/src/payout/model_address.go +++ b/src/payout/model_address.go @@ -11,7 +11,7 @@ package payout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Address type satisfies the MappedNullable interface at compile time diff --git a/src/payout/model_amount.go b/src/payout/model_amount.go index 3d343443a..7dd22e3ba 100644 --- a/src/payout/model_amount.go +++ b/src/payout/model_amount.go @@ -11,7 +11,7 @@ package payout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Amount type satisfies the MappedNullable interface at compile time diff --git a/src/payout/model_bank_account.go b/src/payout/model_bank_account.go index 1ea621e4e..cdc5da76d 100644 --- a/src/payout/model_bank_account.go +++ b/src/payout/model_bank_account.go @@ -11,7 +11,7 @@ package payout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BankAccount type satisfies the MappedNullable interface at compile time diff --git a/src/payout/model_card.go b/src/payout/model_card.go index 032b93ced..4bc3587d1 100644 --- a/src/payout/model_card.go +++ b/src/payout/model_card.go @@ -11,7 +11,7 @@ package payout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Card type satisfies the MappedNullable interface at compile time diff --git a/src/payout/model_fraud_check_result.go b/src/payout/model_fraud_check_result.go index ae436769e..dacd7d08d 100644 --- a/src/payout/model_fraud_check_result.go +++ b/src/payout/model_fraud_check_result.go @@ -11,7 +11,7 @@ package payout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the FraudCheckResult type satisfies the MappedNullable interface at compile time diff --git a/src/payout/model_fraud_check_result_wrapper.go b/src/payout/model_fraud_check_result_wrapper.go index eff3218b6..353c1dd1f 100644 --- a/src/payout/model_fraud_check_result_wrapper.go +++ b/src/payout/model_fraud_check_result_wrapper.go @@ -11,7 +11,7 @@ package payout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the FraudCheckResultWrapper type satisfies the MappedNullable interface at compile time diff --git a/src/payout/model_fraud_result.go b/src/payout/model_fraud_result.go index 3f3a7b3fe..b52225da7 100644 --- a/src/payout/model_fraud_result.go +++ b/src/payout/model_fraud_result.go @@ -11,7 +11,7 @@ package payout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the FraudResult type satisfies the MappedNullable interface at compile time diff --git a/src/payout/model_fund_source.go b/src/payout/model_fund_source.go index d2a4c2488..887fa5907 100644 --- a/src/payout/model_fund_source.go +++ b/src/payout/model_fund_source.go @@ -11,7 +11,7 @@ package payout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the FundSource type satisfies the MappedNullable interface at compile time diff --git a/src/payout/model_modify_request.go b/src/payout/model_modify_request.go index 3137efb2f..8818bab08 100644 --- a/src/payout/model_modify_request.go +++ b/src/payout/model_modify_request.go @@ -11,7 +11,7 @@ package payout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ModifyRequest type satisfies the MappedNullable interface at compile time diff --git a/src/payout/model_modify_response.go b/src/payout/model_modify_response.go index 718fe0722..d923db64f 100644 --- a/src/payout/model_modify_response.go +++ b/src/payout/model_modify_response.go @@ -11,7 +11,7 @@ package payout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ModifyResponse type satisfies the MappedNullable interface at compile time diff --git a/src/payout/model_name.go b/src/payout/model_name.go index 3d3a7ffa0..24e94c70b 100644 --- a/src/payout/model_name.go +++ b/src/payout/model_name.go @@ -11,7 +11,7 @@ package payout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Name type satisfies the MappedNullable interface at compile time diff --git a/src/payout/model_payout_request.go b/src/payout/model_payout_request.go index 98ab2e37e..58b2117a1 100644 --- a/src/payout/model_payout_request.go +++ b/src/payout/model_payout_request.go @@ -11,7 +11,7 @@ package payout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PayoutRequest type satisfies the MappedNullable interface at compile time diff --git a/src/payout/model_payout_response.go b/src/payout/model_payout_response.go index 89c6a7b86..ae4aacb99 100644 --- a/src/payout/model_payout_response.go +++ b/src/payout/model_payout_response.go @@ -11,7 +11,7 @@ package payout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PayoutResponse type satisfies the MappedNullable interface at compile time diff --git a/src/payout/model_recurring.go b/src/payout/model_recurring.go index 33e61691e..c92ff22ba 100644 --- a/src/payout/model_recurring.go +++ b/src/payout/model_recurring.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Recurring type satisfies the MappedNullable interface at compile time diff --git a/src/payout/model_response_additional_data3_d_secure.go b/src/payout/model_response_additional_data3_d_secure.go index f52cf67bb..19088fe58 100644 --- a/src/payout/model_response_additional_data3_d_secure.go +++ b/src/payout/model_response_additional_data3_d_secure.go @@ -11,7 +11,7 @@ package payout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResponseAdditionalData3DSecure type satisfies the MappedNullable interface at compile time diff --git a/src/payout/model_response_additional_data_billing_address.go b/src/payout/model_response_additional_data_billing_address.go index 107058c96..05fbd66d0 100644 --- a/src/payout/model_response_additional_data_billing_address.go +++ b/src/payout/model_response_additional_data_billing_address.go @@ -11,7 +11,7 @@ package payout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResponseAdditionalDataBillingAddress type satisfies the MappedNullable interface at compile time diff --git a/src/payout/model_response_additional_data_card.go b/src/payout/model_response_additional_data_card.go index e3cfa9db8..ceb86f3da 100644 --- a/src/payout/model_response_additional_data_card.go +++ b/src/payout/model_response_additional_data_card.go @@ -11,7 +11,7 @@ package payout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResponseAdditionalDataCard type satisfies the MappedNullable interface at compile time diff --git a/src/payout/model_response_additional_data_common.go b/src/payout/model_response_additional_data_common.go index 65c24f8a8..b65dc548a 100644 --- a/src/payout/model_response_additional_data_common.go +++ b/src/payout/model_response_additional_data_common.go @@ -11,7 +11,7 @@ package payout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResponseAdditionalDataCommon type satisfies the MappedNullable interface at compile time diff --git a/src/payout/model_response_additional_data_domestic_error.go b/src/payout/model_response_additional_data_domestic_error.go index c3e653b6c..14eaaf994 100644 --- a/src/payout/model_response_additional_data_domestic_error.go +++ b/src/payout/model_response_additional_data_domestic_error.go @@ -11,7 +11,7 @@ package payout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResponseAdditionalDataDomesticError type satisfies the MappedNullable interface at compile time diff --git a/src/payout/model_response_additional_data_installments.go b/src/payout/model_response_additional_data_installments.go index f3716b6fa..6e0a41bd9 100644 --- a/src/payout/model_response_additional_data_installments.go +++ b/src/payout/model_response_additional_data_installments.go @@ -11,7 +11,7 @@ package payout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResponseAdditionalDataInstallments type satisfies the MappedNullable interface at compile time diff --git a/src/payout/model_response_additional_data_network_tokens.go b/src/payout/model_response_additional_data_network_tokens.go index 9c612cd03..962180055 100644 --- a/src/payout/model_response_additional_data_network_tokens.go +++ b/src/payout/model_response_additional_data_network_tokens.go @@ -11,7 +11,7 @@ package payout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResponseAdditionalDataNetworkTokens type satisfies the MappedNullable interface at compile time diff --git a/src/payout/model_response_additional_data_opi.go b/src/payout/model_response_additional_data_opi.go index 2c71dc3e0..d77145921 100644 --- a/src/payout/model_response_additional_data_opi.go +++ b/src/payout/model_response_additional_data_opi.go @@ -11,7 +11,7 @@ package payout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResponseAdditionalDataOpi type satisfies the MappedNullable interface at compile time diff --git a/src/payout/model_response_additional_data_sepa.go b/src/payout/model_response_additional_data_sepa.go index a88160561..661e07f88 100644 --- a/src/payout/model_response_additional_data_sepa.go +++ b/src/payout/model_response_additional_data_sepa.go @@ -11,7 +11,7 @@ package payout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResponseAdditionalDataSepa type satisfies the MappedNullable interface at compile time diff --git a/src/payout/model_service_error.go b/src/payout/model_service_error.go index 9eaae8d2e..d513663e0 100644 --- a/src/payout/model_service_error.go +++ b/src/payout/model_service_error.go @@ -11,7 +11,7 @@ package payout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ServiceError type satisfies the MappedNullable interface at compile time diff --git a/src/payout/model_store_detail_and_submit_request.go b/src/payout/model_store_detail_and_submit_request.go index a5b7ad906..7b4ee274f 100644 --- a/src/payout/model_store_detail_and_submit_request.go +++ b/src/payout/model_store_detail_and_submit_request.go @@ -11,7 +11,7 @@ package payout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StoreDetailAndSubmitRequest type satisfies the MappedNullable interface at compile time diff --git a/src/payout/model_store_detail_and_submit_response.go b/src/payout/model_store_detail_and_submit_response.go index 281fd3ed1..58c48fc6c 100644 --- a/src/payout/model_store_detail_and_submit_response.go +++ b/src/payout/model_store_detail_and_submit_response.go @@ -11,7 +11,7 @@ package payout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StoreDetailAndSubmitResponse type satisfies the MappedNullable interface at compile time diff --git a/src/payout/model_store_detail_request.go b/src/payout/model_store_detail_request.go index 13352d044..f226d0c70 100644 --- a/src/payout/model_store_detail_request.go +++ b/src/payout/model_store_detail_request.go @@ -11,7 +11,7 @@ package payout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StoreDetailRequest type satisfies the MappedNullable interface at compile time diff --git a/src/payout/model_store_detail_response.go b/src/payout/model_store_detail_response.go index 61a0c2bba..e98bc14c5 100644 --- a/src/payout/model_store_detail_response.go +++ b/src/payout/model_store_detail_response.go @@ -11,7 +11,7 @@ package payout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StoreDetailResponse type satisfies the MappedNullable interface at compile time diff --git a/src/payout/model_submit_request.go b/src/payout/model_submit_request.go index 9ccf22235..d68e1aed8 100644 --- a/src/payout/model_submit_request.go +++ b/src/payout/model_submit_request.go @@ -11,7 +11,7 @@ package payout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SubmitRequest type satisfies the MappedNullable interface at compile time diff --git a/src/payout/model_submit_response.go b/src/payout/model_submit_response.go index 0355c47ad..11ed120fb 100644 --- a/src/payout/model_submit_response.go +++ b/src/payout/model_submit_response.go @@ -11,7 +11,7 @@ package payout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SubmitResponse type satisfies the MappedNullable interface at compile time diff --git a/src/platformsaccount/api_default.go b/src/platformsaccount/api_default.go index ab2e49135..03602a519 100644 --- a/src/platformsaccount/api_default.go +++ b/src/platformsaccount/api_default.go @@ -14,7 +14,7 @@ import ( _context "context" _nethttp "net/http" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // PlatformsAccount PlatformsAccount service diff --git a/src/platformsfund/api_default.go b/src/platformsfund/api_default.go index d3649d242..9ece73d52 100644 --- a/src/platformsfund/api_default.go +++ b/src/platformsfund/api_default.go @@ -14,7 +14,7 @@ import ( _context "context" _nethttp "net/http" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // PlatformsFund PlatformsFund service diff --git a/src/platformshostedonboardingpage/api_default.go b/src/platformshostedonboardingpage/api_default.go index 6dd2a7045..635681b7c 100644 --- a/src/platformshostedonboardingpage/api_default.go +++ b/src/platformshostedonboardingpage/api_default.go @@ -14,7 +14,7 @@ import ( _context "context" _nethttp "net/http" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // PlatformsHostedOnboardingPage PlatformsHostedOnboardingPage service diff --git a/src/platformsnotificationconfiguration/api_default.go b/src/platformsnotificationconfiguration/api_default.go index a30a5a4d8..778d3a992 100644 --- a/src/platformsnotificationconfiguration/api_default.go +++ b/src/platformsnotificationconfiguration/api_default.go @@ -14,7 +14,7 @@ import ( _context "context" _nethttp "net/http" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // PlatformsNotificationConfiguration PlatformsNotificationConfiguration service diff --git a/src/posmobile/api_general.go b/src/posmobile/api_general.go index e3e05fea1..5480ae39a 100644 --- a/src/posmobile/api_general.go +++ b/src/posmobile/api_general.go @@ -13,7 +13,7 @@ import ( "net/http" "net/url" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // GeneralApi service diff --git a/src/posmobile/model_create_session_request.go b/src/posmobile/model_create_session_request.go index dfdcd98fe..daefa146f 100644 --- a/src/posmobile/model_create_session_request.go +++ b/src/posmobile/model_create_session_request.go @@ -11,7 +11,7 @@ package posmobile import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CreateSessionRequest type satisfies the MappedNullable interface at compile time diff --git a/src/posmobile/model_create_session_response.go b/src/posmobile/model_create_session_response.go index 021e9654c..e76b07aed 100644 --- a/src/posmobile/model_create_session_response.go +++ b/src/posmobile/model_create_session_response.go @@ -11,7 +11,7 @@ package posmobile import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CreateSessionResponse type satisfies the MappedNullable interface at compile time diff --git a/src/posterminalmanagement/api_general.go b/src/posterminalmanagement/api_general.go index 68dd23e32..103c99954 100644 --- a/src/posterminalmanagement/api_general.go +++ b/src/posterminalmanagement/api_general.go @@ -13,7 +13,7 @@ import ( "net/http" "net/url" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // GeneralApi service diff --git a/src/posterminalmanagement/model_address.go b/src/posterminalmanagement/model_address.go index dfd36eafa..be47a976f 100644 --- a/src/posterminalmanagement/model_address.go +++ b/src/posterminalmanagement/model_address.go @@ -11,7 +11,7 @@ package posterminalmanagement import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Address type satisfies the MappedNullable interface at compile time diff --git a/src/posterminalmanagement/model_assign_terminals_request.go b/src/posterminalmanagement/model_assign_terminals_request.go index a9597d90c..fc91012a8 100644 --- a/src/posterminalmanagement/model_assign_terminals_request.go +++ b/src/posterminalmanagement/model_assign_terminals_request.go @@ -11,7 +11,7 @@ package posterminalmanagement import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AssignTerminalsRequest type satisfies the MappedNullable interface at compile time diff --git a/src/posterminalmanagement/model_assign_terminals_response.go b/src/posterminalmanagement/model_assign_terminals_response.go index 013ba87b1..07db3438e 100644 --- a/src/posterminalmanagement/model_assign_terminals_response.go +++ b/src/posterminalmanagement/model_assign_terminals_response.go @@ -11,7 +11,7 @@ package posterminalmanagement import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AssignTerminalsResponse type satisfies the MappedNullable interface at compile time diff --git a/src/posterminalmanagement/model_find_terminal_request.go b/src/posterminalmanagement/model_find_terminal_request.go index e19d01174..b1b500883 100644 --- a/src/posterminalmanagement/model_find_terminal_request.go +++ b/src/posterminalmanagement/model_find_terminal_request.go @@ -11,7 +11,7 @@ package posterminalmanagement import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the FindTerminalRequest type satisfies the MappedNullable interface at compile time diff --git a/src/posterminalmanagement/model_find_terminal_response.go b/src/posterminalmanagement/model_find_terminal_response.go index 4ae3b5c79..d085694e5 100644 --- a/src/posterminalmanagement/model_find_terminal_response.go +++ b/src/posterminalmanagement/model_find_terminal_response.go @@ -11,7 +11,7 @@ package posterminalmanagement import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the FindTerminalResponse type satisfies the MappedNullable interface at compile time diff --git a/src/posterminalmanagement/model_get_stores_under_account_request.go b/src/posterminalmanagement/model_get_stores_under_account_request.go index 7e0aa4109..6de17c983 100644 --- a/src/posterminalmanagement/model_get_stores_under_account_request.go +++ b/src/posterminalmanagement/model_get_stores_under_account_request.go @@ -11,7 +11,7 @@ package posterminalmanagement import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the GetStoresUnderAccountRequest type satisfies the MappedNullable interface at compile time diff --git a/src/posterminalmanagement/model_get_stores_under_account_response.go b/src/posterminalmanagement/model_get_stores_under_account_response.go index 496644043..ee0e9e57f 100644 --- a/src/posterminalmanagement/model_get_stores_under_account_response.go +++ b/src/posterminalmanagement/model_get_stores_under_account_response.go @@ -11,7 +11,7 @@ package posterminalmanagement import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the GetStoresUnderAccountResponse type satisfies the MappedNullable interface at compile time diff --git a/src/posterminalmanagement/model_get_terminal_details_request.go b/src/posterminalmanagement/model_get_terminal_details_request.go index e99c853d2..ffe32761d 100644 --- a/src/posterminalmanagement/model_get_terminal_details_request.go +++ b/src/posterminalmanagement/model_get_terminal_details_request.go @@ -11,7 +11,7 @@ package posterminalmanagement import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the GetTerminalDetailsRequest type satisfies the MappedNullable interface at compile time diff --git a/src/posterminalmanagement/model_get_terminal_details_response.go b/src/posterminalmanagement/model_get_terminal_details_response.go index d2b3b2cf8..846149c36 100644 --- a/src/posterminalmanagement/model_get_terminal_details_response.go +++ b/src/posterminalmanagement/model_get_terminal_details_response.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the GetTerminalDetailsResponse type satisfies the MappedNullable interface at compile time diff --git a/src/posterminalmanagement/model_get_terminals_under_account_request.go b/src/posterminalmanagement/model_get_terminals_under_account_request.go index 61ce72e40..a4777c974 100644 --- a/src/posterminalmanagement/model_get_terminals_under_account_request.go +++ b/src/posterminalmanagement/model_get_terminals_under_account_request.go @@ -11,7 +11,7 @@ package posterminalmanagement import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the GetTerminalsUnderAccountRequest type satisfies the MappedNullable interface at compile time diff --git a/src/posterminalmanagement/model_get_terminals_under_account_response.go b/src/posterminalmanagement/model_get_terminals_under_account_response.go index 9571ea55b..0463353df 100644 --- a/src/posterminalmanagement/model_get_terminals_under_account_response.go +++ b/src/posterminalmanagement/model_get_terminals_under_account_response.go @@ -11,7 +11,7 @@ package posterminalmanagement import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the GetTerminalsUnderAccountResponse type satisfies the MappedNullable interface at compile time diff --git a/src/posterminalmanagement/model_merchant_account.go b/src/posterminalmanagement/model_merchant_account.go index f70fc3247..d78f98a3c 100644 --- a/src/posterminalmanagement/model_merchant_account.go +++ b/src/posterminalmanagement/model_merchant_account.go @@ -11,7 +11,7 @@ package posterminalmanagement import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the MerchantAccount type satisfies the MappedNullable interface at compile time diff --git a/src/posterminalmanagement/model_service_error.go b/src/posterminalmanagement/model_service_error.go index 43b7a055f..e39a5d45c 100644 --- a/src/posterminalmanagement/model_service_error.go +++ b/src/posterminalmanagement/model_service_error.go @@ -11,7 +11,7 @@ package posterminalmanagement import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ServiceError type satisfies the MappedNullable interface at compile time diff --git a/src/posterminalmanagement/model_store.go b/src/posterminalmanagement/model_store.go index 774ecf79d..cded9b73b 100644 --- a/src/posterminalmanagement/model_store.go +++ b/src/posterminalmanagement/model_store.go @@ -11,7 +11,7 @@ package posterminalmanagement import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Store type satisfies the MappedNullable interface at compile time diff --git a/src/recurring/api_general.go b/src/recurring/api_general.go index 5376641db..0114f030e 100644 --- a/src/recurring/api_general.go +++ b/src/recurring/api_general.go @@ -13,7 +13,7 @@ import ( "net/http" "net/url" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // GeneralApi service diff --git a/src/recurring/model_address.go b/src/recurring/model_address.go index 10ef595f2..e946f2bd4 100644 --- a/src/recurring/model_address.go +++ b/src/recurring/model_address.go @@ -11,7 +11,7 @@ package recurring import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Address type satisfies the MappedNullable interface at compile time diff --git a/src/recurring/model_amount.go b/src/recurring/model_amount.go index 089b95011..b26789044 100644 --- a/src/recurring/model_amount.go +++ b/src/recurring/model_amount.go @@ -11,7 +11,7 @@ package recurring import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Amount type satisfies the MappedNullable interface at compile time diff --git a/src/recurring/model_bank_account.go b/src/recurring/model_bank_account.go index 076cb5703..a695bf8e3 100644 --- a/src/recurring/model_bank_account.go +++ b/src/recurring/model_bank_account.go @@ -11,7 +11,7 @@ package recurring import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BankAccount type satisfies the MappedNullable interface at compile time diff --git a/src/recurring/model_card.go b/src/recurring/model_card.go index e202989ae..e859ca81b 100644 --- a/src/recurring/model_card.go +++ b/src/recurring/model_card.go @@ -11,7 +11,7 @@ package recurring import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Card type satisfies the MappedNullable interface at compile time diff --git a/src/recurring/model_create_permit_request.go b/src/recurring/model_create_permit_request.go index 73b363709..1c03bf690 100644 --- a/src/recurring/model_create_permit_request.go +++ b/src/recurring/model_create_permit_request.go @@ -11,7 +11,7 @@ package recurring import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CreatePermitRequest type satisfies the MappedNullable interface at compile time diff --git a/src/recurring/model_create_permit_result.go b/src/recurring/model_create_permit_result.go index ad33a5b58..32c2395a9 100644 --- a/src/recurring/model_create_permit_result.go +++ b/src/recurring/model_create_permit_result.go @@ -11,7 +11,7 @@ package recurring import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CreatePermitResult type satisfies the MappedNullable interface at compile time diff --git a/src/recurring/model_disable_permit_request.go b/src/recurring/model_disable_permit_request.go index b31386700..85e91e869 100644 --- a/src/recurring/model_disable_permit_request.go +++ b/src/recurring/model_disable_permit_request.go @@ -11,7 +11,7 @@ package recurring import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DisablePermitRequest type satisfies the MappedNullable interface at compile time diff --git a/src/recurring/model_disable_permit_result.go b/src/recurring/model_disable_permit_result.go index 3ccafde00..682390b2f 100644 --- a/src/recurring/model_disable_permit_result.go +++ b/src/recurring/model_disable_permit_result.go @@ -11,7 +11,7 @@ package recurring import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DisablePermitResult type satisfies the MappedNullable interface at compile time diff --git a/src/recurring/model_disable_request.go b/src/recurring/model_disable_request.go index 8b6c269b2..a634c3a22 100644 --- a/src/recurring/model_disable_request.go +++ b/src/recurring/model_disable_request.go @@ -11,7 +11,7 @@ package recurring import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DisableRequest type satisfies the MappedNullable interface at compile time diff --git a/src/recurring/model_disable_result.go b/src/recurring/model_disable_result.go index f00a26768..9d4d260ff 100644 --- a/src/recurring/model_disable_result.go +++ b/src/recurring/model_disable_result.go @@ -11,7 +11,7 @@ package recurring import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DisableResult type satisfies the MappedNullable interface at compile time diff --git a/src/recurring/model_name.go b/src/recurring/model_name.go index 1755fb529..c6407582b 100644 --- a/src/recurring/model_name.go +++ b/src/recurring/model_name.go @@ -11,7 +11,7 @@ package recurring import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Name type satisfies the MappedNullable interface at compile time diff --git a/src/recurring/model_notify_shopper_request.go b/src/recurring/model_notify_shopper_request.go index 2b751639a..3a69c8b61 100644 --- a/src/recurring/model_notify_shopper_request.go +++ b/src/recurring/model_notify_shopper_request.go @@ -11,7 +11,7 @@ package recurring import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the NotifyShopperRequest type satisfies the MappedNullable interface at compile time diff --git a/src/recurring/model_notify_shopper_result.go b/src/recurring/model_notify_shopper_result.go index 3c530e1bd..26060415a 100644 --- a/src/recurring/model_notify_shopper_result.go +++ b/src/recurring/model_notify_shopper_result.go @@ -11,7 +11,7 @@ package recurring import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the NotifyShopperResult type satisfies the MappedNullable interface at compile time diff --git a/src/recurring/model_permit.go b/src/recurring/model_permit.go index 17e44fe9c..b5fb715c6 100644 --- a/src/recurring/model_permit.go +++ b/src/recurring/model_permit.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Permit type satisfies the MappedNullable interface at compile time diff --git a/src/recurring/model_permit_restriction.go b/src/recurring/model_permit_restriction.go index 6fceb65eb..d8f571f0b 100644 --- a/src/recurring/model_permit_restriction.go +++ b/src/recurring/model_permit_restriction.go @@ -11,7 +11,7 @@ package recurring import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PermitRestriction type satisfies the MappedNullable interface at compile time diff --git a/src/recurring/model_permit_result.go b/src/recurring/model_permit_result.go index b6b706424..f457b5b3a 100644 --- a/src/recurring/model_permit_result.go +++ b/src/recurring/model_permit_result.go @@ -11,7 +11,7 @@ package recurring import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PermitResult type satisfies the MappedNullable interface at compile time diff --git a/src/recurring/model_recurring.go b/src/recurring/model_recurring.go index 45fb1440b..8f8ad856b 100644 --- a/src/recurring/model_recurring.go +++ b/src/recurring/model_recurring.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Recurring type satisfies the MappedNullable interface at compile time diff --git a/src/recurring/model_recurring_detail.go b/src/recurring/model_recurring_detail.go index d5a6ce9c4..e5d717846 100644 --- a/src/recurring/model_recurring_detail.go +++ b/src/recurring/model_recurring_detail.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the RecurringDetail type satisfies the MappedNullable interface at compile time diff --git a/src/recurring/model_recurring_detail_wrapper.go b/src/recurring/model_recurring_detail_wrapper.go index d27fab02f..ff1d3ce17 100644 --- a/src/recurring/model_recurring_detail_wrapper.go +++ b/src/recurring/model_recurring_detail_wrapper.go @@ -11,7 +11,7 @@ package recurring import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the RecurringDetailWrapper type satisfies the MappedNullable interface at compile time diff --git a/src/recurring/model_recurring_details_request.go b/src/recurring/model_recurring_details_request.go index a4fa36fb2..4bbb95684 100644 --- a/src/recurring/model_recurring_details_request.go +++ b/src/recurring/model_recurring_details_request.go @@ -11,7 +11,7 @@ package recurring import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the RecurringDetailsRequest type satisfies the MappedNullable interface at compile time diff --git a/src/recurring/model_recurring_details_result.go b/src/recurring/model_recurring_details_result.go index d480ef84b..e63a469e3 100644 --- a/src/recurring/model_recurring_details_result.go +++ b/src/recurring/model_recurring_details_result.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the RecurringDetailsResult type satisfies the MappedNullable interface at compile time diff --git a/src/recurring/model_schedule_account_updater_request.go b/src/recurring/model_schedule_account_updater_request.go index 73c01903b..6e40b378a 100644 --- a/src/recurring/model_schedule_account_updater_request.go +++ b/src/recurring/model_schedule_account_updater_request.go @@ -11,7 +11,7 @@ package recurring import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ScheduleAccountUpdaterRequest type satisfies the MappedNullable interface at compile time diff --git a/src/recurring/model_schedule_account_updater_result.go b/src/recurring/model_schedule_account_updater_result.go index eb238a10b..efe118180 100644 --- a/src/recurring/model_schedule_account_updater_result.go +++ b/src/recurring/model_schedule_account_updater_result.go @@ -11,7 +11,7 @@ package recurring import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ScheduleAccountUpdaterResult type satisfies the MappedNullable interface at compile time diff --git a/src/recurring/model_service_error.go b/src/recurring/model_service_error.go index 386114cd4..d1af57d46 100644 --- a/src/recurring/model_service_error.go +++ b/src/recurring/model_service_error.go @@ -11,7 +11,7 @@ package recurring import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ServiceError type satisfies the MappedNullable interface at compile time diff --git a/src/recurring/model_token_details.go b/src/recurring/model_token_details.go index db74b5ef4..d2c432b56 100644 --- a/src/recurring/model_token_details.go +++ b/src/recurring/model_token_details.go @@ -11,7 +11,7 @@ package recurring import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TokenDetails type satisfies the MappedNullable interface at compile time diff --git a/src/reportwebhook/model_balance_platform_notification_response.go b/src/reportwebhook/model_balance_platform_notification_response.go index b36a89be2..f7d03a0c3 100644 --- a/src/reportwebhook/model_balance_platform_notification_response.go +++ b/src/reportwebhook/model_balance_platform_notification_response.go @@ -11,7 +11,7 @@ package reportwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BalancePlatformNotificationResponse type satisfies the MappedNullable interface at compile time diff --git a/src/reportwebhook/model_report_notification_data.go b/src/reportwebhook/model_report_notification_data.go index 8d97cb332..047668d8b 100644 --- a/src/reportwebhook/model_report_notification_data.go +++ b/src/reportwebhook/model_report_notification_data.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ReportNotificationData type satisfies the MappedNullable interface at compile time diff --git a/src/reportwebhook/model_report_notification_request.go b/src/reportwebhook/model_report_notification_request.go index e04eeef6a..d682c1501 100644 --- a/src/reportwebhook/model_report_notification_request.go +++ b/src/reportwebhook/model_report_notification_request.go @@ -11,7 +11,7 @@ package reportwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ReportNotificationRequest type satisfies the MappedNullable interface at compile time diff --git a/src/reportwebhook/model_resource.go b/src/reportwebhook/model_resource.go index 97e9acf55..99152a821 100644 --- a/src/reportwebhook/model_resource.go +++ b/src/reportwebhook/model_resource.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Resource type satisfies the MappedNullable interface at compile time diff --git a/src/reportwebhook/model_resource_reference.go b/src/reportwebhook/model_resource_reference.go index 02153339c..d7216412b 100644 --- a/src/reportwebhook/model_resource_reference.go +++ b/src/reportwebhook/model_resource_reference.go @@ -11,7 +11,7 @@ package reportwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResourceReference type satisfies the MappedNullable interface at compile time diff --git a/src/storedvalue/api_general.go b/src/storedvalue/api_general.go index d1762ff4b..e6d3e7110 100644 --- a/src/storedvalue/api_general.go +++ b/src/storedvalue/api_general.go @@ -13,7 +13,7 @@ import ( "net/http" "net/url" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // GeneralApi service diff --git a/src/storedvalue/model_amount.go b/src/storedvalue/model_amount.go index 12290cdc6..d27859f96 100644 --- a/src/storedvalue/model_amount.go +++ b/src/storedvalue/model_amount.go @@ -11,7 +11,7 @@ package storedvalue import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Amount type satisfies the MappedNullable interface at compile time diff --git a/src/storedvalue/model_service_error.go b/src/storedvalue/model_service_error.go index e8dce4375..337cb52e4 100644 --- a/src/storedvalue/model_service_error.go +++ b/src/storedvalue/model_service_error.go @@ -11,7 +11,7 @@ package storedvalue import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ServiceError type satisfies the MappedNullable interface at compile time diff --git a/src/storedvalue/model_stored_value_balance_check_request.go b/src/storedvalue/model_stored_value_balance_check_request.go index f5bd77510..2e0c17782 100644 --- a/src/storedvalue/model_stored_value_balance_check_request.go +++ b/src/storedvalue/model_stored_value_balance_check_request.go @@ -11,7 +11,7 @@ package storedvalue import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StoredValueBalanceCheckRequest type satisfies the MappedNullable interface at compile time diff --git a/src/storedvalue/model_stored_value_balance_check_response.go b/src/storedvalue/model_stored_value_balance_check_response.go index b053387e8..f00be311f 100644 --- a/src/storedvalue/model_stored_value_balance_check_response.go +++ b/src/storedvalue/model_stored_value_balance_check_response.go @@ -11,7 +11,7 @@ package storedvalue import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StoredValueBalanceCheckResponse type satisfies the MappedNullable interface at compile time diff --git a/src/storedvalue/model_stored_value_balance_merge_request.go b/src/storedvalue/model_stored_value_balance_merge_request.go index 85373b746..09872091b 100644 --- a/src/storedvalue/model_stored_value_balance_merge_request.go +++ b/src/storedvalue/model_stored_value_balance_merge_request.go @@ -11,7 +11,7 @@ package storedvalue import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StoredValueBalanceMergeRequest type satisfies the MappedNullable interface at compile time diff --git a/src/storedvalue/model_stored_value_balance_merge_response.go b/src/storedvalue/model_stored_value_balance_merge_response.go index d234df99f..ca6877758 100644 --- a/src/storedvalue/model_stored_value_balance_merge_response.go +++ b/src/storedvalue/model_stored_value_balance_merge_response.go @@ -11,7 +11,7 @@ package storedvalue import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StoredValueBalanceMergeResponse type satisfies the MappedNullable interface at compile time diff --git a/src/storedvalue/model_stored_value_issue_request.go b/src/storedvalue/model_stored_value_issue_request.go index 81778f3c0..7b1c8208a 100644 --- a/src/storedvalue/model_stored_value_issue_request.go +++ b/src/storedvalue/model_stored_value_issue_request.go @@ -11,7 +11,7 @@ package storedvalue import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StoredValueIssueRequest type satisfies the MappedNullable interface at compile time diff --git a/src/storedvalue/model_stored_value_issue_response.go b/src/storedvalue/model_stored_value_issue_response.go index 5f74c0f13..e34494754 100644 --- a/src/storedvalue/model_stored_value_issue_response.go +++ b/src/storedvalue/model_stored_value_issue_response.go @@ -11,7 +11,7 @@ package storedvalue import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StoredValueIssueResponse type satisfies the MappedNullable interface at compile time diff --git a/src/storedvalue/model_stored_value_load_request.go b/src/storedvalue/model_stored_value_load_request.go index b7db2b8c3..580711812 100644 --- a/src/storedvalue/model_stored_value_load_request.go +++ b/src/storedvalue/model_stored_value_load_request.go @@ -11,7 +11,7 @@ package storedvalue import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StoredValueLoadRequest type satisfies the MappedNullable interface at compile time diff --git a/src/storedvalue/model_stored_value_load_response.go b/src/storedvalue/model_stored_value_load_response.go index 6e6b97706..a1b3375c4 100644 --- a/src/storedvalue/model_stored_value_load_response.go +++ b/src/storedvalue/model_stored_value_load_response.go @@ -11,7 +11,7 @@ package storedvalue import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StoredValueLoadResponse type satisfies the MappedNullable interface at compile time diff --git a/src/storedvalue/model_stored_value_status_change_request.go b/src/storedvalue/model_stored_value_status_change_request.go index 73024f800..4e3679079 100644 --- a/src/storedvalue/model_stored_value_status_change_request.go +++ b/src/storedvalue/model_stored_value_status_change_request.go @@ -11,7 +11,7 @@ package storedvalue import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StoredValueStatusChangeRequest type satisfies the MappedNullable interface at compile time diff --git a/src/storedvalue/model_stored_value_status_change_response.go b/src/storedvalue/model_stored_value_status_change_response.go index 74b97e25e..344e86d22 100644 --- a/src/storedvalue/model_stored_value_status_change_response.go +++ b/src/storedvalue/model_stored_value_status_change_response.go @@ -11,7 +11,7 @@ package storedvalue import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StoredValueStatusChangeResponse type satisfies the MappedNullable interface at compile time diff --git a/src/storedvalue/model_stored_value_void_request.go b/src/storedvalue/model_stored_value_void_request.go index 5533d1852..723a716e5 100644 --- a/src/storedvalue/model_stored_value_void_request.go +++ b/src/storedvalue/model_stored_value_void_request.go @@ -11,7 +11,7 @@ package storedvalue import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StoredValueVoidRequest type satisfies the MappedNullable interface at compile time diff --git a/src/storedvalue/model_stored_value_void_response.go b/src/storedvalue/model_stored_value_void_response.go index 25a220e0a..56835c6ea 100644 --- a/src/storedvalue/model_stored_value_void_response.go +++ b/src/storedvalue/model_stored_value_void_response.go @@ -11,7 +11,7 @@ package storedvalue import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the StoredValueVoidResponse type satisfies the MappedNullable interface at compile time diff --git a/src/transactionwebhook/model_amount.go b/src/transactionwebhook/model_amount.go index 3c866f1fa..2c3887f05 100644 --- a/src/transactionwebhook/model_amount.go +++ b/src/transactionwebhook/model_amount.go @@ -11,7 +11,7 @@ package transactionwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Amount type satisfies the MappedNullable interface at compile time diff --git a/src/transactionwebhook/model_balance_platform_notification_response.go b/src/transactionwebhook/model_balance_platform_notification_response.go index 79dfc08fc..9968378d8 100644 --- a/src/transactionwebhook/model_balance_platform_notification_response.go +++ b/src/transactionwebhook/model_balance_platform_notification_response.go @@ -11,7 +11,7 @@ package transactionwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BalancePlatformNotificationResponse type satisfies the MappedNullable interface at compile time diff --git a/src/transactionwebhook/model_resource.go b/src/transactionwebhook/model_resource.go index e57b56395..fee1973ff 100644 --- a/src/transactionwebhook/model_resource.go +++ b/src/transactionwebhook/model_resource.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Resource type satisfies the MappedNullable interface at compile time diff --git a/src/transactionwebhook/model_resource_reference.go b/src/transactionwebhook/model_resource_reference.go index aabee1a9c..21af1a028 100644 --- a/src/transactionwebhook/model_resource_reference.go +++ b/src/transactionwebhook/model_resource_reference.go @@ -11,7 +11,7 @@ package transactionwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResourceReference type satisfies the MappedNullable interface at compile time diff --git a/src/transactionwebhook/model_transaction.go b/src/transactionwebhook/model_transaction.go index 5eb1774d7..3c3bb154c 100644 --- a/src/transactionwebhook/model_transaction.go +++ b/src/transactionwebhook/model_transaction.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Transaction type satisfies the MappedNullable interface at compile time diff --git a/src/transactionwebhook/model_transaction_notification_request_v4.go b/src/transactionwebhook/model_transaction_notification_request_v4.go index 22945fc32..a5f5da5fa 100644 --- a/src/transactionwebhook/model_transaction_notification_request_v4.go +++ b/src/transactionwebhook/model_transaction_notification_request_v4.go @@ -11,7 +11,7 @@ package transactionwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransactionNotificationRequestV4 type satisfies the MappedNullable interface at compile time diff --git a/src/transactionwebhook/model_transfer_data.go b/src/transactionwebhook/model_transfer_data.go index 19b663313..adc803650 100644 --- a/src/transactionwebhook/model_transfer_data.go +++ b/src/transactionwebhook/model_transfer_data.go @@ -11,7 +11,7 @@ package transactionwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransferData type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/api_capital.go b/src/transfers/api_capital.go index e5a923e06..93e34688b 100644 --- a/src/transfers/api_capital.go +++ b/src/transfers/api_capital.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // CapitalApi service diff --git a/src/transfers/api_transactions.go b/src/transfers/api_transactions.go index f154c6199..2484fa6e0 100644 --- a/src/transfers/api_transactions.go +++ b/src/transfers/api_transactions.go @@ -17,7 +17,7 @@ import ( "strings" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // TransactionsApi service diff --git a/src/transfers/api_transfers.go b/src/transfers/api_transfers.go index ba6396a55..eedc93edc 100644 --- a/src/transfers/api_transfers.go +++ b/src/transfers/api_transfers.go @@ -17,7 +17,7 @@ import ( "strings" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // TransfersApi service diff --git a/src/transfers/client.go b/src/transfers/client.go index 66d407dd8..f5465c714 100644 --- a/src/transfers/client.go +++ b/src/transfers/client.go @@ -9,7 +9,7 @@ API version: 4 package transfers import ( - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // APIClient manages communication with the Transfers API API v4 diff --git a/src/transfers/model_additional_bank_identification.go b/src/transfers/model_additional_bank_identification.go index 9b8e1100e..fe6cd7b97 100644 --- a/src/transfers/model_additional_bank_identification.go +++ b/src/transfers/model_additional_bank_identification.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalBankIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_address.go b/src/transfers/model_address.go index 15fc365e5..a5839073c 100644 --- a/src/transfers/model_address.go +++ b/src/transfers/model_address.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Address type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_amount.go b/src/transfers/model_amount.go index 8ca6708c1..c2a7357a3 100644 --- a/src/transfers/model_amount.go +++ b/src/transfers/model_amount.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Amount type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_amount_adjustment.go b/src/transfers/model_amount_adjustment.go index 2707ffb55..daffeb4f5 100644 --- a/src/transfers/model_amount_adjustment.go +++ b/src/transfers/model_amount_adjustment.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AmountAdjustment type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_au_local_account_identification.go b/src/transfers/model_au_local_account_identification.go index dd3c60443..0b7af8237 100644 --- a/src/transfers/model_au_local_account_identification.go +++ b/src/transfers/model_au_local_account_identification.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AULocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_balance_mutation.go b/src/transfers/model_balance_mutation.go index e5affb160..52ec74697 100644 --- a/src/transfers/model_balance_mutation.go +++ b/src/transfers/model_balance_mutation.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BalanceMutation type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_bank_account_v3.go b/src/transfers/model_bank_account_v3.go index 5c248ef4b..620bd0602 100644 --- a/src/transfers/model_bank_account_v3.go +++ b/src/transfers/model_bank_account_v3.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BankAccountV3 type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_bank_category_data.go b/src/transfers/model_bank_category_data.go index 8af215c6a..5ff0751bd 100644 --- a/src/transfers/model_bank_category_data.go +++ b/src/transfers/model_bank_category_data.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BankCategoryData type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_br_local_account_identification.go b/src/transfers/model_br_local_account_identification.go index e3739d6ea..cdfaa5084 100644 --- a/src/transfers/model_br_local_account_identification.go +++ b/src/transfers/model_br_local_account_identification.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BRLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_ca_local_account_identification.go b/src/transfers/model_ca_local_account_identification.go index 1e69e2f2b..a67530352 100644 --- a/src/transfers/model_ca_local_account_identification.go +++ b/src/transfers/model_ca_local_account_identification.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CALocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_capital_balance.go b/src/transfers/model_capital_balance.go index f836ea600..0521640ba 100644 --- a/src/transfers/model_capital_balance.go +++ b/src/transfers/model_capital_balance.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CapitalBalance type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_capital_grant.go b/src/transfers/model_capital_grant.go index fb9a1c68e..10dfcfdeb 100644 --- a/src/transfers/model_capital_grant.go +++ b/src/transfers/model_capital_grant.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CapitalGrant type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_capital_grant_info.go b/src/transfers/model_capital_grant_info.go index ffc8550ac..1fdfdb32b 100644 --- a/src/transfers/model_capital_grant_info.go +++ b/src/transfers/model_capital_grant_info.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CapitalGrantInfo type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_capital_grants.go b/src/transfers/model_capital_grants.go index d276e6ad1..f07607fbe 100644 --- a/src/transfers/model_capital_grants.go +++ b/src/transfers/model_capital_grants.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CapitalGrants type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_card.go b/src/transfers/model_card.go index f7e3ac027..301c1ed5e 100644 --- a/src/transfers/model_card.go +++ b/src/transfers/model_card.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Card type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_card_identification.go b/src/transfers/model_card_identification.go index c1ac1c1a2..67928b947 100644 --- a/src/transfers/model_card_identification.go +++ b/src/transfers/model_card_identification.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CardIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_confirmation_tracking_data.go b/src/transfers/model_confirmation_tracking_data.go index 38aa9a0d0..e46d4697d 100644 --- a/src/transfers/model_confirmation_tracking_data.go +++ b/src/transfers/model_confirmation_tracking_data.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ConfirmationTrackingData type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_counterparty.go b/src/transfers/model_counterparty.go index 6e1bc9f27..110327793 100644 --- a/src/transfers/model_counterparty.go +++ b/src/transfers/model_counterparty.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Counterparty type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_counterparty_info_v3.go b/src/transfers/model_counterparty_info_v3.go index f47080288..5033f0512 100644 --- a/src/transfers/model_counterparty_info_v3.go +++ b/src/transfers/model_counterparty_info_v3.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CounterpartyInfoV3 type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_counterparty_v3.go b/src/transfers/model_counterparty_v3.go index 8e80b7de1..1792ce374 100644 --- a/src/transfers/model_counterparty_v3.go +++ b/src/transfers/model_counterparty_v3.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CounterpartyV3 type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_cz_local_account_identification.go b/src/transfers/model_cz_local_account_identification.go index 8c5d3a688..b8a0e9ed7 100644 --- a/src/transfers/model_cz_local_account_identification.go +++ b/src/transfers/model_cz_local_account_identification.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CZLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_dk_local_account_identification.go b/src/transfers/model_dk_local_account_identification.go index 7fb329676..ad372b48a 100644 --- a/src/transfers/model_dk_local_account_identification.go +++ b/src/transfers/model_dk_local_account_identification.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DKLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_estimation_tracking_data.go b/src/transfers/model_estimation_tracking_data.go index c30583892..9c3a2e3ed 100644 --- a/src/transfers/model_estimation_tracking_data.go +++ b/src/transfers/model_estimation_tracking_data.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the EstimationTrackingData type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_external_reason.go b/src/transfers/model_external_reason.go index affc7e1de..a6e635594 100644 --- a/src/transfers/model_external_reason.go +++ b/src/transfers/model_external_reason.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ExternalReason type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_fee.go b/src/transfers/model_fee.go index d4706da4a..89d5a989b 100644 --- a/src/transfers/model_fee.go +++ b/src/transfers/model_fee.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Fee type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_find_transfers_response.go b/src/transfers/model_find_transfers_response.go index dbf436099..51f834c8d 100644 --- a/src/transfers/model_find_transfers_response.go +++ b/src/transfers/model_find_transfers_response.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the FindTransfersResponse type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_hk_local_account_identification.go b/src/transfers/model_hk_local_account_identification.go index 45ddbeb81..ce0097947 100644 --- a/src/transfers/model_hk_local_account_identification.go +++ b/src/transfers/model_hk_local_account_identification.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the HKLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_hu_local_account_identification.go b/src/transfers/model_hu_local_account_identification.go index fe7b5fc13..a1208ae06 100644 --- a/src/transfers/model_hu_local_account_identification.go +++ b/src/transfers/model_hu_local_account_identification.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the HULocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_iban_account_identification.go b/src/transfers/model_iban_account_identification.go index ed64019fe..1c4c6c3ad 100644 --- a/src/transfers/model_iban_account_identification.go +++ b/src/transfers/model_iban_account_identification.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the IbanAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_internal_category_data.go b/src/transfers/model_internal_category_data.go index 5abccb345..39bea5ee6 100644 --- a/src/transfers/model_internal_category_data.go +++ b/src/transfers/model_internal_category_data.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the InternalCategoryData type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_internal_review_tracking_data.go b/src/transfers/model_internal_review_tracking_data.go index 2e3b65615..c3b0eeeec 100644 --- a/src/transfers/model_internal_review_tracking_data.go +++ b/src/transfers/model_internal_review_tracking_data.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the InternalReviewTrackingData type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_invalid_field.go b/src/transfers/model_invalid_field.go index d886104ec..77b7fada1 100644 --- a/src/transfers/model_invalid_field.go +++ b/src/transfers/model_invalid_field.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the InvalidField type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_issued_card.go b/src/transfers/model_issued_card.go index 22b2d60ea..b5b4ad7cf 100644 --- a/src/transfers/model_issued_card.go +++ b/src/transfers/model_issued_card.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the IssuedCard type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_json_object.go b/src/transfers/model_json_object.go index e6aca5918..0d552c20c 100644 --- a/src/transfers/model_json_object.go +++ b/src/transfers/model_json_object.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the JSONObject type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_json_path.go b/src/transfers/model_json_path.go index 39aa7d067..6e76028d7 100644 --- a/src/transfers/model_json_path.go +++ b/src/transfers/model_json_path.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the JSONPath type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_link.go b/src/transfers/model_link.go index 71b01ff59..bee807885 100644 --- a/src/transfers/model_link.go +++ b/src/transfers/model_link.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Link type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_links.go b/src/transfers/model_links.go index 741b59f27..498140553 100644 --- a/src/transfers/model_links.go +++ b/src/transfers/model_links.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Links type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_merchant_data.go b/src/transfers/model_merchant_data.go index d07c34667..db0fc3ec7 100644 --- a/src/transfers/model_merchant_data.go +++ b/src/transfers/model_merchant_data.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the MerchantData type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_modification.go b/src/transfers/model_modification.go index a76ccd44c..71e8f074f 100644 --- a/src/transfers/model_modification.go +++ b/src/transfers/model_modification.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Modification type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_name_location.go b/src/transfers/model_name_location.go index ce06715fa..f7a7b1aba 100644 --- a/src/transfers/model_name_location.go +++ b/src/transfers/model_name_location.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the NameLocation type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_no_local_account_identification.go b/src/transfers/model_no_local_account_identification.go index 80f07ac6b..7975c6da7 100644 --- a/src/transfers/model_no_local_account_identification.go +++ b/src/transfers/model_no_local_account_identification.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the NOLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_number_and_bic_account_identification.go b/src/transfers/model_number_and_bic_account_identification.go index cc8901f6e..793dcc874 100644 --- a/src/transfers/model_number_and_bic_account_identification.go +++ b/src/transfers/model_number_and_bic_account_identification.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the NumberAndBicAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_nz_local_account_identification.go b/src/transfers/model_nz_local_account_identification.go index 5f9fc6bc2..0428c41ec 100644 --- a/src/transfers/model_nz_local_account_identification.go +++ b/src/transfers/model_nz_local_account_identification.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the NZLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_party_identification.go b/src/transfers/model_party_identification.go index 8649e25cf..783179305 100644 --- a/src/transfers/model_party_identification.go +++ b/src/transfers/model_party_identification.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PartyIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_payment_instrument.go b/src/transfers/model_payment_instrument.go index 78284dbba..d2f187cb9 100644 --- a/src/transfers/model_payment_instrument.go +++ b/src/transfers/model_payment_instrument.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentInstrument type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_pl_local_account_identification.go b/src/transfers/model_pl_local_account_identification.go index 801e22d63..a5d02c971 100644 --- a/src/transfers/model_pl_local_account_identification.go +++ b/src/transfers/model_pl_local_account_identification.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PLLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_platform_payment.go b/src/transfers/model_platform_payment.go index ccdf48210..9702ac529 100644 --- a/src/transfers/model_platform_payment.go +++ b/src/transfers/model_platform_payment.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PlatformPayment type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_relayed_authorisation_data.go b/src/transfers/model_relayed_authorisation_data.go index c8182db98..c3565dbfb 100644 --- a/src/transfers/model_relayed_authorisation_data.go +++ b/src/transfers/model_relayed_authorisation_data.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the RelayedAuthorisationData type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_repayment.go b/src/transfers/model_repayment.go index 601efb85b..bc8b2ffba 100644 --- a/src/transfers/model_repayment.go +++ b/src/transfers/model_repayment.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Repayment type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_repayment_term.go b/src/transfers/model_repayment_term.go index c11234d3d..edf43f822 100644 --- a/src/transfers/model_repayment_term.go +++ b/src/transfers/model_repayment_term.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the RepaymentTerm type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_resource_reference.go b/src/transfers/model_resource_reference.go index 2c445a186..ed9d7ee34 100644 --- a/src/transfers/model_resource_reference.go +++ b/src/transfers/model_resource_reference.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResourceReference type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_rest_service_error.go b/src/transfers/model_rest_service_error.go index 802965f81..e780a71c2 100644 --- a/src/transfers/model_rest_service_error.go +++ b/src/transfers/model_rest_service_error.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the RestServiceError type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_return_transfer_request.go b/src/transfers/model_return_transfer_request.go index 2dcafa277..6fcd0cacb 100644 --- a/src/transfers/model_return_transfer_request.go +++ b/src/transfers/model_return_transfer_request.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ReturnTransferRequest type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_return_transfer_response.go b/src/transfers/model_return_transfer_response.go index fea767673..97ba5c7c4 100644 --- a/src/transfers/model_return_transfer_response.go +++ b/src/transfers/model_return_transfer_response.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ReturnTransferResponse type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_routing_details.go b/src/transfers/model_routing_details.go index 5c7f4be38..47bdd9960 100644 --- a/src/transfers/model_routing_details.go +++ b/src/transfers/model_routing_details.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the RoutingDetails type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_se_local_account_identification.go b/src/transfers/model_se_local_account_identification.go index 04f36cba2..eafc30a2b 100644 --- a/src/transfers/model_se_local_account_identification.go +++ b/src/transfers/model_se_local_account_identification.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SELocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_service_error.go b/src/transfers/model_service_error.go index ff26afa77..1e6bd8ad3 100644 --- a/src/transfers/model_service_error.go +++ b/src/transfers/model_service_error.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ServiceError type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_sg_local_account_identification.go b/src/transfers/model_sg_local_account_identification.go index 2cbcee953..6e497cb36 100644 --- a/src/transfers/model_sg_local_account_identification.go +++ b/src/transfers/model_sg_local_account_identification.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SGLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_threshold_repayment.go b/src/transfers/model_threshold_repayment.go index 33d19b15c..68f788cb8 100644 --- a/src/transfers/model_threshold_repayment.go +++ b/src/transfers/model_threshold_repayment.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ThresholdRepayment type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_transaction.go b/src/transfers/model_transaction.go index 56a4f28b2..f8d4e0c93 100644 --- a/src/transfers/model_transaction.go +++ b/src/transfers/model_transaction.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Transaction type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_transaction_event_violation.go b/src/transfers/model_transaction_event_violation.go index ef6547b9d..baf343f61 100644 --- a/src/transfers/model_transaction_event_violation.go +++ b/src/transfers/model_transaction_event_violation.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransactionEventViolation type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_transaction_rule_reference.go b/src/transfers/model_transaction_rule_reference.go index 2677c2306..6bc0714f7 100644 --- a/src/transfers/model_transaction_rule_reference.go +++ b/src/transfers/model_transaction_rule_reference.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransactionRuleReference type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_transaction_rule_source.go b/src/transfers/model_transaction_rule_source.go index 7bda10126..3cf6e3cef 100644 --- a/src/transfers/model_transaction_rule_source.go +++ b/src/transfers/model_transaction_rule_source.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransactionRuleSource type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_transaction_rules_result.go b/src/transfers/model_transaction_rules_result.go index e382fed1b..c9e27d841 100644 --- a/src/transfers/model_transaction_rules_result.go +++ b/src/transfers/model_transaction_rules_result.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransactionRulesResult type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_transaction_search_response.go b/src/transfers/model_transaction_search_response.go index a70c96311..6d87bec7f 100644 --- a/src/transfers/model_transaction_search_response.go +++ b/src/transfers/model_transaction_search_response.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransactionSearchResponse type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_transfer.go b/src/transfers/model_transfer.go index 93e572110..910d6e304 100644 --- a/src/transfers/model_transfer.go +++ b/src/transfers/model_transfer.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Transfer type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_transfer_data.go b/src/transfers/model_transfer_data.go index c8f316e86..1849adf27 100644 --- a/src/transfers/model_transfer_data.go +++ b/src/transfers/model_transfer_data.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransferData type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_transfer_event.go b/src/transfers/model_transfer_event.go index cc7fafe2a..f1f10d847 100644 --- a/src/transfers/model_transfer_event.go +++ b/src/transfers/model_transfer_event.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransferEvent type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_transfer_info.go b/src/transfers/model_transfer_info.go index 91ec8e4d3..8daadc9af 100644 --- a/src/transfers/model_transfer_info.go +++ b/src/transfers/model_transfer_info.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransferInfo type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_transfer_notification_counter_party.go b/src/transfers/model_transfer_notification_counter_party.go index 9766efa83..bb634c6bb 100644 --- a/src/transfers/model_transfer_notification_counter_party.go +++ b/src/transfers/model_transfer_notification_counter_party.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransferNotificationCounterParty type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_transfer_notification_merchant_data.go b/src/transfers/model_transfer_notification_merchant_data.go index 04be8b0ed..2f117c7d4 100644 --- a/src/transfers/model_transfer_notification_merchant_data.go +++ b/src/transfers/model_transfer_notification_merchant_data.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransferNotificationMerchantData type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_transfer_notification_transfer_tracking.go b/src/transfers/model_transfer_notification_transfer_tracking.go index f7da285b3..643f1932e 100644 --- a/src/transfers/model_transfer_notification_transfer_tracking.go +++ b/src/transfers/model_transfer_notification_transfer_tracking.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransferNotificationTransferTracking type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_transfer_notification_validation_fact.go b/src/transfers/model_transfer_notification_validation_fact.go index 5bda80bde..85226d90e 100644 --- a/src/transfers/model_transfer_notification_validation_fact.go +++ b/src/transfers/model_transfer_notification_validation_fact.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransferNotificationValidationFact type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_transfer_service_rest_service_error.go b/src/transfers/model_transfer_service_rest_service_error.go index 941ac271b..2ed26770b 100644 --- a/src/transfers/model_transfer_service_rest_service_error.go +++ b/src/transfers/model_transfer_service_rest_service_error.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransferServiceRestServiceError type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_transfer_view.go b/src/transfers/model_transfer_view.go index 26b1dee8b..523d0c9da 100644 --- a/src/transfers/model_transfer_view.go +++ b/src/transfers/model_transfer_view.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransferView type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_uk_local_account_identification.go b/src/transfers/model_uk_local_account_identification.go index a3d276ab5..37a4eeea8 100644 --- a/src/transfers/model_uk_local_account_identification.go +++ b/src/transfers/model_uk_local_account_identification.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UKLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_ultimate_party_identification.go b/src/transfers/model_ultimate_party_identification.go index e4c0b5a60..651164e65 100644 --- a/src/transfers/model_ultimate_party_identification.go +++ b/src/transfers/model_ultimate_party_identification.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UltimatePartyIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_us_local_account_identification.go b/src/transfers/model_us_local_account_identification.go index 1af229064..a9203a55e 100644 --- a/src/transfers/model_us_local_account_identification.go +++ b/src/transfers/model_us_local_account_identification.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the USLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/client.go b/src/transferwebhook/client.go index dad343b97..414f6a95c 100644 --- a/src/transferwebhook/client.go +++ b/src/transferwebhook/client.go @@ -9,7 +9,7 @@ API version: 3 package transferwebhook import ( - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // APIClient manages communication with the Transfer webhooks API v3 diff --git a/src/transferwebhook/model_additional_bank_identification.go b/src/transferwebhook/model_additional_bank_identification.go index 361a6a77d..df9f41790 100644 --- a/src/transferwebhook/model_additional_bank_identification.go +++ b/src/transferwebhook/model_additional_bank_identification.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AdditionalBankIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_address.go b/src/transferwebhook/model_address.go index 48adda861..6f9851f1b 100644 --- a/src/transferwebhook/model_address.go +++ b/src/transferwebhook/model_address.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Address type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_amount.go b/src/transferwebhook/model_amount.go index a889aa7ec..395ae01e3 100644 --- a/src/transferwebhook/model_amount.go +++ b/src/transferwebhook/model_amount.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Amount type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_amount_adjustment.go b/src/transferwebhook/model_amount_adjustment.go index 46fbcfc87..58c2db7af 100644 --- a/src/transferwebhook/model_amount_adjustment.go +++ b/src/transferwebhook/model_amount_adjustment.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AmountAdjustment type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_au_local_account_identification.go b/src/transferwebhook/model_au_local_account_identification.go index ec0e56414..36f84b1b8 100644 --- a/src/transferwebhook/model_au_local_account_identification.go +++ b/src/transferwebhook/model_au_local_account_identification.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the AULocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_balance_mutation.go b/src/transferwebhook/model_balance_mutation.go index 4712b50a4..9b2a8136f 100644 --- a/src/transferwebhook/model_balance_mutation.go +++ b/src/transferwebhook/model_balance_mutation.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BalanceMutation type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_balance_platform_notification_response.go b/src/transferwebhook/model_balance_platform_notification_response.go index 2420ae422..3c7549570 100644 --- a/src/transferwebhook/model_balance_platform_notification_response.go +++ b/src/transferwebhook/model_balance_platform_notification_response.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BalancePlatformNotificationResponse type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_bank_account_v3.go b/src/transferwebhook/model_bank_account_v3.go index de43bbef4..1d2bf11b2 100644 --- a/src/transferwebhook/model_bank_account_v3.go +++ b/src/transferwebhook/model_bank_account_v3.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BankAccountV3 type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_bank_category_data.go b/src/transferwebhook/model_bank_category_data.go index 09263bfb3..d4d05b445 100644 --- a/src/transferwebhook/model_bank_category_data.go +++ b/src/transferwebhook/model_bank_category_data.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BankCategoryData type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_br_local_account_identification.go b/src/transferwebhook/model_br_local_account_identification.go index ae2b8829a..896f80374 100644 --- a/src/transferwebhook/model_br_local_account_identification.go +++ b/src/transferwebhook/model_br_local_account_identification.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the BRLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_ca_local_account_identification.go b/src/transferwebhook/model_ca_local_account_identification.go index 2f0cdb0a6..dd22547e3 100644 --- a/src/transferwebhook/model_ca_local_account_identification.go +++ b/src/transferwebhook/model_ca_local_account_identification.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CALocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_card.go b/src/transferwebhook/model_card.go index 82f1ff451..441decb1b 100644 --- a/src/transferwebhook/model_card.go +++ b/src/transferwebhook/model_card.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Card type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_card_identification.go b/src/transferwebhook/model_card_identification.go index 3072a6140..39235b3d5 100644 --- a/src/transferwebhook/model_card_identification.go +++ b/src/transferwebhook/model_card_identification.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CardIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_confirmation_tracking_data.go b/src/transferwebhook/model_confirmation_tracking_data.go index 64fd456f6..b5680ee85 100644 --- a/src/transferwebhook/model_confirmation_tracking_data.go +++ b/src/transferwebhook/model_confirmation_tracking_data.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ConfirmationTrackingData type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_counterparty_v3.go b/src/transferwebhook/model_counterparty_v3.go index 813383041..69704e56f 100644 --- a/src/transferwebhook/model_counterparty_v3.go +++ b/src/transferwebhook/model_counterparty_v3.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CounterpartyV3 type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_cz_local_account_identification.go b/src/transferwebhook/model_cz_local_account_identification.go index 30bb65e84..339859a11 100644 --- a/src/transferwebhook/model_cz_local_account_identification.go +++ b/src/transferwebhook/model_cz_local_account_identification.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the CZLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_dk_local_account_identification.go b/src/transferwebhook/model_dk_local_account_identification.go index ccdf8ab98..2122cf80a 100644 --- a/src/transferwebhook/model_dk_local_account_identification.go +++ b/src/transferwebhook/model_dk_local_account_identification.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the DKLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_estimation_tracking_data.go b/src/transferwebhook/model_estimation_tracking_data.go index 3e6d0256d..bfe75efbd 100644 --- a/src/transferwebhook/model_estimation_tracking_data.go +++ b/src/transferwebhook/model_estimation_tracking_data.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the EstimationTrackingData type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_external_reason.go b/src/transferwebhook/model_external_reason.go index c0230a416..d1ba946ec 100644 --- a/src/transferwebhook/model_external_reason.go +++ b/src/transferwebhook/model_external_reason.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ExternalReason type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_hk_local_account_identification.go b/src/transferwebhook/model_hk_local_account_identification.go index 32f1da056..7bea3dd9e 100644 --- a/src/transferwebhook/model_hk_local_account_identification.go +++ b/src/transferwebhook/model_hk_local_account_identification.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the HKLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_hu_local_account_identification.go b/src/transferwebhook/model_hu_local_account_identification.go index 35948fa21..0fcfce125 100644 --- a/src/transferwebhook/model_hu_local_account_identification.go +++ b/src/transferwebhook/model_hu_local_account_identification.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the HULocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_iban_account_identification.go b/src/transferwebhook/model_iban_account_identification.go index f73e987c7..20e4bc210 100644 --- a/src/transferwebhook/model_iban_account_identification.go +++ b/src/transferwebhook/model_iban_account_identification.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the IbanAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_internal_category_data.go b/src/transferwebhook/model_internal_category_data.go index 99f1d24f3..0d3f8da88 100644 --- a/src/transferwebhook/model_internal_category_data.go +++ b/src/transferwebhook/model_internal_category_data.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the InternalCategoryData type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_internal_review_tracking_data.go b/src/transferwebhook/model_internal_review_tracking_data.go index 58adc7f44..40f896da3 100644 --- a/src/transferwebhook/model_internal_review_tracking_data.go +++ b/src/transferwebhook/model_internal_review_tracking_data.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the InternalReviewTrackingData type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_issued_card.go b/src/transferwebhook/model_issued_card.go index 089620dd1..b1dfd5991 100644 --- a/src/transferwebhook/model_issued_card.go +++ b/src/transferwebhook/model_issued_card.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the IssuedCard type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_merchant_data.go b/src/transferwebhook/model_merchant_data.go index 82714e807..b2fcbe962 100644 --- a/src/transferwebhook/model_merchant_data.go +++ b/src/transferwebhook/model_merchant_data.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the MerchantData type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_modification.go b/src/transferwebhook/model_modification.go index cf57067b6..15f4714f9 100644 --- a/src/transferwebhook/model_modification.go +++ b/src/transferwebhook/model_modification.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Modification type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_name_location.go b/src/transferwebhook/model_name_location.go index 769d60592..acc3f9ab4 100644 --- a/src/transferwebhook/model_name_location.go +++ b/src/transferwebhook/model_name_location.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the NameLocation type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_no_local_account_identification.go b/src/transferwebhook/model_no_local_account_identification.go index b633d448d..766497cc3 100644 --- a/src/transferwebhook/model_no_local_account_identification.go +++ b/src/transferwebhook/model_no_local_account_identification.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the NOLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_number_and_bic_account_identification.go b/src/transferwebhook/model_number_and_bic_account_identification.go index 0d02bc086..9dbd4729a 100644 --- a/src/transferwebhook/model_number_and_bic_account_identification.go +++ b/src/transferwebhook/model_number_and_bic_account_identification.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the NumberAndBicAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_nz_local_account_identification.go b/src/transferwebhook/model_nz_local_account_identification.go index 69c84c30c..c112ece79 100644 --- a/src/transferwebhook/model_nz_local_account_identification.go +++ b/src/transferwebhook/model_nz_local_account_identification.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the NZLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_party_identification.go b/src/transferwebhook/model_party_identification.go index ad1536903..3aeedd1f4 100644 --- a/src/transferwebhook/model_party_identification.go +++ b/src/transferwebhook/model_party_identification.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PartyIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_payment_instrument.go b/src/transferwebhook/model_payment_instrument.go index e94fb8ae2..618657e4d 100644 --- a/src/transferwebhook/model_payment_instrument.go +++ b/src/transferwebhook/model_payment_instrument.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PaymentInstrument type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_pl_local_account_identification.go b/src/transferwebhook/model_pl_local_account_identification.go index ddc02c144..4d583e531 100644 --- a/src/transferwebhook/model_pl_local_account_identification.go +++ b/src/transferwebhook/model_pl_local_account_identification.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PLLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_platform_payment.go b/src/transferwebhook/model_platform_payment.go index 44ce4b764..f32ddcef8 100644 --- a/src/transferwebhook/model_platform_payment.go +++ b/src/transferwebhook/model_platform_payment.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the PlatformPayment type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_relayed_authorisation_data.go b/src/transferwebhook/model_relayed_authorisation_data.go index 8df615cf7..e17d84b81 100644 --- a/src/transferwebhook/model_relayed_authorisation_data.go +++ b/src/transferwebhook/model_relayed_authorisation_data.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the RelayedAuthorisationData type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_resource.go b/src/transferwebhook/model_resource.go index 7775f0845..aa7e31391 100644 --- a/src/transferwebhook/model_resource.go +++ b/src/transferwebhook/model_resource.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the Resource type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_resource_reference.go b/src/transferwebhook/model_resource_reference.go index 3985cebb6..6c2874e36 100644 --- a/src/transferwebhook/model_resource_reference.go +++ b/src/transferwebhook/model_resource_reference.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the ResourceReference type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_se_local_account_identification.go b/src/transferwebhook/model_se_local_account_identification.go index e7905e6be..cba99e3f0 100644 --- a/src/transferwebhook/model_se_local_account_identification.go +++ b/src/transferwebhook/model_se_local_account_identification.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SELocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_sg_local_account_identification.go b/src/transferwebhook/model_sg_local_account_identification.go index 610f0ce32..bf328b342 100644 --- a/src/transferwebhook/model_sg_local_account_identification.go +++ b/src/transferwebhook/model_sg_local_account_identification.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the SGLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_transaction_event_violation.go b/src/transferwebhook/model_transaction_event_violation.go index cd1a8acb5..f35cc4132 100644 --- a/src/transferwebhook/model_transaction_event_violation.go +++ b/src/transferwebhook/model_transaction_event_violation.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransactionEventViolation type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_transaction_rule_reference.go b/src/transferwebhook/model_transaction_rule_reference.go index c715fa069..98937d2fd 100644 --- a/src/transferwebhook/model_transaction_rule_reference.go +++ b/src/transferwebhook/model_transaction_rule_reference.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransactionRuleReference type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_transaction_rule_source.go b/src/transferwebhook/model_transaction_rule_source.go index 0b1c64f9b..8ed56b2bd 100644 --- a/src/transferwebhook/model_transaction_rule_source.go +++ b/src/transferwebhook/model_transaction_rule_source.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransactionRuleSource type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_transaction_rules_result.go b/src/transferwebhook/model_transaction_rules_result.go index f04a7339b..a37f4c11c 100644 --- a/src/transferwebhook/model_transaction_rules_result.go +++ b/src/transferwebhook/model_transaction_rules_result.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransactionRulesResult type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_transfer_data.go b/src/transferwebhook/model_transfer_data.go index b28990092..a05f4cbb3 100644 --- a/src/transferwebhook/model_transfer_data.go +++ b/src/transferwebhook/model_transfer_data.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransferData type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_transfer_event.go b/src/transferwebhook/model_transfer_event.go index a76837b1c..6da3fbc81 100644 --- a/src/transferwebhook/model_transfer_event.go +++ b/src/transferwebhook/model_transfer_event.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransferEvent type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_transfer_notification_counter_party.go b/src/transferwebhook/model_transfer_notification_counter_party.go index 452a19165..9b7eee0e4 100644 --- a/src/transferwebhook/model_transfer_notification_counter_party.go +++ b/src/transferwebhook/model_transfer_notification_counter_party.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransferNotificationCounterParty type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_transfer_notification_data.go b/src/transferwebhook/model_transfer_notification_data.go index c77ade534..52209f8f7 100644 --- a/src/transferwebhook/model_transfer_notification_data.go +++ b/src/transferwebhook/model_transfer_notification_data.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransferNotificationData type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_transfer_notification_merchant_data.go b/src/transferwebhook/model_transfer_notification_merchant_data.go index 84ed6805e..27223bceb 100644 --- a/src/transferwebhook/model_transfer_notification_merchant_data.go +++ b/src/transferwebhook/model_transfer_notification_merchant_data.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransferNotificationMerchantData type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_transfer_notification_request.go b/src/transferwebhook/model_transfer_notification_request.go index cf41b6f61..9ffa89451 100644 --- a/src/transferwebhook/model_transfer_notification_request.go +++ b/src/transferwebhook/model_transfer_notification_request.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransferNotificationRequest type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_transfer_notification_transfer_tracking.go b/src/transferwebhook/model_transfer_notification_transfer_tracking.go index 91f83e53d..18d7af404 100644 --- a/src/transferwebhook/model_transfer_notification_transfer_tracking.go +++ b/src/transferwebhook/model_transfer_notification_transfer_tracking.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransferNotificationTransferTracking type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_transfer_notification_validation_fact.go b/src/transferwebhook/model_transfer_notification_validation_fact.go index 3459ce522..544561564 100644 --- a/src/transferwebhook/model_transfer_notification_validation_fact.go +++ b/src/transferwebhook/model_transfer_notification_validation_fact.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransferNotificationValidationFact type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_transfer_operation.go b/src/transferwebhook/model_transfer_operation.go index c16d2259c..0b960ce45 100644 --- a/src/transferwebhook/model_transfer_operation.go +++ b/src/transferwebhook/model_transfer_operation.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the TransferOperation type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_uk_local_account_identification.go b/src/transferwebhook/model_uk_local_account_identification.go index 99971e4ed..7dfd06c83 100644 --- a/src/transferwebhook/model_uk_local_account_identification.go +++ b/src/transferwebhook/model_uk_local_account_identification.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the UKLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_us_local_account_identification.go b/src/transferwebhook/model_us_local_account_identification.go index 34024a68b..66a9b3496 100644 --- a/src/transferwebhook/model_us_local_account_identification.go +++ b/src/transferwebhook/model_us_local_account_identification.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // checks if the USLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/templates/config.yaml b/templates/config.yaml index 7a849476c..0c5e29488 100644 --- a/templates/config.yaml +++ b/templates/config.yaml @@ -1,5 +1,5 @@ gitUserId: adyen -gitRepoId: adyen-go-api-library/v11/src +gitRepoId: adyen-go-api-library/v12/src structPrefix: true isGoSubmodule: true additionalProperties: diff --git a/templates/custom/api.mustache b/templates/custom/api.mustache index 8c68275c0..0f6897972 100644 --- a/templates/custom/api.mustache +++ b/templates/custom/api.mustache @@ -9,7 +9,7 @@ import ( "net/http" "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // {{classname}} service diff --git a/templates/custom/client.mustache b/templates/custom/client.mustache index 94c3b18e1..0d17e0f61 100644 --- a/templates/custom/client.mustache +++ b/templates/custom/client.mustache @@ -2,7 +2,7 @@ package {{packageName}} import ( - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // APIClient manages communication with the {{appName}} API v{{version}} diff --git a/templates/custom/model.mustache b/templates/custom/model.mustache index 76e431be7..77440450f 100644 --- a/templates/custom/model.mustache +++ b/templates/custom/model.mustache @@ -4,7 +4,7 @@ package {{packageName}} {{#models}} import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" {{#imports}} "{{import}}" {{/imports}} diff --git a/templates/custom/rest_api.mustache b/templates/custom/rest_api.mustache index c1c357f3e..193f892fb 100644 --- a/templates/custom/rest_api.mustache +++ b/templates/custom/rest_api.mustache @@ -9,7 +9,7 @@ import ( _nethttp "net/http" "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/common" ) // {{classname}} {{classname}} service diff --git a/tests/api_modifications_test.go b/tests/api_modifications_test.go index 04b07b470..3039034c6 100644 --- a/tests/api_modifications_test.go +++ b/tests/api_modifications_test.go @@ -5,9 +5,9 @@ package tests import ( "context" - "github.com/adyen/adyen-go-api-library/v11/src/adyen" - "github.com/adyen/adyen-go-api-library/v11/src/checkout" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/adyen" + "github.com/adyen/adyen-go-api-library/v12/src/checkout" + "github.com/adyen/adyen-go-api-library/v12/src/common" "github.com/joho/godotenv" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/tests/balancecontrol_test.go b/tests/balancecontrol_test.go index 2392e62fe..2c779c3f2 100644 --- a/tests/balancecontrol_test.go +++ b/tests/balancecontrol_test.go @@ -2,14 +2,14 @@ package tests import ( "context" - "github.com/adyen/adyen-go-api-library/v11/src/balancecontrol" + "github.com/adyen/adyen-go-api-library/v12/src/balancecontrol" "io" "net/http" "net/http/httptest" "testing" - "github.com/adyen/adyen-go-api-library/v11/src/adyen" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/adyen" + "github.com/adyen/adyen-go-api-library/v12/src/common" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/tests/balanceplatform/acswebhook_test.go b/tests/balanceplatform/acswebhook_test.go index 4f1deaf02..b79fc0837 100644 --- a/tests/balanceplatform/acswebhook_test.go +++ b/tests/balanceplatform/acswebhook_test.go @@ -1,7 +1,7 @@ package balanceplatform import ( - "github.com/adyen/adyen-go-api-library/v11/src/acswebhook" + "github.com/adyen/adyen-go-api-library/v12/src/acswebhook" "testing" "github.com/stretchr/testify/assert" diff --git a/tests/balanceplatform/configurationwebhook_test.go b/tests/balanceplatform/configurationwebhook_test.go index a9aafea93..0a5540850 100644 --- a/tests/balanceplatform/configurationwebhook_test.go +++ b/tests/balanceplatform/configurationwebhook_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/assert" // "github.com///testify/require" - "github.com/adyen/adyen-go-api-library/v11/src/configurationwebhook" + "github.com/adyen/adyen-go-api-library/v12/src/configurationwebhook" ) func TestHandleAccountHolderNotificationRequest(t *testing.T) { diff --git a/tests/balanceplatform/reportwebhook_test.go b/tests/balanceplatform/reportwebhook_test.go index 1460125c1..7aaddd4fe 100644 --- a/tests/balanceplatform/reportwebhook_test.go +++ b/tests/balanceplatform/reportwebhook_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/assert" - "github.com/adyen/adyen-go-api-library/v11/src/reportwebhook" + "github.com/adyen/adyen-go-api-library/v12/src/reportwebhook" ) func TestHandleReportNotificationRequest(t *testing.T) { diff --git a/tests/balanceplatform/transferwebhook_test.go b/tests/balanceplatform/transferwebhook_test.go index ee0467e6a..ac6c59451 100644 --- a/tests/balanceplatform/transferwebhook_test.go +++ b/tests/balanceplatform/transferwebhook_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/assert" - "github.com/adyen/adyen-go-api-library/v11/src/transferwebhook" + "github.com/adyen/adyen-go-api-library/v12/src/transferwebhook" ) func TestHandleTransferNotificationRequest(t *testing.T) { diff --git a/tests/balanceplatform/unit_test.go b/tests/balanceplatform/unit_test.go index 29219217f..5bcdbef77 100644 --- a/tests/balanceplatform/unit_test.go +++ b/tests/balanceplatform/unit_test.go @@ -3,10 +3,10 @@ package balanceplatform import ( "context" "errors" - "github.com/adyen/adyen-go-api-library/v11/src/adyen" - "github.com/adyen/adyen-go-api-library/v11/src/balanceplatform" - "github.com/adyen/adyen-go-api-library/v11/src/common" - "github.com/adyen/adyen-go-api-library/v11/tests" + "github.com/adyen/adyen-go-api-library/v12/src/adyen" + "github.com/adyen/adyen-go-api-library/v12/src/balanceplatform" + "github.com/adyen/adyen-go-api-library/v12/src/common" + "github.com/adyen/adyen-go-api-library/v12/tests" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "io" diff --git a/tests/binlookup_test.go b/tests/binlookup_test.go index f0b99fcaf..e46fbfa2a 100644 --- a/tests/binlookup_test.go +++ b/tests/binlookup_test.go @@ -5,12 +5,12 @@ package tests import ( "context" - "github.com/adyen/adyen-go-api-library/v11/src/binlookup" + "github.com/adyen/adyen-go-api-library/v12/src/binlookup" "os" "testing" - "github.com/adyen/adyen-go-api-library/v11/src/adyen" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/adyen" + "github.com/adyen/adyen-go-api-library/v12/src/common" "github.com/joho/godotenv" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/tests/checkout/idempotency_test.go b/tests/checkout/idempotency_test.go index a4eb56311..f39deb79b 100644 --- a/tests/checkout/idempotency_test.go +++ b/tests/checkout/idempotency_test.go @@ -11,9 +11,9 @@ import ( "testing" "time" - "github.com/adyen/adyen-go-api-library/v11/src/adyen" - "github.com/adyen/adyen-go-api-library/v11/src/checkout" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/adyen" + "github.com/adyen/adyen-go-api-library/v12/src/checkout" + "github.com/adyen/adyen-go-api-library/v12/src/common" "github.com/google/uuid" "github.com/stretchr/testify/require" ) diff --git a/tests/checkout/integration_test.go b/tests/checkout/integration_test.go index 528a0154c..cb87e749b 100644 --- a/tests/checkout/integration_test.go +++ b/tests/checkout/integration_test.go @@ -5,9 +5,9 @@ package checkout import ( "context" - "github.com/adyen/adyen-go-api-library/v11/src/adyen" - "github.com/adyen/adyen-go-api-library/v11/src/checkout" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/adyen" + "github.com/adyen/adyen-go-api-library/v12/src/checkout" + "github.com/adyen/adyen-go-api-library/v12/src/common" "github.com/google/uuid" "io/ioutil" "os" diff --git a/tests/checkout/unit_test.go b/tests/checkout/unit_test.go index 2dda013fd..96ec60a7d 100644 --- a/tests/checkout/unit_test.go +++ b/tests/checkout/unit_test.go @@ -2,10 +2,10 @@ package checkout import ( "context" - "github.com/adyen/adyen-go-api-library/v11/src/adyen" - "github.com/adyen/adyen-go-api-library/v11/src/checkout" - "github.com/adyen/adyen-go-api-library/v11/src/common" - "github.com/adyen/adyen-go-api-library/v11/tests" + "github.com/adyen/adyen-go-api-library/v12/src/adyen" + "github.com/adyen/adyen-go-api-library/v12/src/checkout" + "github.com/adyen/adyen-go-api-library/v12/src/common" + "github.com/adyen/adyen-go-api-library/v12/tests" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "io" diff --git a/tests/data_protection_test.go b/tests/data_protection_test.go index d09eee303..0cdfc9484 100644 --- a/tests/data_protection_test.go +++ b/tests/data_protection_test.go @@ -4,9 +4,9 @@ import ( "bytes" "context" "errors" - "github.com/adyen/adyen-go-api-library/v11/src/adyen" - "github.com/adyen/adyen-go-api-library/v11/src/common" - "github.com/adyen/adyen-go-api-library/v11/src/dataprotection" + "github.com/adyen/adyen-go-api-library/v12/src/adyen" + "github.com/adyen/adyen-go-api-library/v12/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/dataprotection" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "io" diff --git a/tests/disputes_test.go b/tests/disputes_test.go index b85fcf0d6..39ec7cb2e 100644 --- a/tests/disputes_test.go +++ b/tests/disputes_test.go @@ -8,9 +8,9 @@ import ( "os" "testing" - "github.com/adyen/adyen-go-api-library/v11/src/adyen" - "github.com/adyen/adyen-go-api-library/v11/src/common" - "github.com/adyen/adyen-go-api-library/v11/src/disputes" + "github.com/adyen/adyen-go-api-library/v12/src/adyen" + "github.com/adyen/adyen-go-api-library/v12/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/disputes" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/tests/legalentity/configuration_test.go b/tests/legalentity/configuration_test.go index 55620dd7a..2df50b885 100644 --- a/tests/legalentity/configuration_test.go +++ b/tests/legalentity/configuration_test.go @@ -3,8 +3,8 @@ package legalentity import ( "context" "encoding/json" - "github.com/adyen/adyen-go-api-library/v11/src/adyen" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/adyen" + "github.com/adyen/adyen-go-api-library/v12/src/common" "github.com/stretchr/testify/assert" "net/http" "net/http/httptest" diff --git a/tests/legalentity/integration_test.go b/tests/legalentity/integration_test.go index 095aa3052..9f29b80fc 100644 --- a/tests/legalentity/integration_test.go +++ b/tests/legalentity/integration_test.go @@ -5,8 +5,8 @@ package legalentity import ( "context" - "github.com/adyen/adyen-go-api-library/v11/src/adyen" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/adyen" + "github.com/adyen/adyen-go-api-library/v12/src/common" "github.com/joho/godotenv" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/tests/legalentity/unit_test.go b/tests/legalentity/unit_test.go index de3750931..4d59a7fc9 100644 --- a/tests/legalentity/unit_test.go +++ b/tests/legalentity/unit_test.go @@ -2,9 +2,9 @@ package legalentity import ( "context" - "github.com/adyen/adyen-go-api-library/v11/src/adyen" - "github.com/adyen/adyen-go-api-library/v11/src/common" - "github.com/adyen/adyen-go-api-library/v11/src/legalentity" + "github.com/adyen/adyen-go-api-library/v12/src/adyen" + "github.com/adyen/adyen-go-api-library/v12/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/legalentity" "github.com/stretchr/testify/assert" "net/http" "net/http/httptest" diff --git a/tests/management/integration_test.go b/tests/management/integration_test.go index 8c0b8f968..3586e1968 100644 --- a/tests/management/integration_test.go +++ b/tests/management/integration_test.go @@ -6,8 +6,8 @@ package management import ( "context" "errors" - "github.com/adyen/adyen-go-api-library/v11/src/adyen" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/adyen" + "github.com/adyen/adyen-go-api-library/v12/src/common" "github.com/joho/godotenv" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/tests/management/unit_test.go b/tests/management/unit_test.go index 7e65a4947..0c7f15303 100644 --- a/tests/management/unit_test.go +++ b/tests/management/unit_test.go @@ -5,9 +5,9 @@ import ( "encoding/json" "errors" "fmt" - "github.com/adyen/adyen-go-api-library/v11/src/adyen" - "github.com/adyen/adyen-go-api-library/v11/src/common" - "github.com/adyen/adyen-go-api-library/v11/src/management" + "github.com/adyen/adyen-go-api-library/v12/src/adyen" + "github.com/adyen/adyen-go-api-library/v12/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/management" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "net/http" diff --git a/tests/management_webhooks_handler_test.go b/tests/management_webhooks_handler_test.go index 82152710b..0eaf694f3 100644 --- a/tests/management_webhooks_handler_test.go +++ b/tests/management_webhooks_handler_test.go @@ -1,7 +1,7 @@ package tests import ( - "github.com/adyen/adyen-go-api-library/v11/src/managementwebhook" + "github.com/adyen/adyen-go-api-library/v12/src/managementwebhook" "testing" "github.com/stretchr/testify/assert" diff --git a/tests/model_payment_request_test.go b/tests/model_payment_request_test.go index d04641857..916041aa1 100644 --- a/tests/model_payment_request_test.go +++ b/tests/model_payment_request_test.go @@ -4,7 +4,7 @@ import ( "encoding/json" "testing" - "github.com/adyen/adyen-go-api-library/v11/src/checkout" + "github.com/adyen/adyen-go-api-library/v12/src/checkout" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/tests/model_payment_response_test.go b/tests/model_payment_response_test.go index 9b7beb788..cf426c39a 100644 --- a/tests/model_payment_response_test.go +++ b/tests/model_payment_response_test.go @@ -4,7 +4,7 @@ import ( "encoding/json" "testing" - "github.com/adyen/adyen-go-api-library/v11/src/checkout" + "github.com/adyen/adyen-go-api-library/v12/src/checkout" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/tests/payment_test.go b/tests/payment_test.go index 25ba549ec..812a14259 100644 --- a/tests/payment_test.go +++ b/tests/payment_test.go @@ -10,9 +10,9 @@ import ( "testing" "time" - "github.com/adyen/adyen-go-api-library/v11/src/adyen" - "github.com/adyen/adyen-go-api-library/v11/src/common" - "github.com/adyen/adyen-go-api-library/v11/src/payments" + "github.com/adyen/adyen-go-api-library/v12/src/adyen" + "github.com/adyen/adyen-go-api-library/v12/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/payments" "github.com/joho/godotenv" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/tests/payout_test.go b/tests/payout_test.go index 5d9349630..4c7127220 100644 --- a/tests/payout_test.go +++ b/tests/payout_test.go @@ -11,9 +11,9 @@ import ( "testing" "time" - "github.com/adyen/adyen-go-api-library/v11/src/adyen" - "github.com/adyen/adyen-go-api-library/v11/src/common" - "github.com/adyen/adyen-go-api-library/v11/src/payout" + "github.com/adyen/adyen-go-api-library/v12/src/adyen" + "github.com/adyen/adyen-go-api-library/v12/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/payout" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/tests/platforms_test.go b/tests/platforms_test.go index bc64d6f7b..8bbac98f5 100644 --- a/tests/platforms_test.go +++ b/tests/platforms_test.go @@ -12,11 +12,11 @@ import ( "os" "testing" - "github.com/adyen/adyen-go-api-library/v11/src/adyen" - "github.com/adyen/adyen-go-api-library/v11/src/common" - "github.com/adyen/adyen-go-api-library/v11/src/platformsaccount" - "github.com/adyen/adyen-go-api-library/v11/src/platformsfund" - "github.com/adyen/adyen-go-api-library/v11/src/platformsnotificationconfiguration" + "github.com/adyen/adyen-go-api-library/v12/src/adyen" + "github.com/adyen/adyen-go-api-library/v12/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/platformsaccount" + "github.com/adyen/adyen-go-api-library/v12/src/platformsfund" + "github.com/adyen/adyen-go-api-library/v12/src/platformsnotificationconfiguration" "github.com/google/uuid" "github.com/joho/godotenv" "github.com/stretchr/testify/assert" diff --git a/tests/pos_terminal_management_test.go b/tests/pos_terminal_management_test.go index ad9eab6d5..c179b9d40 100644 --- a/tests/pos_terminal_management_test.go +++ b/tests/pos_terminal_management_test.go @@ -7,8 +7,8 @@ import ( "net/http/httptest" "testing" - "github.com/adyen/adyen-go-api-library/v11/src/adyen" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/adyen" + "github.com/adyen/adyen-go-api-library/v12/src/common" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/tests/readme_test.go b/tests/readme_test.go index c68dba7bd..a506e271e 100644 --- a/tests/readme_test.go +++ b/tests/readme_test.go @@ -3,11 +3,11 @@ package tests import ( "context" "fmt" - "github.com/adyen/adyen-go-api-library/v11/src/adyen" - "github.com/adyen/adyen-go-api-library/v11/src/checkout" - "github.com/adyen/adyen-go-api-library/v11/src/common" - "github.com/adyen/adyen-go-api-library/v11/src/recurring" - "github.com/adyen/adyen-go-api-library/v11/src/webhook" + "github.com/adyen/adyen-go-api-library/v12/src/adyen" + "github.com/adyen/adyen-go-api-library/v12/src/checkout" + "github.com/adyen/adyen-go-api-library/v12/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/recurring" + "github.com/adyen/adyen-go-api-library/v12/src/webhook" "net/http" "net/url" "time" diff --git a/tests/recurring_test.go b/tests/recurring_test.go index 6d1cbbdc4..f126989b7 100644 --- a/tests/recurring_test.go +++ b/tests/recurring_test.go @@ -9,10 +9,10 @@ import ( "strings" "testing" - "github.com/adyen/adyen-go-api-library/v11/src/adyen" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/adyen" + "github.com/adyen/adyen-go-api-library/v12/src/common" - "github.com/adyen/adyen-go-api-library/v11/src/recurring" + "github.com/adyen/adyen-go-api-library/v12/src/recurring" "github.com/joho/godotenv" "github.com/stretchr/testify/assert" diff --git a/tests/storedvalue_test.go b/tests/storedvalue_test.go index 8b02d1901..4395f8344 100644 --- a/tests/storedvalue_test.go +++ b/tests/storedvalue_test.go @@ -3,9 +3,9 @@ package tests import ( "context" "errors" - "github.com/adyen/adyen-go-api-library/v11/src/adyen" - "github.com/adyen/adyen-go-api-library/v11/src/common" - "github.com/adyen/adyen-go-api-library/v11/src/storedvalue" + "github.com/adyen/adyen-go-api-library/v12/src/adyen" + "github.com/adyen/adyen-go-api-library/v12/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/storedvalue" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" "io" diff --git a/tests/transfers_test.go b/tests/transfers_test.go index 5ac3bbdfb..92ee54b68 100644 --- a/tests/transfers_test.go +++ b/tests/transfers_test.go @@ -3,15 +3,15 @@ package tests import ( "context" "errors" - "github.com/adyen/adyen-go-api-library/v11/src/transfers" + "github.com/adyen/adyen-go-api-library/v12/src/transfers" "io" "net/http" "net/http/httptest" "testing" "time" - "github.com/adyen/adyen-go-api-library/v11/src/adyen" - "github.com/adyen/adyen-go-api-library/v11/src/common" + "github.com/adyen/adyen-go-api-library/v12/src/adyen" + "github.com/adyen/adyen-go-api-library/v12/src/common" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" ) diff --git a/tests/webhook_handler_test.go b/tests/webhook_handler_test.go index cfd667121..f276ffabf 100644 --- a/tests/webhook_handler_test.go +++ b/tests/webhook_handler_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/adyen/adyen-go-api-library/v11/src/webhook" + "github.com/adyen/adyen-go-api-library/v12/src/webhook" ) func TestWebhook_HandleRequest(t *testing.T) {