diff --git a/Readme.md b/Readme.md index 2e866a64b..81937aef8 100644 --- a/Readme.md +++ b/Readme.md @@ -66,7 +66,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/v8@v9.0.0 +go get github.com/adyen/adyen-go-api-library/v9@v9.0.0 ``` ## Usage examples @@ -76,9 +76,9 @@ go get github.com/adyen/adyen-go-api-library/v8@v9.0.0 ```go import ( "context" - "github.com/adyen/adyen-go-api-library/v8/src/checkout" - "github.com/adyen/adyen-go-api-library/v8/src/common" - "github.com/adyen/adyen-go-api-library/v8/src/adyen" + "github.com/adyen/adyen-go-api-library/v9/src/checkout" + "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/adyen" ) client := adyen.NewClient(&common.Config{ @@ -98,9 +98,9 @@ res, httpRes, err := service.PaymentsApi.PaymentMethods(context.Background(), re ```go import ( - "github.com/adyen/adyen-go-api-library/v8/src/checkout" - "github.com/adyen/adyen-go-api-library/v8/src/common" - "github.com/adyen/adyen-go-api-library/v8/src/adyen" + "github.com/adyen/adyen-go-api-library/v9/src/checkout" + "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/adyen" ) client := adyen.NewClient(&common.Config{ @@ -121,9 +121,9 @@ res, httpRes, err := service.PaymentsApi.PaymentMethods(context.Background(), re ```go import ( - "github.com/adyen/adyen-go-api-library/v8/src/recurring" - "github.com/adyen/adyen-go-api-library/v8/src/common" - "github.com/adyen/adyen-go-api-library/v8/src/adyen" + "github.com/adyen/adyen-go-api-library/v9/src/recurring" + "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/adyen" ) client := adyen.NewClient(&common.Config{ @@ -151,7 +151,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/v8/src/checkout" + "github.com/adyen/adyen-go-api-library/v9/src/checkout" ) paymentRequest := checkout.PaymentRequest{} error := json.Unmarshal([]byte("YOUR_JSON_STRING"), &paymentRequest) @@ -162,7 +162,7 @@ error := json.Unmarshal([]byte("YOUR_JSON_STRING"), &paymentRequest) ```go import ( - "github.com/adyen/adyen-go-api-library/v8/src/webhook" + "github.com/adyen/adyen-go-api-library/v9/src/webhook" ) msg, err := webhook.HandleRequest(`{"live": "false", "notificationItems": []}`) @@ -172,9 +172,9 @@ msg, err := webhook.HandleRequest(`{"live": "false", "notificationItems": []}`) ```go import ( - "github.com/adyen/adyen-go-api-library/v8/src/common" - "github.com/adyen/adyen-go-api-library/v8/src/checkout" - "github.com/adyen/adyen-go-api-library/v8/src/adyen" + "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/checkout" + "github.com/adyen/adyen-go-api-library/v9/src/adyen" ) client := adyen.NewClient(&common.Config{ diff --git a/go.mod b/go.mod index c79ea7dc7..de4fc5169 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/adyen/adyen-go-api-library/v8 +module github.com/adyen/adyen-go-api-library/v9 go 1.13 diff --git a/main.go b/main.go index 6a50489f9..623c1a181 100644 --- a/main.go +++ b/main.go @@ -9,8 +9,8 @@ package main import ( "fmt" - "github.com/adyen/adyen-go-api-library/v8/src/adyen" - "github.com/adyen/adyen-go-api-library/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/adyen" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) func main() { diff --git a/main_test.go b/main_test.go index a179f5130..dd8f98398 100644 --- a/main_test.go +++ b/main_test.go @@ -5,9 +5,9 @@ import ( "strings" "testing" - "github.com/adyen/adyen-go-api-library/v8/src/adyen" - "github.com/adyen/adyen-go-api-library/v8/src/checkout" - "github.com/adyen/adyen-go-api-library/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/adyen" + "github.com/adyen/adyen-go-api-library/v9/src/checkout" + "github.com/adyen/adyen-go-api-library/v9/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 466101c94..238cc4095 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 64055b5f7..c020e4fd2 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 7a4432b63..8e3f85692 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 7e155eeaf..e186b6c83 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4f06b1f4b..8e0da2639 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 303ca561c..a2822ebd5 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8ecdaf442..9e7e90f71 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b4e124ff6..52e76b796 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 c76f14126..d5de9c900 100644 --- a/src/adyen/api.go +++ b/src/adyen/api.go @@ -10,26 +10,26 @@ import ( "fmt" "net/http" - "github.com/adyen/adyen-go-api-library/v8/src/dataprotection" - - "github.com/adyen/adyen-go-api-library/v8/src/balancecontrol" - "github.com/adyen/adyen-go-api-library/v8/src/balanceplatform" - "github.com/adyen/adyen-go-api-library/v8/src/binlookup" - "github.com/adyen/adyen-go-api-library/v8/src/checkout" - "github.com/adyen/adyen-go-api-library/v8/src/common" - "github.com/adyen/adyen-go-api-library/v8/src/disputes" - "github.com/adyen/adyen-go-api-library/v8/src/legalentity" - "github.com/adyen/adyen-go-api-library/v8/src/management" - "github.com/adyen/adyen-go-api-library/v8/src/payments" - "github.com/adyen/adyen-go-api-library/v8/src/payout" - "github.com/adyen/adyen-go-api-library/v8/src/platformsaccount" - "github.com/adyen/adyen-go-api-library/v8/src/platformsfund" - "github.com/adyen/adyen-go-api-library/v8/src/platformshostedonboardingpage" - "github.com/adyen/adyen-go-api-library/v8/src/platformsnotificationconfiguration" - "github.com/adyen/adyen-go-api-library/v8/src/posterminalmanagement" - "github.com/adyen/adyen-go-api-library/v8/src/recurring" - "github.com/adyen/adyen-go-api-library/v8/src/storedvalue" - "github.com/adyen/adyen-go-api-library/v8/src/transfers" + "github.com/adyen/adyen-go-api-library/v9/src/dataprotection" + + "github.com/adyen/adyen-go-api-library/v9/src/balancecontrol" + "github.com/adyen/adyen-go-api-library/v9/src/balanceplatform" + "github.com/adyen/adyen-go-api-library/v9/src/binlookup" + "github.com/adyen/adyen-go-api-library/v9/src/checkout" + "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/disputes" + "github.com/adyen/adyen-go-api-library/v9/src/legalentity" + "github.com/adyen/adyen-go-api-library/v9/src/management" + "github.com/adyen/adyen-go-api-library/v9/src/payments" + "github.com/adyen/adyen-go-api-library/v9/src/payout" + "github.com/adyen/adyen-go-api-library/v9/src/platformsaccount" + "github.com/adyen/adyen-go-api-library/v9/src/platformsfund" + "github.com/adyen/adyen-go-api-library/v9/src/platformshostedonboardingpage" + "github.com/adyen/adyen-go-api-library/v9/src/platformsnotificationconfiguration" + "github.com/adyen/adyen-go-api-library/v9/src/posterminalmanagement" + "github.com/adyen/adyen-go-api-library/v9/src/recurring" + "github.com/adyen/adyen-go-api-library/v9/src/storedvalue" + "github.com/adyen/adyen-go-api-library/v9/src/transfers" ) // Constants used for the client API diff --git a/src/adyen/api_test.go b/src/adyen/api_test.go index 29d874920..82c4fc652 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/v8/src/checkout" - "github.com/adyen/adyen-go-api-library/v8/src/common" - "github.com/adyen/adyen-go-api-library/v8/src/recurring" + "github.com/adyen/adyen-go-api-library/v9/src/checkout" + "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 dfe11cac9..6c41dc98e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // GeneralApi service diff --git a/src/balancecontrol/model_amount.go b/src/balancecontrol/model_amount.go index e82fcc970..43ecc75f8 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 fbd86c8f3..a7aef37b7 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 74c4cb7e1..0c14d8568 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 1ed21e95a..7e8433c74 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // AccountHoldersApi service diff --git a/src/balanceplatform/api_balance_accounts.go b/src/balanceplatform/api_balance_accounts.go index d1c665ea3..be519aa51 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // BalanceAccountsApi service diff --git a/src/balanceplatform/api_bank_account_validation.go b/src/balanceplatform/api_bank_account_validation.go index 60dc68a92..7dbc7179e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // BankAccountValidationApi service diff --git a/src/balanceplatform/api_card_orders.go b/src/balanceplatform/api_card_orders.go index f28efc952..86ea114bb 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // CardOrdersApi service diff --git a/src/balanceplatform/api_grant_accounts.go b/src/balanceplatform/api_grant_accounts.go index f1673a092..714f66970 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // GrantAccountsApi service diff --git a/src/balanceplatform/api_grant_offers.go b/src/balanceplatform/api_grant_offers.go index 7ef6c3142..9275f38cc 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // GrantOffersApi service diff --git a/src/balanceplatform/api_network_tokens.go b/src/balanceplatform/api_network_tokens.go index cd0062d0b..107793c05 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // NetworkTokensApi service diff --git a/src/balanceplatform/api_payment_instrument_groups.go b/src/balanceplatform/api_payment_instrument_groups.go index 45f8fe373..b7a10c21c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // PaymentInstrumentGroupsApi service diff --git a/src/balanceplatform/api_payment_instruments.go b/src/balanceplatform/api_payment_instruments.go index 22f04a2df..ae67d46c0 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // PaymentInstrumentsApi service diff --git a/src/balanceplatform/api_pin_functionality.go b/src/balanceplatform/api_pin_functionality.go index 3d09fd643..901aa9e5d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // PINFunctionalityApi service diff --git a/src/balanceplatform/api_platform.go b/src/balanceplatform/api_platform.go index 3dab7f7b1..d0a36e6c3 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // PlatformApi service diff --git a/src/balanceplatform/api_transaction_rules.go b/src/balanceplatform/api_transaction_rules.go index 27c676d54..b1314ae25 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // TransactionRulesApi service diff --git a/src/balanceplatform/api_transfer_routes.go b/src/balanceplatform/api_transfer_routes.go index 505f739c5..4e94bc1be 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // TransferRoutesApi service diff --git a/src/balanceplatform/client.go b/src/balanceplatform/client.go index c37e80f6b..3210eabd7 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 44a200ffe..7d097c207 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0c8836cd7..1cc74a099 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3d942041a..c5ebffcc4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8d7f3b5d3..286e668b9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 873c57024..e9bfd9f11 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a50e96203..4dab2f72c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3a8646460..88927cc61 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b42b67ddf..cac4b7514 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4d0d511cb..b941b2f0b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 bcaee9978..c836d4027 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 23ec876cf..77ee5d5c6 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 06c099f16..f6dab6eec 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 436d7b863..7ae8ce09e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 589aa765c..ae3e6535b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3c6453366..01790dda5 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 441ce0b3f..50590680d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e68ba81cb..367d98c2c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 136322d03..d9d174a23 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4b54d580e..df22855c6 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3de17a527..684cf024c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 41a3e744c..7d91c69c9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the BankAccount 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 77e73bbf7..54457e1f5 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b7eb30ae2..09088bcb4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 99cab83f2..7a0384169 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b32216178..209dbce01 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 746e1058d..39ca4c45a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3207b9fce..b87add562 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5186916a0..28b5b1676 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 7129c8187..b9c371612 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e1db2b275..0441831de 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 1ea0d5e69..467bf98b9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 87ddbcd5d..304bd9250 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 bb1bb59db..0615e811e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 faf913d85..df260bd38 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 dedae3f82..997078193 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9777de816..6a21dbed4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 63aec6a73..03a2f092d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 865958012..5383869cb 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6c790498c..5cccd4148 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9a19fe02b..a8a814880 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ac114dc34..ed82d3393 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 7066d4ccb..d45dd1ea5 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d1d386cf6..9508a7637 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8a65eafa2..4be7fd931 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5180e67e0..1d360a612 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 57fbc2a00..4986ea5c6 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 80b3eac44..2acab878d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b92138385..1195b3e0f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the DayOfWeekRestriction 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 559831ea8..05a4e08da 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e2d7248d7..5b6db15e6 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the DeliveryContact 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 54fb2430f..786c6b609 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 00f0a851b..6d1822d21 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0581a87b5..4873d6b86 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d4082a2ba..5996d52cb 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ea8b99d04..6f510dce7 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9f9510c90..cc1608114 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 069cc1fd7..004dd994b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0986aa04b..f736fd2f9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3daa40e9a..b9994d20c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 1e7c04423..75704de78 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f641ea59a..1273e174f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 46416cdf1..c9be5874a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d59ee7d48..5b3d5e3a5 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the HKLocalAccountIdentification 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 c9142fb1e..81f8ce7da 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f0acbc716..5650a26e2 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0f6878014..47a5547fd 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 630f1a821..08264f13e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 cbb9997cc..f9c0efab3 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 437791d92..141c212ac 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the JSONPath 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 65fa21b4e..40c335981 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ab04653e0..d3125c017 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the MatchingTransactionsRestriction 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 2e84f9d2b..bc26b7b8b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4e5d82c36..f3a0f049d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 59c0f075b..b669f9202 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 66d35c3b0..f4766965f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 00770deda..bca236fc1 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 62cc52cfc..12e9300a2 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b588f021e..09d395da4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 49f79b3d4..c44bdf3ff 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0017e8726..e4f8d32c5 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 74f18b328..04b79f0e4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ed65ece9a..3b1c4c5e6 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 dfe281c8a..afa0a7afe 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 94922d293..e45779771 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4885a7641..c4df5216d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6820a69f7..f19f664d0 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 2e8e1cd91..97e72ec93 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 1556d38bf..a1f4c86af 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8d00cf82e..52265c992 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 2205a2973..d8bea85be 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 c262e3731..4cb6690f9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the PaymentInstrumentRevealInfo 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 57f3d73a2..995a8770e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 2770e1b00..9eaf23c4f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8da029e8d..04e79cfe3 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5c109494c..28053f726 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 bbb6375fc..078e77358 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 7851f5732..8852ce83d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e536afeea..ec1d99eb1 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 64bead516..670653eca 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 123456fb0..16c08da24 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the PublicKeyResponse 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 766e146a4..38e3a8682 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5d3fed382..c1a411ee8 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0cc40c2ef..d4f6ca8bb 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e670cc549..9883a0333 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4b4f324dc..ecb313fbc 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 03f8639c6..168717754 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the RevealPinResponse 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 8eb827d45..0c0aefa89 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 c1f45c653..6d577ac43 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b281ca854..f62498330 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the SELocalAccountIdentification 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 2e2c93e7b..cd21c3839 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0262bc040..8e8cd3a03 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 256a531d7..b5402e485 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 439d19a30..a5043c4c1 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 530a3fe92..104c4b0ff 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ee82725bb..afc386530 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 096c3d26d..b6d020d1c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 afdbe6c57..951e206b3 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 52d221ddb..97cf91082 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9d37299d9..b5346066a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 40426d07d..fe1e42078 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b0b09402f..e16d386a5 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b50bd9cc9..131165e57 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0e037fdb4..24346c073 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b6a3de0e8..210adb572 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 72e718a66..88378fa09 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0265c8d45..dbf0f24d8 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 2f6c76195..fc69b94e5 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 16bca6daf..40f951dbb 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ce31541eb..dbcdd55e9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9f17d1caa..128e40640 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 37ab96062..6cc4e2503 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 23f34ed9f..b2ccb5e0d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 876b67f04..7cad8aa39 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 aa1cba2fb..eddb549a0 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4417c676e..b2cce84c4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 09240b030..32e8c4ed1 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 1d494229e..8eedc4cd9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // GeneralApi service diff --git a/src/binlookup/model_amount.go b/src/binlookup/model_amount.go index fa394aa9f..bd21b8578 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6ea856806..fbd27bfc7 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 2c36afb82..585a2b139 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 794b8f481..bef436088 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a7847a2c3..734ee7f51 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 67ba61cf4..6368671c6 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3edc29169..14f4c6504 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 170fac4a4..08d373d99 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 dccf2a73c..a69358717 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 db1310378..7913e623d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a41ec8171..8f91276ca 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 815b787f8..2ec6da9a2 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 01d24f411..3b3a53a2c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 2121d5974..b3371eeaf 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // ClassicCheckoutSDKApi service diff --git a/src/checkout/api_donations.go b/src/checkout/api_donations.go index 368f248c8..2b4b7f1ed 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // DonationsApi service diff --git a/src/checkout/api_modifications.go b/src/checkout/api_modifications.go index 0ba8623b1..3b6968402 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // ModificationsApi service diff --git a/src/checkout/api_orders.go b/src/checkout/api_orders.go index 5c2cf9ead..27edce80e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // OrdersApi service diff --git a/src/checkout/api_payment_links.go b/src/checkout/api_payment_links.go index e3a75537b..f750737b0 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // PaymentLinksApi service diff --git a/src/checkout/api_payments.go b/src/checkout/api_payments.go index 27162910a..ef3e135ef 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // PaymentsApi service diff --git a/src/checkout/api_recurring.go b/src/checkout/api_recurring.go index 56df4ec1c..5c9aa8e96 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // RecurringApi service diff --git a/src/checkout/api_utility.go b/src/checkout/api_utility.go index 4cd036b82..1c6aad9c3 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // UtilityApi service diff --git a/src/checkout/client.go b/src/checkout/client.go index 3552f5796..5254bfad5 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 bb6a6052a..e5432b4a2 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f46063160..80069ae2c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 975102435..881dbd208 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f8bce927b..1be9977c2 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 924ae2619..938fe3518 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 373067011..6a977468a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5394abc2d..fd00b30e1 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 c1e7a7883..de2e50e9a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 1f55813d2..e8ec42b7d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0969e35a2..c43546cf1 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 7c4575ce6..274ddd83c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 22017a538..94843f85a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 123f549e2..efcf82c9b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 05a7c7315..35df6e80e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a7ef7a042..0e5441f4e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 059bece54..4992ec0b3 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 bb80d7255..06f6243ab 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b7d4a79f4..bb993bd86 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 33d8e7c42..62092a216 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d07076182..26bea0c44 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 35c24c009..bd8943d11 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 14259071d..0846f2292 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the Amount 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 6a984cae4..55fe006ec 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 560b38cae..ac5752aad 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 c2de915fc..31546fbce 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5ba08d959..b991d0a8c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5e7e07f7b..44ffc4ac8 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f02577148..ba3f1a6c4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b893f3d09..fe7edafe2 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 7e9c093b8..08dc4286e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b6b5f0bee..3d0c11fc5 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8d9ce060d..7eaa69060 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 bba0709b7..6169744de 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 166e1a548..a8191e22d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5cd2a50ed..7ccb92828 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a811cb698..74662d880 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 24aac3515..5cf71ca37 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ec9e0298e..5e5f9513a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 54df21c08..ad331f27e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f11071626..697e98a0b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f1745867a..1b7e3e4af 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 560575e6d..7e3eb9434 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8d248e07d..3692c0f2b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 90ddf4061..207846522 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 54f8636d3..b002e0489 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 35df8a226..09c63bc62 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the CardDonations 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 144a9af98..18c46de57 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 122dc23a0..bb8888c47 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8735f8a54..011f6f79e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 eed84a01b..b12c847d5 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a46d4648a..ed6a40573 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 fde44f829..386029719 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 eabc44dbf..676540f71 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0bfb29342..af114b83a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 839399721..113ab406c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the CheckoutSessionInstallmentOption 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 ed0415d88..d6ad68472 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3e1fb8b20..8dccd9f70 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 43480e54d..a6cfcbb76 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3e1f6691b..11842f211 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5490bc72c..7615ccde2 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0fe52ca6a..1582bc95f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 946e945b5..9de95de13 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4c80d262a..c827f27be 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 23db715b2..ca7002e55 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9135eeb77..b823badbe 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the DeliveryAddress 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 96f8327ba..3043ea3ee 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 cb376b7c6..dfdf5ec50 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 db91456f6..a589e85d3 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the DokuDetails 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 26b12c573..5a7cafaaa 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 228939931..b639d081d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f5b7f64fc..c12ae7f9a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4defe9c83..ad8e66dff 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 da8f5a216..47fa28247 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 c36e39532..63804ded9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 058744ed9..ff14d6d96 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8173e315d..bea1a2525 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a4dc632f1..017a0f241 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 68c5a7dad..4f277082e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d90463c85..fd7aa81a5 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 99223f756..f88488095 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 666451d09..abbbedc72 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e1fd55973..13bfd924f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6b23b815c..6783c3e7b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ea4840387..dd6c3dcab 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 42f9937d6..82bac6cbb 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8b821f8bc..3b2e50216 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 203b917a3..db84e5b07 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 bc5b26fd3..6d191964e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f59190a17..49d066866 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8ad933a9e..8429f3e79 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 2eca14354..35d1e340d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ab8a26ac7..7ce2859b4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9fc680a1e..b8818def3 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d9e14e9e4..0efd882e6 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 28b1335bf..3591f7b02 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0aea34f2d..238c7bfcd 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 bbdf301ce..3ae071a8c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 87a75fa82..6d4efa44e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6bb10743e..86c0b73cc 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d168dd2b7..2244f9962 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a21ad59ba..a716e8846 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 1dc9c1791..ffda10f59 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8381fb7d8..148ef14b4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the OpenInvoiceDetails 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 5b6de3eba..668428c45 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5e749a879..ff34cb021 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d942fb4a8..db2f9c972 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 de6037c48..db986f548 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 008efec4b..67bf05ddc 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8806a2dd7..d8ee16a47 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 97f7579e0..698f2f349 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5f4e1d121..31764ff6e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 56e017e33..570a27aaf 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b6809bdba..a1d285c3f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b8d0f5b0c..6e82c567c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 61cb5f947..021a91d8e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 bae4ba8e4..b8aa1059f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 bdb91f6cd..ca90f129c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 fc570e9c0..d648ab109 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8264cbfc7..a00de6ed5 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 421f84631..63dc67763 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 af7eb66b7..fe66b5ae9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 52477c3be..8b7716581 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the PaymentMethodIssuer 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 07ff9d824..07d3b7360 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 03703b634..29fb8ab66 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 c503e3f02..1e87e4dc2 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3973f14b8..d2e789dc5 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 dbbf383a6..88603f53a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 445269d07..7f79514d0 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a2a3c1acf..a6b67ada6 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6ac1db3ed..630d605b2 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4b3f9aca2..48b9e0cc5 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9f54aabb0..da6964edd 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 541bb59f2..4d8ed91d8 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 92163443a..daf3abe93 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the PaymentVerificationResponse type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_phone.go b/src/checkout/model_phone.go index e4c6782a6..d65a6541a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0ce5ec062..9ae6a60b5 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8c9e5e8c7..7ff08b6f6 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 69f39fbc5..bd1991aed 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 1f6eb92b4..97f5b08c8 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 bacbd5342..19418c3a1 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 bd146627c..985ca5c70 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5c3746eed..8feac7a3a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 62215a14e..7cd61e833 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9793cf5e9..ce91c44fb 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a75ae1701..179d4df31 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 aac040f99..4aca22389 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 aede45fa8..c2367bf31 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 fb44dfb92..178e756a3 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 61c1cc867..35058b181 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 c754d1987..45f91b637 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 029f56d9f..65a228f82 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0e53e9a62..504a3cfdf 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the SDKEphemPubKey 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 e6ca475e0..3a5a037fa 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 81e78e0ee..67fa36502 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 95fb00855..4996359f2 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e5eae54f8..d03322d80 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8bba71d5f..9468f44a8 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 c5eac1b8e..56e690737 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 94e64de6a..793f3a259 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e1dbba771..0bf664a59 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6e69a66b7..2f5410601 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6f2931a78..d1af4dedb 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ed45cb4c6..1ebfc5c59 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 dc2b705c8..a82a8b2b3 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 035c87a80..db3eddeea 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the StoredPaymentMethodDetails 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 12a05ebe3..edd921041 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 af87aac9b..863fc1008 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ce4447589..ef6806399 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4caff73d8..35ef4452b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the SubMerchantInfo 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 5deb62498..6040bccde 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3e7e8b536..5c3facb6e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4bb6a1af0..ddb1c4c52 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e9619bd83..062970467 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6a50a401b..50d5384d9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 33eff0451..cb6648ac2 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a677adf6c..8326be923 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9a41f8466..fdde30964 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a23828083..cd2a93dfd 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 c3d9e4090..b134dd20e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4f0cd2c65..e6d266ea4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 496906050..80c9317ac 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 c042d560f..b1da9124e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 c5d084d7e..94eb4837e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ea57a0d39..f4f1bef04 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 c2752e88a..845f2f99d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f59de52a4..b5a0a83ca 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 2b455de2e..353bb7d39 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d711518aa..a9dfe16cc 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 34f36ef24..137130043 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 fae623b03..7a194e29b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 7ed1b2479..374f79953 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 2bc938b4b..9bbfae556 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 36842d822..dd8cf1610 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9b69fcb3a..8c4aae5b1 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 089f65c67..73882e6f1 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 359a63e98..64397cada 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 fb22f8fed..a679cd2cc 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3d4b92e9b..c1b6f4fbf 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6053b7802..9ac1f218c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9abdee48f..02da67507 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the BalancePlatformNotificationResponse 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 cd0d6b7ee..bdc1fdaf7 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8d97f8b62..7e43ac41c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 57f3cc544..ef3e8ca0f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ea448a900..b28a3a314 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 51f3130a6..44e7795d8 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 2d06a9aec..8d83bd42d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 24ec8ce42..bb7ac364e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9d7d25192..a1c822041 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b6724bf37..c6ee3ac0a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d83e50f37..56fd177d8 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8754501bf..b32b05694 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4353248ab..efb401696 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 bf6dff1f6..01deeaeff 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the CronSweepSchedule type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_expiry.go b/src/configurationwebhook/model_expiry.go index 549f0bfc0..980228884 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0181a87b0..5d3f3396d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6f1fe30f8..b6f5f6938 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ca69b8f9f..87578a935 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8b63495af..f6eab04c4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6de9c3550..2d4b40f4d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 682b2c0c0..ab61981e1 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8c0432699..2d979ef43 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ffd78ad93..1135ce6f3 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 bc883da25..0a5a3bc7b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 7385015f4..5182991b8 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6c22dc85c..f353da8dd 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9ebbe4b5e..ae8a57e3d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a54dc8163..ccc3db029 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0a2ee57eb..59bfaf5c5 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 14e7f2cad..303bfd315 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6cb37c491..300714fd5 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 025d95528..bb82bbce8 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 7828a06b9..ac8822010 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the SweepSchedule 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 bfd11a96b..db7f56a93 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ae97baea1..419005e50 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4da36a2c6..55d2e46cb 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b068cb9cb..1a53e2213 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 2d80f17f9..84e68b9d9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // GeneralApi service diff --git a/src/dataprotection/model_service_error.go b/src/dataprotection/model_service_error.go index cbfc0e958..f9f67d435 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 49f11f2fa..8b84c06ef 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 113cfdc45..a59c68c39 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 c687e30ff..978789038 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // GeneralApi service diff --git a/src/disputes/model_accept_dispute_request.go b/src/disputes/model_accept_dispute_request.go index 4b4f56cb9..864a67f84 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 7ab497f8d..4f28593c4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 373281cf2..2a9205359 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e2f0afac4..a9b7ae6d9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 78aa87f55..78ae75dcc 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ce0ac22d9..a3d84a2bb 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8b9b9ccab..8be6f7b6b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 471f86162..c32ed69f9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f88033988..163460f06 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0b2557b9c..870ad2587 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 1cfcd42d2..fdd8d1c78 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b1f7f07c0..583bca36c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 59e26dd72..205934ede 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8e85438da..db29b67f9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ab7449578..4cf61f81e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 93e5c44e5..2bbde59fb 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/v8/src/webhook" + "github.com/adyen/adyen-go-api-library/v9/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 709c2584c..6bb59221d 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/v8/src/webhook" + "github.com/adyen/adyen-go-api-library/v9/src/webhook" "github.com/stretchr/testify/assert" ) diff --git a/src/legalentity/api_business_lines.go b/src/legalentity/api_business_lines.go index f5241fa80..babd19f86 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // BusinessLinesApi service diff --git a/src/legalentity/api_documents.go b/src/legalentity/api_documents.go index 13158172f..5ad8fede2 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // DocumentsApi service diff --git a/src/legalentity/api_hosted_onboarding.go b/src/legalentity/api_hosted_onboarding.go index 382f179e6..5b71baf1f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // HostedOnboardingApi service diff --git a/src/legalentity/api_legal_entities.go b/src/legalentity/api_legal_entities.go index 09c2a4cdf..5c12ed1a1 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // LegalEntitiesApi service diff --git a/src/legalentity/api_pci_questionnaires.go b/src/legalentity/api_pci_questionnaires.go index 39449f275..c98779815 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // PCIQuestionnairesApi service diff --git a/src/legalentity/api_terms_of_service.go b/src/legalentity/api_terms_of_service.go index 914359de3..5591fc496 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // TermsOfServiceApi service diff --git a/src/legalentity/api_transfer_instruments.go b/src/legalentity/api_transfer_instruments.go index 81376a6ab..762a94335 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // TransferInstrumentsApi service diff --git a/src/legalentity/client.go b/src/legalentity/client.go index 459ddcd2d..3578df7c1 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 eb7584e99..2345a4a55 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8f8245435..1f5f15227 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f7ed77205..69af2f40f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 2ed2a6684..aaaf06358 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ab19d2045..57b112211 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 c89d227eb..ba7d8e245 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 494b64386..1e6abd1c3 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 923d097dd..d64b2f70d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9516dd21a..09c67b3ba 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6ccf0f56a..484cfe7e9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e938823d7..5e3d1a4f1 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 fb4b5f487..bb452393a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9d7fbc185..d291374d8 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 087c30e2b..bfbadd41c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ededf8b8c..bf7ef6bab 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 af252d49b..aeee4430c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5ea4935fe..e3bbc4cdf 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 964f41ee7..3f5bae2d5 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 cd0aed56f..18aca9237 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6d0dd21e7..3f7d4da36 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 35df9a1ba..79e0a41ec 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 cade03b85..dc7893e56 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d1c45f0e9..2dd3be651 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 68570e3c1..d6c13f16c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 96707d96a..561c86dbf 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d285bda17..cbee1b469 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 2ce0ced2f..d95365f1a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b8f26c439..53a0ba9ee 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 07dcc7825..0f08e31e1 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 10eee4f3b..86b6d8fc8 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e354fef16..0ebfc1380 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a283a7cd2..a48c5a6db 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 938297761..1e4d93507 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 af026b211..1bc244d2d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f685e3908..549067efd 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5d4b944f0..7e0f7a216 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 c5d243a39..1ec2f2fbc 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b94132f77..55cd3cbca 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 928ffdd01..240a55313 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d17762667..4baae0bb9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 92e0c15c5..ebb9d81ce 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9843c0329..f0c8a945b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 61acc4803..eaf9e7438 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f1c69d1a1..bd6ebcc29 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 43b0c0e15..b4ab4ab1b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5d32fe11a..570d5c18d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 28da05b01..0fa3ed213 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9ba70e669..826e650a8 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e0cecf57b..ea7be44e4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the OnboardingLinkInfo 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 f273940d6..4ba7afd71 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 fb578a8c4..15f9d00cf 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b01b8a234..c6c031f60 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8a9276082..84402b7f4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 199037c5e..3bdf57420 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f000b633b..6299cb562 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 c7f43b0b3..764a1adac 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 bd8eeae77..77c45b194 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 18e455ea0..4ffd7196e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 bb07a5ea4..2cb949c9a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 111bd87c5..a20507f9d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f8d470855..0971b34f8 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 27e213309..80c63195c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 2e8525552..c9a61f84f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f3bc71f32..3234fc36e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3fabffc7b..df21b900e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 95246967a..9b3e24e85 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 01c8eca47..a21af2145 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6ba64371a..f0fedb4bc 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5d699144b..b75f9537e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 96b78cf26..8ca3e96b3 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b0548dcc2..3681443d6 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 289dba8dd..a3af0a9e4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ffc3ad79c..6aae0ec0b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ed8a3ece5..2f35a15e5 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3c1ce3784..8e398e9bf 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9b07cb1c4..4b887f47d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b58c2bca2..8b773df0d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0a065aa43..461437f7f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4395d0be9..480e8cbe4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ec6f46184..62b84c00d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 06732bd36..c24cc6627 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4ccb4a0ea..22a7882df 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 2174d83f1..280302e69 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b8daa34a4..dff97f1b0 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // AccountCompanyLevelApi service diff --git a/src/management/api_account_merchant_level.go b/src/management/api_account_merchant_level.go index 207d9a7cf..52f4b66c3 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // AccountMerchantLevelApi service diff --git a/src/management/api_account_store_level.go b/src/management/api_account_store_level.go index 81b8fb769..21fd688b1 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 84cbd7534..6b7ce09d8 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a0baae34b..179b7ac71 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 33ea66f00..f2304a6dd 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9dee75642..f68736d1f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 131a71eb5..e83d59c74 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e179e5fc6..c52a6a659 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5bd8ca341..ed212bc43 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d15e203b9..a2f29e0c7 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 fcaf77718..7546a7724 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // ClientKeyMerchantLevelApi service diff --git a/src/management/api_my_api_credential.go b/src/management/api_my_api_credential.go index bd1a9ed7c..b96f54bf5 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d15383062..9aff04340 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4c32aecdf..6c0edd7ff 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 937e4ab9a..0c7cc60d8 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d2220527a..9f5a02ac9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 450e61166..1b91f238a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 769669734..8776dd02e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 663396a0e..66eccedca 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 69e06047e..a8d98ab78 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 dfc194651..23b41ac35 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 146aed423..6a196f657 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 c0e8b2506..6d8f10fc2 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // TerminalSettingsTerminalLevelApi service diff --git a/src/management/api_terminals_terminal_level.go b/src/management/api_terminals_terminal_level.go index 1c5703f49..1d4fbd3c7 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // TerminalsTerminalLevelApi service diff --git a/src/management/api_users_company_level.go b/src/management/api_users_company_level.go index bf7524b0c..1107a74a2 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // UsersCompanyLevelApi service diff --git a/src/management/api_users_merchant_level.go b/src/management/api_users_merchant_level.go index efc79a915..84e3d2d67 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // UsersMerchantLevelApi service diff --git a/src/management/api_webhooks_company_level.go b/src/management/api_webhooks_company_level.go index 4463707b2..fbd4141d2 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // WebhooksCompanyLevelApi service diff --git a/src/management/api_webhooks_merchant_level.go b/src/management/api_webhooks_merchant_level.go index adcf3dff5..f4a5913d4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // WebhooksMerchantLevelApi service diff --git a/src/management/client.go b/src/management/client.go index f2b026505..db45a2a56 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 811392cce..19df6c110 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 2e215155f..c276ac396 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 91b44797d..35f3fb5d8 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d968763f2..32cfa25fd 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e6fcee01a..5d1889d3b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4fc9fe433..3e4f68dde 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 c839eca1c..46d011c3d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 bc5fd4b36..1ba30a13e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 810d94bcd..6cc60931a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 85f92e4b1..562b1f40b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the AndroidApp 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 4cfc25f81..558c07c07 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 cff68137e..8015de461 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 48d921831..4b21ee093 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 44fda19a8..f6c7d6a88 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 cad6c5d94..27af7661b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 562b76467..280e3a542 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 879750f2f..c71a9311c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 196b1a16c..2809d0f20 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e69812891..9279c629f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 507fb5e55..0d5ce3eed 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 420656775..6dba91325 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 cc9d7fe39..82e1572e9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f85c595d1..74007ea17 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a2d6f8a57..fa97df7f4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 08051493f..d0f61b81d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e2506be7e..befb2cbca 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 11fd41180..a68fcec64 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6afb54a33..91c46222c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 c443e9b79..4b1099a1e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 bb161b1fa..660a65145 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 57f15d713..31a69df61 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 82018384a..2521f8632 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5e16fc3bc..06663d208 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 029484271..29566515d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e33f905df..f576fd962 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8f9068c64..4ed785a71 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 1c778bb0b..2afca97d7 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9861c15dd..1c2feea87 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 cf5c0db7d..34517f27f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6f0e4706a..9b7d6b47c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a726be7af..c451a5e92 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 90c5207fb..4f830b54d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0ef628695..3566f38bc 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 2dd47039c..efc045176 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3ece89bec..8d1cf820f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 efaf16515..a899be562 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 586d90515..ee6fd7ebb 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d7bfef437..70340782b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 35982aae8..79c91cc04 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 469010c97..7ad3990b1 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 7f28ae0b1..88e733569 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8e8903b19..b2c633716 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d8966a4c9..4602ab032 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ddcc67ef7..612fa0e85 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 43df24af0..4ec08b8e4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 16a174e30..0a9f5ec7c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 560af349d..ee14c10ca 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 2d5b626a9..5e3c3de96 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9082246ca..d3a0d305c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 283bc37f1..548be8383 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 568646a6b..97024befa 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 cc697e4d9..ae3e6dca3 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 118a64f02..372872cf1 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9d576c691..7cf95d496 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 75d4ebed0..bb6494920 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5fc757fc9..5c9aa7b8f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f35d84a54..f569eb3d7 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8cfac6aca..31d35a74c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a18b2d440..fbd9b998a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f0383a94f..f68e03af4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 58c4b1c4e..9e33e11e6 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6b4a5c177..c6936fce6 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 7af9b9368..a39ba5baf 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 84a683e69..1cba3cc6f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 590a84833..be02dac01 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9e0f2fd4c..cd6b17983 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 df9598790..6979abb4d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 60b59da67..00754fa35 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 daacaa18e..c0d7fe0e1 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a69f0431b..ffe8be270 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 29a159c12..c30d442ef 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 773c69842..43ad85983 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6713f29c9..f8061fd79 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 2c121263f..1fdcd1ae0 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 914062890..e8bfccf0f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 74c5e6172..27e6b886f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9ab5cd65c..62c5f8f07 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0467a9594..f48c6eb6e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 da84a22c9..a5613b3b5 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e2ed58cd0..2d64a64e2 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e487f6a4b..900e82465 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 44b701f76..aee92fd70 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e53852838..64f05447f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 475685ada..61c96ef55 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6dfa190f6..e55965c63 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ee4024d56..534089c6b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5d4c5b8e6..f2401410f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e1289956b..afbda75be 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 219631c4d..e0805c468 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d40dce9fa..a9b7ccb04 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 7b52731c9..4ad66c245 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 46db05efc..17c6e06e2 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 183598b2e..f9a626a84 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 15ae48853..8b906b093 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 fb5f8c403..22984d294 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f232ade81..2519fd95f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d37a902cb..9bbfb682b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3ce0218ef..a103ff4c4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 07f7986f7..f938c3f07 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the ReleaseUpdateDetails 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 7bcd76d59..3246398ff 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 c509ba7c2..99666d60c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 846822ffd..3c87f29aa 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 157a8014e..bcef7c549 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6dda6c775..9b33a1904 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ca8dd1ab2..d3b9686d0 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a8b8a60c9..6a78333be 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b6d8aaae3..e32689f59 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b80581a30..11a3d723b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 1b39ff815..6b4aadf67 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4d7e95cd9..5289c4988 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f60899512..059b21d76 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 c43f32bc9..08298da99 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a59ca01a1..fd3c7c83c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 fd6e4eb9c..01b5e7547 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the Store 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 3d625aa91..577204bb2 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f503b333c..77a32b2f0 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 961763a44..719fb89bd 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 727e5fb4c..9a022d9c0 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the StoreSplitConfiguration type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_surcharge.go b/src/management/model_surcharge.go index a4b626f4f..c491870db 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e137eb6f3..da4d70f1a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 1fdb161bf..4958520cb 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 126c42146..6a78ba883 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a9dfdb75c..eddb024d7 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b813eb28b..f20f25f31 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 abc6d88d2..e76e221ea 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6fbae4644..986069328 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ea0e71754..2bc4fccda 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9c58edf47..768f5ad7f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9ce9faf5a..65ac2b1b4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the TerminalConnectivityWifi 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 96e853780..41818afff 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 2ad2d5dca..34e5450f1 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3fad0b54a..dd1547133 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ee08bfa30..57d617996 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 708f8513a..14c2d8dbf 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 497c41418..f18eead2c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5f100ad38..c61531a1a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 c3012475a..0b1993950 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5f233efa4..957ea5e43 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 bf11ae95d..4157e847a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6068460df..f12488383 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3dbbe6da2..8d2abf7a4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3ef7c72f0..50a297b1d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 91e7405f6..dd71fb049 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the TestWebhookResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_timeouts.go b/src/management/model_timeouts.go index b22dda38d..406bfc7f5 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3c4454721..a46a97eea 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9ed16507b..ee92b4634 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3a7eb2568..4b6e1216d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4b9618310..0ae818c43 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 1fce08cd0..d264680ac 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5061cf1d7..06286bc9d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 127a220c3..adc846ae5 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f76117252..31864e58e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 44ead3891..bbf452b0b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 acc71bdaf..4dc56fcde 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 cdc5569da..f12369031 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 758a3ae53..bdf867295 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 65c8094d4..4a6ea9698 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4bde5ffb0..c9f83450d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d28fee236..9ce269315 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a14324368..c13f38db6 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5a95fdf23..64d082bd2 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 42eb0650e..47544290d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the UploadAndroidAppResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_url.go b/src/management/model_url.go index c93849f92..0386c9e31 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 1360f131f..04044b15f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f0d8d9938..fc0752c50 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the VippsInfo type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_webhook.go b/src/management/model_webhook.go index f7bd00049..e5276791e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 02ceb05c4..07996beb7 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b21faf977..8ea0e7bc1 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 eed20a08f..209ec32b1 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8c91b19e6..79a7fdfc4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 debf7048b..8277f06c0 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 367b69a7b..6955375bd 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 62674e1c7..37d8acbdc 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 793aa2ee9..8101ea203 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 533b3abf4..4bbd7e67b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f29093bfc..f2d44aa6a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b71a8814b..2d5351810 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 81e9c1143..24ce19342 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4b0a7c2c4..f24129570 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 42085f236..cdf30459b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0a744a5b9..89e625910 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 33e31db83..89ca8e77e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0ff529ba4..eb06fd528 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b3e671a30..eeeaab3db 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the RemediatingAction 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 ca9132cd1..89c4b4ff8 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e3aaf25ad..21bbc890a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 28a80439e..f69b4f868 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // GeneralApi service diff --git a/src/payments/api_modifications.go b/src/payments/api_modifications.go index dc9a977bd..d0c5c8c24 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // ModificationsApi service diff --git a/src/payments/api_payments.go b/src/payments/api_payments.go index ba2cce245..dd45994b6 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // PaymentsApi service diff --git a/src/payments/client.go b/src/payments/client.go index a50371720..80e9d765c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 286430e2d..980a36b73 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b6c9efb3b..faca27a3d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6beb5c46e..04d46dd08 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9d9ee676c..22698cc21 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ae3f5ee1b..a5eab23f4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 1cddcf880..453423ccb 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 879c31524..513a98c9f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6be62328c..3dda3df79 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 bf8add520..31dc34387 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 67b312b29..d32efb8f5 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0b256d1f4..aa93ba8b5 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6e3c5e3c4..3bae12b16 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4f8aec95b..17363af32 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 af2cffb35..a5f68f9bd 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 c18763ff7..75511d588 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f74369468..10e1329d8 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8532bece7..7339d0feb 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 504e446fe..1bc0f3827 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4e20de581..eae4e67b0 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ab579f25b..7e68726d8 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9c3a915a5..3ce402331 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 406dacb12..7a8a3520c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 dbb32f78d..535f34fc7 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b30ba1066..5bc0c4203 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 1d30d5924..b5bc97273 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 02d9d3112..c7c474325 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 7c49d8a19..5d6b496ac 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 222043179..1529f4c6b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f50d178d9..263edefd2 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 25e611122..a3daddaac 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e485d0e8b..f10f35c6d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 bd5572a94..5f9d56fb8 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5499fcdfc..c5c5e2044 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9ead21d67..db4cd454b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d4fb0d1e9..e7be69816 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8edb21c47..58701656e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 88cfe0e4f..15dbdac7a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ec8ae2d05..003d30936 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d7494473d..31201b678 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 c924fc600..d2e6e2043 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a8f302602..6cc35cdfc 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a264f0b35..75eb8f56c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8b9c2f185..fa72532c7 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 68809f4d4..cd96662ed 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d487858d3..06b92fb2a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 97b3ed0ed..169dc6425 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 220e4df96..777cc00fe 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8cc660132..57aab31cf 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 22ed13853..3ff924075 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 cc4fb6160..681329375 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 af95849fb..443d0fdd3 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 90a09dd95..f5e41fcf7 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 77098553a..7f57da799 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e7c6b0be8..642fd0e36 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 2d11c04b4..fb0dbc6d5 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f908f1fd2..5fbe9fdc2 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 39187424a..1db313d45 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4ef59ae33..727710271 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 31b6e8617..fd1a99da3 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3094341fd..a2186486e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 15900407f..a167b83a1 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a0e1f8509..93cf4c490 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 7493113bf..20d7e3fbf 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 522433390..34904e3b7 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the SDKEphemPubKey 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 a93a7f371..3a8d05762 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3c875ca47..68a1d7421 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d1fa93acf..f1ce97990 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ae2fd262f..d54b8af27 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a8bceee0e..d7537199a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 1e03b43fe..1913e7545 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 7437bff14..6c1f8a688 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 7773de662..8ca2c6066 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 fd1f6e02b..f5b9331f0 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 af9e41568..cb569c3cb 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e52902fc4..86aa25566 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ce57133a7..0e9d6200b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d92a2e1dd..54e688e1c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 7d4f38b78..abc4ea45a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b3a8db278..d20a090d9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the VoidPendingRefundRequest type satisfies the MappedNullable interface at compile time diff --git a/src/payout/api_initialization.go b/src/payout/api_initialization.go index 51ae46e32..a16f5e15b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // InitializationApi service diff --git a/src/payout/api_instant_payouts.go b/src/payout/api_instant_payouts.go index 5994891d1..437d041a5 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // InstantPayoutsApi service diff --git a/src/payout/api_reviewing.go b/src/payout/api_reviewing.go index 5997e3017..08a6b7766 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // ReviewingApi service diff --git a/src/payout/client.go b/src/payout/client.go index 6935c66e0..597d7140f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9629f3d4a..50bc5c5f9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 dbbead9d3..757437d0b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0a801a298..87d986f2f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b4059e4b2..b72018ed4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3ea042cfa..e4952b54c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 850404f42..6d96e9807 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 df7232432..79f7389aa 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 c3d0f2d6c..a7fad8579 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 fb8b29f0e..7241ee4cc 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5cac51b6a..c4cbecc49 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 abb32fdb6..e3a9ddae6 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 16aae42cb..5095a2cf9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 99a350ee0..224857507 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b9b76c070..ce6a0970e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a827b6219..f9e5ec39d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 de740e253..f21e4464d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 7702ae1c1..3c22835e2 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 91b051b4d..23d89f60f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 60bd60bd8..0c7506d20 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0729fe60a..ee742d998 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 79dcd2b00..c602b7bf1 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ebef7775d..351a8e676 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 223f947e5..11900856f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e08547e87..01982c41f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3ccc70ed5..bda3a0e76 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 821e6880d..11d3f8344 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 13642e1c7..44d43f4e4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9f9fff63a..73cc9d4c3 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 eea3ff37d..e122ff9ad 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 c57bf3217..ae6cb230c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 789e1c264..cec4d2255 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // PlatformsAccount PlatformsAccount service @@ -24,8 +24,9 @@ type PlatformsAccount common.Service /* PostCheckAccountHolder Request to perform verification for an account holder. This endpoint allows to trigger the verification of the account holder earlier than it's required by the currently processed volume. - * @param request PerformVerificationRequest - reference of PerformVerificationRequest). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request PerformVerificationRequest - reference of PerformVerificationRequest). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return GenericResponse */ func (a PlatformsAccount) CheckAccountHolder(req *PerformVerificationRequest, ctxs ..._context.Context) (GenericResponse, *_nethttp.Response, error) { @@ -37,8 +38,9 @@ func (a PlatformsAccount) CheckAccountHolder(req *PerformVerificationRequest, ct /* PostCloseAccount Close an existing account under an account holder. This endpoint is used to close an existing account under an account holder. If an account is closed, it may not process transactions or have its funds paid out,and it may not be reopened. Any payments made to a closed account will be directed to the merchant's liable account. - * @param request CloseAccountRequest - reference of CloseAccountRequest). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request CloseAccountRequest - reference of CloseAccountRequest). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return CloseAccountResponse */ func (a PlatformsAccount) CloseAccount(req *CloseAccountRequest, ctxs ..._context.Context) (CloseAccountResponse, *_nethttp.Response, error) { @@ -50,8 +52,9 @@ func (a PlatformsAccount) CloseAccount(req *CloseAccountRequest, ctxs ..._contex /* PostCloseAccountHolder Close an existing account holder. This endpoint is used to close an existing account holder and its accounts. If an account holder is closed, it may not process transactions or pay out funds, and it may not be reopened. Any payments made to a closed account will be directed to the merchant's liable account. - * @param request CloseAccountHolderRequest - reference of CloseAccountHolderRequest). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request CloseAccountHolderRequest - reference of CloseAccountHolderRequest). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return CloseAccountHolderResponse */ func (a PlatformsAccount) CloseAccountHolder(req *CloseAccountHolderRequest, ctxs ..._context.Context) (CloseAccountHolderResponse, *_nethttp.Response, error) { @@ -63,8 +66,9 @@ func (a PlatformsAccount) CloseAccountHolder(req *CloseAccountHolderRequest, ctx /* PostCreateAccount Create a new account under an existing account holder. This endpoint is used to create an account under an existing account holder. An account holder may have multiple accounts. - * @param request CreateAccountRequest - reference of CreateAccountRequest). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request CreateAccountRequest - reference of CreateAccountRequest). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return CreateAccountResponse */ func (a PlatformsAccount) CreateAccount(req *CreateAccountRequest, ctxs ..._context.Context) (CreateAccountResponse, *_nethttp.Response, error) { @@ -76,8 +80,9 @@ func (a PlatformsAccount) CreateAccount(req *CreateAccountRequest, ctxs ..._cont /* PostCreateAccountHolder Create a new account holder. This endpoint is used to create an account holder. Each account holder represents a single sub-merchant, and each sub-merchant must be represented by an account holder. Depending on the legal entity type, different details are required to be provided in the call to this endpoint. - * @param request CreateAccountHolderRequest - reference of CreateAccountHolderRequest). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request CreateAccountHolderRequest - reference of CreateAccountHolderRequest). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return CreateAccountHolderResponse */ func (a PlatformsAccount) CreateAccountHolder(req *CreateAccountHolderRequest, ctxs ..._context.Context) (CreateAccountHolderResponse, *_nethttp.Response, error) { @@ -89,8 +94,9 @@ func (a PlatformsAccount) CreateAccountHolder(req *CreateAccountHolderRequest, c /* PostDeleteBankAccounts Delete bank accounts of an existing account holder. This endpoint is used to delete existing bank accounts from an account holder. For this, pass the `accountHolderCode` you got on the account holder creation, and one or more `bankAccountUUIDs` specifying bank accounts to delete. - * @param request DeleteBankAccountRequest - reference of DeleteBankAccountRequest). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request DeleteBankAccountRequest - reference of DeleteBankAccountRequest). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return GenericResponse */ func (a PlatformsAccount) DeleteBankAccounts(req *DeleteBankAccountRequest, ctxs ..._context.Context) (GenericResponse, *_nethttp.Response, error) { @@ -102,8 +108,9 @@ func (a PlatformsAccount) DeleteBankAccounts(req *DeleteBankAccountRequest, ctxs /* PostDeletePayoutMethods Delete payout methods of an existing account holder. This endpoint is used to delete existing payout method from an account holder. For this, pass the `accountHolderCode` you got on the account holder creation, and one or more `payoutMethodCodes` specifying payout methods to delete. - * @param request DeletePayoutMethodRequest - reference of DeletePayoutMethodRequest). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request DeletePayoutMethodRequest - reference of DeletePayoutMethodRequest). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return GenericResponse */ func (a PlatformsAccount) DeletePayoutMethods(req *DeletePayoutMethodRequest, ctxs ..._context.Context) (GenericResponse, *_nethttp.Response, error) { @@ -115,8 +122,9 @@ func (a PlatformsAccount) DeletePayoutMethods(req *DeletePayoutMethodRequest, ct /* PostDeleteShareholders Delete shareholders of an existing account holder. This endpoint is used to delete existing shareholders from an account holder. - * @param request DeleteShareholderRequest - reference of DeleteShareholderRequest). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request DeleteShareholderRequest - reference of DeleteShareholderRequest). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return GenericResponse */ func (a PlatformsAccount) DeleteShareholders(req *DeleteShareholderRequest, ctxs ..._context.Context) (GenericResponse, *_nethttp.Response, error) { @@ -128,8 +136,9 @@ func (a PlatformsAccount) DeleteShareholders(req *DeleteShareholderRequest, ctxs /* PostGetAccountHolder Retrieve the details of an account holder. This endpoint is used to retrieve the details of an account holder. - * @param request GetAccountHolderRequest - reference of GetAccountHolderRequest). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request GetAccountHolderRequest - reference of GetAccountHolderRequest). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return GetAccountHolderResponse */ func (a PlatformsAccount) GetAccountHolder(req *GetAccountHolderRequest, ctxs ..._context.Context) (GetAccountHolderResponse, *_nethttp.Response, error) { @@ -141,8 +150,9 @@ func (a PlatformsAccount) GetAccountHolder(req *GetAccountHolderRequest, ctxs .. /* PostGetUploadedDocuments Retrieve the uploaded documents of an existing account holder. This endpoint is used to retrieve documents previously uploaded for use in the KYC Verification of an account holder. For further information regarding KYC Verification, please refer to [Verification checks](https://docs.adyen.com/platforms/onboarding-and-verification/verification-checks). - * @param request GetUploadedDocumentsRequest - reference of GetUploadedDocumentsRequest). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request GetUploadedDocumentsRequest - reference of GetUploadedDocumentsRequest). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return GetUploadedDocumentsResponse */ func (a PlatformsAccount) GetUploadedDocuments(req *GetUploadedDocumentsRequest, ctxs ..._context.Context) (GetUploadedDocumentsResponse, *_nethttp.Response, error) { @@ -154,8 +164,9 @@ func (a PlatformsAccount) GetUploadedDocuments(req *GetUploadedDocumentsRequest, /* PostSuspendAccountHolder Suspend an existing account holder. This endpoint is used to suspend an existing account holder. If an account holder is suspended, it may not process transactions or pay out funds. Any payments made to a suspended account holder will be directed to the merchant's liable account. - * @param request SuspendAccountHolderRequest - reference of SuspendAccountHolderRequest). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request SuspendAccountHolderRequest - reference of SuspendAccountHolderRequest). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return SuspendAccountHolderResponse */ func (a PlatformsAccount) SuspendAccountHolder(req *SuspendAccountHolderRequest, ctxs ..._context.Context) (SuspendAccountHolderResponse, *_nethttp.Response, error) { @@ -167,8 +178,9 @@ func (a PlatformsAccount) SuspendAccountHolder(req *SuspendAccountHolderRequest, /* PostUnSuspendAccountHolder Reinstate a disabled account holder. This endpoint is used to reinstate an existing account holder that has been suspended either through the `/suspendAccountHolder` endpoint or because a KYC deadline expired. However, an account holder that has been suspended by Adyen because of KYC verification issues (indicated by a **FAILED** verification [`status`](https://docs.adyen.com/api-explorer/#/Account/latest/post/getAccountHolder__resParam_verification-accountHolder-checks-status)) cannot be reinstated through this endpoint. - * @param request UnSuspendAccountHolderRequest - reference of UnSuspendAccountHolderRequest). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request UnSuspendAccountHolderRequest - reference of UnSuspendAccountHolderRequest). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return UnSuspendAccountHolderResponse */ func (a PlatformsAccount) UnSuspendAccountHolder(req *UnSuspendAccountHolderRequest, ctxs ..._context.Context) (UnSuspendAccountHolderResponse, *_nethttp.Response, error) { @@ -180,8 +192,9 @@ func (a PlatformsAccount) UnSuspendAccountHolder(req *UnSuspendAccountHolderRequ /* PostUpdateAccount Update an existing account under an account holder. This endpoint is used to update the description or payout schedule of an existing account. - * @param request UpdateAccountRequest - reference of UpdateAccountRequest). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request UpdateAccountRequest - reference of UpdateAccountRequest). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return UpdateAccountResponse */ func (a PlatformsAccount) UpdateAccount(req *UpdateAccountRequest, ctxs ..._context.Context) (UpdateAccountResponse, *_nethttp.Response, error) { @@ -193,8 +206,9 @@ func (a PlatformsAccount) UpdateAccount(req *UpdateAccountRequest, ctxs ..._cont /* PostUpdateAccountHolder Update an existing account holder. This endpoint is used to update the `accountHolderDetails` or `processingTier` of an account holder. If updating the `accountHolderDetails`, only the details which have been provided will be updated. Other details will be left as-is with the exception of the following fields: * `accountHolderDetails.address` * `accountHolderDetails.fullPhoneNumber` * `accountHolderDetails.bankAccountDetails.BankAccountDetail` * `accountHolderDetails.businessDetails.shareholders.ShareholderContact`, which requires all fields necessary for validation (i.e. in order to update only the `accountHolderDetails.address.postalCode`, the fields `accountHolderDetails.address.country`, `.city`, `.street`, `.postalCode`, and possibly `.stateOrProvince` must be provided as well, so that the address can be properly validated). Note that this endpoint can also be used to create new bank accounts. For this, provide details of a bank account without providing a `bankAccountUUID`. Similarly, it can also be used to create new shareholders by providing details of a shareholder without providing a `shareholderCode`. > The updating of the `metadata` field will overwite all of the existing account holder metadata. In order to update an existing metadata key-value pair, all otherkey-value pairs should be provided in order to not delete them. - * @param request UpdateAccountHolderRequest - reference of UpdateAccountHolderRequest). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request UpdateAccountHolderRequest - reference of UpdateAccountHolderRequest). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return UpdateAccountHolderResponse */ func (a PlatformsAccount) UpdateAccountHolder(req *UpdateAccountHolderRequest, ctxs ..._context.Context) (UpdateAccountHolderResponse, *_nethttp.Response, error) { @@ -206,8 +220,9 @@ func (a PlatformsAccount) UpdateAccountHolder(req *UpdateAccountHolderRequest, c /* PostUpdateAccountHolderState Update the state of an existing account holder. This endpoint is used to disable or enable the processing or payout state of an account holder. For more information about processing and payout states of an account holder, refer to [our documentation](https://docs.adyen.com/platforms). - * @param request UpdateAccountHolderStateRequest - reference of UpdateAccountHolderStateRequest). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request UpdateAccountHolderStateRequest - reference of UpdateAccountHolderStateRequest). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return GetAccountHolderStatusResponse */ func (a PlatformsAccount) UpdateAccountHolderState(req *UpdateAccountHolderStateRequest, ctxs ..._context.Context) (GetAccountHolderStatusResponse, *_nethttp.Response, error) { @@ -219,8 +234,9 @@ func (a PlatformsAccount) UpdateAccountHolderState(req *UpdateAccountHolderState /* PostUploadDocument Upload a document for an existing account holder. This endpoint is used to upload a document for use in the KYC verification of an account holder. For further information regarding KYC Verification, please refer to [Verification checks](https://docs.adyen.com/platforms/onboarding-and-verification/verification-checks). - * @param request UploadDocumentRequest - reference of UploadDocumentRequest). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request UploadDocumentRequest - reference of UploadDocumentRequest). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return UpdateAccountHolderResponse */ func (a PlatformsAccount) UploadDocument(req *UploadDocumentRequest, ctxs ..._context.Context) (UpdateAccountHolderResponse, *_nethttp.Response, error) { diff --git a/src/platformsfund/api_default.go b/src/platformsfund/api_default.go index 15b6a149f..82f08a916 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // PlatformsFund PlatformsFund service @@ -24,8 +24,9 @@ type PlatformsFund common.Service /* PostAccountHolderBalance Retrieve the balance(s) of an account holder. This endpoint is used to retrieve the balance(s) of the accounts of an account holder. An account's balances are on a per-currency basis (i.e., an account may have multiple balances: one per currency). - * @param request AccountHolderBalanceRequest - reference of AccountHolderBalanceRequest). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request AccountHolderBalanceRequest - reference of AccountHolderBalanceRequest). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return AccountHolderBalanceResponse */ func (a PlatformsFund) AccountHolderBalance(req *AccountHolderBalanceRequest, ctxs ..._context.Context) (AccountHolderBalanceResponse, *_nethttp.Response, error) { @@ -37,8 +38,9 @@ func (a PlatformsFund) AccountHolderBalance(req *AccountHolderBalanceRequest, ct /* PostAccountHolderTransactionList Retrieve a list of transactions. This endpoint is used to retrieve a list of Transactions for an account holder's accounts. The accounts and Transaction Statuses to be included on the list can be specified. Each call will return a maximum of fifty (50) Transactions per account; in order to retrieve the following set of Transactions another call should be made with the 'page' value incremented. Note that Transactions are ordered with most recent first. - * @param request AccountHolderTransactionListRequest - reference of AccountHolderTransactionListRequest). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request AccountHolderTransactionListRequest - reference of AccountHolderTransactionListRequest). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return AccountHolderTransactionListResponse */ func (a PlatformsFund) AccountHolderTransactionList(req *AccountHolderTransactionListRequest, ctxs ..._context.Context) (AccountHolderTransactionListResponse, *_nethttp.Response, error) { @@ -50,8 +52,9 @@ func (a PlatformsFund) AccountHolderTransactionList(req *AccountHolderTransactio /* PostPayoutAccountHolder Disburse a specified amount from an account to the account holder. This endpoint is used to pay out a specified amount from an account to the bank account of the account's account holder. - * @param request PayoutAccountHolderRequest - reference of PayoutAccountHolderRequest). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request PayoutAccountHolderRequest - reference of PayoutAccountHolderRequest). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return PayoutAccountHolderResponse */ func (a PlatformsFund) PayoutAccountHolder(req *PayoutAccountHolderRequest, ctxs ..._context.Context) (PayoutAccountHolderResponse, *_nethttp.Response, error) { @@ -63,8 +66,9 @@ func (a PlatformsFund) PayoutAccountHolder(req *PayoutAccountHolderRequest, ctxs /* PostRefundFundsTransfer Make a refund of the existing transfer funds transfer. This endpoint is used to refund funds transferred from one account to another. Both accounts must be in the same marketplace, but can have different account holders. - * @param request RefundFundsTransferRequest - reference of RefundFundsTransferRequest). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request RefundFundsTransferRequest - reference of RefundFundsTransferRequest). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return RefundFundsTransferResponse */ func (a PlatformsFund) RefundFundsTransfer(req *RefundFundsTransferRequest, ctxs ..._context.Context) (RefundFundsTransferResponse, *_nethttp.Response, error) { @@ -76,8 +80,9 @@ func (a PlatformsFund) RefundFundsTransfer(req *RefundFundsTransferRequest, ctxs /* PostRefundNotPaidOutTransfers Refund all transactions of an account since the most recent payout. This endpoint is used to refund all the transactions of an account which have taken place since the most recent payout. This request is on a per-account basis (as opposed to a per-payment basis), so only the portion of the payment which was made to the specified account will be refunded. The commission(s), fee(s), and payment(s) to other account(s), will remain in the accounts to which they were sent as designated by the original payment's split details. - * @param request RefundNotPaidOutTransfersRequest - reference of RefundNotPaidOutTransfersRequest). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request RefundNotPaidOutTransfersRequest - reference of RefundNotPaidOutTransfersRequest). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return RefundNotPaidOutTransfersResponse */ func (a PlatformsFund) RefundNotPaidOutTransfers(req *RefundNotPaidOutTransfersRequest, ctxs ..._context.Context) (RefundNotPaidOutTransfersResponse, *_nethttp.Response, error) { @@ -89,8 +94,9 @@ func (a PlatformsFund) RefundNotPaidOutTransfers(req *RefundNotPaidOutTransfersR /* PostSetupBeneficiary Designate an account to be the beneficiary of a separate account and transfer the benefactor's current balance to the beneficiary. This endpoint is used to define a benefactor and a beneficiary relationship between two accounts. At the time of benefactor/beneficiary setup, the funds in the benefactor account are transferred to the beneficiary account, and any further payments to the benefactor account are automatically sent to the beneficiary account. Note that a series of benefactor/beneficiaries may not exceed four (4) beneficiaries and may not have a cycle in it. - * @param request SetupBeneficiaryRequest - reference of SetupBeneficiaryRequest). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request SetupBeneficiaryRequest - reference of SetupBeneficiaryRequest). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return SetupBeneficiaryResponse */ func (a PlatformsFund) SetupBeneficiary(req *SetupBeneficiaryRequest, ctxs ..._context.Context) (SetupBeneficiaryResponse, *_nethttp.Response, error) { @@ -102,8 +108,9 @@ func (a PlatformsFund) SetupBeneficiary(req *SetupBeneficiaryRequest, ctxs ..._c /* PostTransferFunds Transfer funds from one platform account to another. This endpoint is used to transfer funds from one account to another account. Both accounts must be in the same marketplace, but can have different account holders. The transfer must include a transfer code, which should be determined by the marketplace, in compliance with local regulations. - * @param request TransferFundsRequest - reference of TransferFundsRequest). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request TransferFundsRequest - reference of TransferFundsRequest). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return TransferFundsResponse */ func (a PlatformsFund) TransferFunds(req *TransferFundsRequest, ctxs ..._context.Context) (TransferFundsResponse, *_nethttp.Response, error) { diff --git a/src/platformshostedonboardingpage/api_default.go b/src/platformshostedonboardingpage/api_default.go index 46e5d0c6a..8b40f194e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // PlatformsHostedOnboardingPage PlatformsHostedOnboardingPage service @@ -24,8 +24,9 @@ type PlatformsHostedOnboardingPage common.Service /* PostGetOnboardingUrl Get a link to a Hosted Onboarding Page. Returns a link to a Hosted Onboarding Page (HOP) to be used by a specific account holder. Each account holder represents a single sub-merchant. For more information on how to use HOP, refer to [Hosted Onboarding Page](https://docs.adyen.com/platforms/onboarding-and-verification/hosted-onboarding-page). - * @param request GetOnboardingUrlRequest - reference of GetOnboardingUrlRequest). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request GetOnboardingUrlRequest - reference of GetOnboardingUrlRequest). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return GetOnboardingUrlResponse */ func (a PlatformsHostedOnboardingPage) GetOnboardingUrl(req *GetOnboardingUrlRequest, ctxs ..._context.Context) (GetOnboardingUrlResponse, *_nethttp.Response, error) { diff --git a/src/platformsnotificationconfiguration/api_default.go b/src/platformsnotificationconfiguration/api_default.go index a25d01199..03dac1b81 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // PlatformsNotificationConfiguration PlatformsNotificationConfiguration service @@ -24,8 +24,9 @@ type PlatformsNotificationConfiguration common.Service /* PostCreateNotificationConfiguration Subscribe to notifications. Creates a subscription to notifications informing you of events on your platform. After the subscription is created, the events specified in the configuration will be sent to the URL specified in the configuration. Subscriptions must be configured on a per-event basis (as opposed to, for example, a per-account holder basis), so all event notifications of a marketplace and of a given type will be sent to the same endpoint(s). A marketplace may have multiple endpoints if desired; an event notification may be sent to as many or as few different endpoints as configured. - * @param request CreateNotificationConfigurationRequest - reference of CreateNotificationConfigurationRequest). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request CreateNotificationConfigurationRequest - reference of CreateNotificationConfigurationRequest). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return GetNotificationConfigurationResponse */ func (a PlatformsNotificationConfiguration) CreateNotificationConfiguration(req *CreateNotificationConfigurationRequest, ctxs ..._context.Context) (GetNotificationConfigurationResponse, *_nethttp.Response, error) { @@ -37,8 +38,9 @@ func (a PlatformsNotificationConfiguration) CreateNotificationConfiguration(req /* PostDeleteNotificationConfigurations Delete an existing notification subscription configuration. This endpoint is used to delete an existing notification subscription configuration. After the subscription is deleted, no further event notifications will be sent to the URL that was in the subscription. - * @param request DeleteNotificationConfigurationRequest - reference of DeleteNotificationConfigurationRequest). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request DeleteNotificationConfigurationRequest - reference of DeleteNotificationConfigurationRequest). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return GenericResponse */ func (a PlatformsNotificationConfiguration) DeleteNotificationConfigurations(req *DeleteNotificationConfigurationRequest, ctxs ..._context.Context) (GenericResponse, *_nethttp.Response, error) { @@ -50,8 +52,9 @@ func (a PlatformsNotificationConfiguration) DeleteNotificationConfigurations(req /* PostGetNotificationConfiguration Retrieve an existing notification subscription configuration. This endpoint is used to retrieve the details of the configuration of a notification subscription. - * @param request GetNotificationConfigurationRequest - reference of GetNotificationConfigurationRequest). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request GetNotificationConfigurationRequest - reference of GetNotificationConfigurationRequest). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return GetNotificationConfigurationResponse */ func (a PlatformsNotificationConfiguration) GetNotificationConfiguration(req *GetNotificationConfigurationRequest, ctxs ..._context.Context) (GetNotificationConfigurationResponse, *_nethttp.Response, error) { @@ -63,8 +66,9 @@ func (a PlatformsNotificationConfiguration) GetNotificationConfiguration(req *Ge /* PostGetNotificationConfigurationList Retrieve a list of existing notification subscription configurations. This endpoint is used to retrieve the details of the configurations of all of the notification subscriptions in the marketplace of the executing user. - * @param request Body - reference of interface{}). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request Body - reference of interface{}). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return GetNotificationConfigurationListResponse */ func (a PlatformsNotificationConfiguration) GetNotificationConfigurationList(req interface{}, ctxs ..._context.Context) (GetNotificationConfigurationListResponse, *_nethttp.Response, error) { @@ -76,8 +80,9 @@ func (a PlatformsNotificationConfiguration) GetNotificationConfigurationList(req /* PostTestNotificationConfiguration Test an existing notification configuration. This endpoint is used to test an existing notification subscription configuration. For each event type specified, a test notification will be generated and sent to the URL configured in the subscription specified. - * @param request TestNotificationConfigurationRequest - reference of TestNotificationConfigurationRequest). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request TestNotificationConfigurationRequest - reference of TestNotificationConfigurationRequest). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return TestNotificationConfigurationResponse */ func (a PlatformsNotificationConfiguration) TestNotificationConfiguration(req *TestNotificationConfigurationRequest, ctxs ..._context.Context) (TestNotificationConfigurationResponse, *_nethttp.Response, error) { @@ -89,8 +94,9 @@ func (a PlatformsNotificationConfiguration) TestNotificationConfiguration(req *T /* PostUpdateNotificationConfiguration Update an existing notification subscription configuration. This endpoint is used to update an existing notification subscription configuration. If updating the event types, all event types desired must be provided, otherwise the previous event type configuration will be overwritten. - * @param request UpdateNotificationConfigurationRequest - reference of UpdateNotificationConfigurationRequest). - * @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + - @param request UpdateNotificationConfigurationRequest - reference of UpdateNotificationConfigurationRequest). + - @param ctxs ..._context.Context - optional, for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background(). + @return GetNotificationConfigurationResponse */ func (a PlatformsNotificationConfiguration) UpdateNotificationConfiguration(req *UpdateNotificationConfigurationRequest, ctxs ..._context.Context) (GetNotificationConfigurationResponse, *_nethttp.Response, error) { diff --git a/src/posterminalmanagement/api_general.go b/src/posterminalmanagement/api_general.go index a33e6ae51..1616e001f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // GeneralApi service diff --git a/src/posterminalmanagement/model_address.go b/src/posterminalmanagement/model_address.go index d66f6c5db..0d18dfa0b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 61807ee18..e5094083d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d828d984b..03bb368a9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 97d197cc8..5f5447df3 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 56c21257a..7779606e2 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f434ba73f..e2f84322e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 635ab48ca..e49b072b5 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 89dc0fc7e..6e34c29db 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 867ebefa6..17a3e26ad 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 775f0fc33..aa219095e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 974e50eaa..e167587d4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e6668f9e8..108b98864 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 aecea83c8..53ff93ffd 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b0646a3cd..c0d73068f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b5aa68a40..7c1ed9e6c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // GeneralApi service diff --git a/src/recurring/model_address.go b/src/recurring/model_address.go index ceea18373..ee97bf6eb 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 bca4b8a45..63d71d5e9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4769b37d5..17380ded0 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 01c68d229..ef4e8c361 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 412f9f898..1298e02f8 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b8bc1413a..bef86dfbf 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3ff017425..5d0e12d17 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 af146a379..08e1f0b76 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4711b265f..4594059b6 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 c94a9849c..7ff56978a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 64814ec32..9d3efa798 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ec1c67267..478a0469a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5474e6b00..db6f582f4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 09cb83097..3b650b730 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5dbbc98fa..b1f712cf9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 dffe0cf7c..5cd2312e6 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 548b0838f..0616b29f6 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5882174ff..a3e6c938e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 2a3b08480..a17cf0ebc 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 743534dfd..0542c9424 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 785595248..4e9463344 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 850a303d5..6b3eec529 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 cc43ed293..d3a45f6ca 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 59adf3f08..c924ff1e4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 7e5bfb89a..0858fdf49 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b0db7c29a..8a7a5c4fe 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a73e99e8b..7ba51b032 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ef6f2972b..da8fec0a9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d878f14af..cd6855849 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 259f8990e..ca16a9c10 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a5a95d05d..59f8f8af9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // GeneralApi service diff --git a/src/storedvalue/model_amount.go b/src/storedvalue/model_amount.go index b6c19f190..e493f1418 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5fd66688c..4a8f76e73 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f492e89ec..a5d43bad1 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 306555c9e..7cc522b4a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 2e325920a..b89f4b227 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 78500e727..b2b5c3511 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d217f87f8..ca1b573dc 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 16d1d9692..0f6c50fc4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4a058dffe..260e69bc9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 435e4fd9a..739d81577 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9a8d3f0e7..4929bd9b8 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ec58f7eec..45c594c83 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8e008b71f..73decdf44 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 45aa4e25a..7613ac926 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 444b8495c..91a32b0a8 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 715700c52..7c5db0ab0 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d4ea80c11..14e937d50 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 bcb1cc883..b827f247a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d901cdf50..61961befe 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 936a2ad12..68ec0db62 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3efc04c45..163a2dc04 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 41089182b..b3d1fcb0a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // CapitalApi service diff --git a/src/transfers/api_transactions.go b/src/transfers/api_transactions.go index 4d316c3e3..6fdb307cd 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // TransactionsApi service diff --git a/src/transfers/api_transfers.go b/src/transfers/api_transfers.go index d939399bb..95e43f9f7 100644 --- a/src/transfers/api_transfers.go +++ b/src/transfers/api_transfers.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // TransfersApi service diff --git a/src/transfers/client.go b/src/transfers/client.go index edfeb7681..4b3847a55 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 2849b47cb..95f2c9a7c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 56f218900..89f3e487c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3f95599eb..0293e3c8e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the Amount 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 67eefd427..c1e74ceb4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the AULocalAccountIdentification 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 089c3f51b..14f2e98cc 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 2d5aabef1..86f5e30f9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5f7b7ed19..c9e71cf7b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 59271462c..e41d0ddbf 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 af4f122ba..7a2491643 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 61f90a5c7..5604076ca 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a91aa4afe..3a152e58f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 49827278d..e2e0a7482 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the CapitalGrants type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_counterparty.go b/src/transfers/model_counterparty.go index 94fa07462..54b75cc3d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 adf7d2876..6b014a3d4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 cc0adc150..8547622f4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5274bb0ef..27c255c98 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0e0494f7d..e1ddd2034 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the DKLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_fee.go b/src/transfers/model_fee.go index 02735cbd3..3600cf11e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the Fee 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 649c94b5c..8c39f41bb 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e45c841ff..758435df3 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6fd28c68b..79fed1787 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9e2a06584..fc75cadd3 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the InternalCategoryData 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 1ad526f8c..093e45300 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 2ee218386..289b6f1e3 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3ba406260..79d1c38a9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 98732da5b..771bbaf2d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f771a4189..eca04b6f3 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 1a7e5e2ec..ed6ed226d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ff93aaac1..523c2c9d0 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the MerchantData 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 f3d3c2bff..a17a9c393 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d062a75ee..312fcefea 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 aa14fe415..b5b8b8ee1 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6c6278aaa..cb23d0eff 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b4ed1caca..3b976ac7a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 755e27268..6f4568f34 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 dd8f5669f..51dea4bca 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 fb7502371..021e9f8bd 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 611e82b55..e42ea148d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d679df965..d64b680c7 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8aca5b777..f8d8117d4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f35d8822c..288104c2d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 07f3c7f14..5b117afc1 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 74bcd3f79..9ddbf797b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8f923d269..edea31007 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the ReturnTransferResponse 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 4c6b2a357..d781b4391 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6187b7d3e..cd71fcd73 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4395eb6cf..cd74bd079 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 1756c77b4..eba4c3a20 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 848758961..b410a2922 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the Transaction 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 7cfa40f92..4d52b31c9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0d532f3aa..93b4afe3e 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 505030479..13a3e38a4 100644 --- a/src/transfers/model_transfer_data.go +++ b/src/transfers/model_transfer_data.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the TransferData 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 53a86feae..4c123e8a3 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the TransferInfo 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 55458d8a9..d595a9647 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the TransferNotificationValidationFact 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 41599e706..1a505fd6c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e42e47d9f..296c48efc 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 1086c2d4f..c628726de 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d94e21538..bf56b4197 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e9ac24d0e..2b3166619 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ba1962e1d..cf0b79bd1 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0e59e19a8..fcbdce9dc 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b6903d318..0430b8af1 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f46c53bfc..711a1551d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 6aa344be8..686421363 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 61d09bc2a..0a65fef23 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 038f008dd..4687feb3f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 01aa2a592..5dd6171ab 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 bf220e344..e6c75b0e3 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 dca492314..090d2d423 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the CALocalAccountIdentification 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 d180afa38..d11714b5f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 22edb653d..3ed38d410 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 23ef8a73d..0283d67b6 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the DKLocalAccountIdentification 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 bc1761195..18279d989 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0c15be119..6606d2757 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 292d9613d..06a283605 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 2c2fe887f..69e3e3d77 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the InternalCategoryData 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 c25ac46c6..387bcdc75 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 9903ea66e..9287a7947 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 53df6b0d4..9a517ed3d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 75cd5c42f..2bc4b9530 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 dd6aa8f91..ab81c6351 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 0e17a775a..17c2d17a4 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b81e981be..45418bf02 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 57992ddb0..d8b955f9f 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 53ca16ac9..341215ce7 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8815ba608..ae7b152e2 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 d7a992d48..901231585 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f7281fd02..946d31224 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 5dade0651..d45fdccc0 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 20ed9a853..cc2e5f7e7 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 bd28144a1..68efed028 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 88181bccf..26ee9d439 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 311880dd2..719c7db26 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 8609c38dc..4973203c9 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f31fb70d5..3872b0c9c 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e4a87833a..b5b731b30 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 3c8a5dd2f..5f80161f3 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ea27af2f6..493e2a16a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f7a16486d..1e10951a2 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 b25df1d86..c13949209 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 89bb0be65..219b0f23d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 ba32057c1..b18bf485a 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 73149f240..3623b7dae 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 615542d0b..8c1926d9b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f42af7f99..cf5fc2852 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a2adbfa5a..412db0e49 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 665fadb94..da677fdfd 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // checks if the USLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/templates/custom/api.mustache b/templates/custom/api.mustache index 1a9fd1e80..e8ba2c892 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // {{classname}} service diff --git a/templates/custom/client.mustache b/templates/custom/client.mustache index 794fde36c..f7c81278d 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // APIClient manages communication with the {{appName}} API v{{version}} diff --git a/templates/custom/model.mustache b/templates/custom/model.mustache index d3b911482..c968bc44b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" {{#imports}} "{{import}}" {{/imports}} diff --git a/templates/custom/rest_api.mustache b/templates/custom/rest_api.mustache index 61ae35823..8bcfb325b 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/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/common" ) // {{classname}} {{classname}} service diff --git a/tests/api_modifications_test.go b/tests/api_modifications_test.go index 6f542154c..47bf0dbe3 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/v8/src/adyen" - "github.com/adyen/adyen-go-api-library/v8/src/checkout" - "github.com/adyen/adyen-go-api-library/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/adyen" + "github.com/adyen/adyen-go-api-library/v9/src/checkout" + "github.com/adyen/adyen-go-api-library/v9/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 279bfd541..a1a57abb3 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/v8/src/balancecontrol" + "github.com/adyen/adyen-go-api-library/v9/src/balancecontrol" "io" "net/http" "net/http/httptest" "testing" - "github.com/adyen/adyen-go-api-library/v8/src/adyen" - "github.com/adyen/adyen-go-api-library/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/adyen" + "github.com/adyen/adyen-go-api-library/v9/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 0e3119a44..d53e1d4ef 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/v8/src/acswebhook" + "github.com/adyen/adyen-go-api-library/v9/src/acswebhook" "testing" "github.com/stretchr/testify/assert" diff --git a/tests/balanceplatform/configurationwebhook_test.go b/tests/balanceplatform/configurationwebhook_test.go index 71833c895..374a55c48 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/v8/src/configurationwebhook" + "github.com/adyen/adyen-go-api-library/v9/src/configurationwebhook" ) func TestHandleAccountHolderNotificationRequest(t *testing.T) { diff --git a/tests/balanceplatform/reportwebhook_test.go b/tests/balanceplatform/reportwebhook_test.go index 22560d38f..bbea2d87c 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/v8/src/reportwebhook" + "github.com/adyen/adyen-go-api-library/v9/src/reportwebhook" ) func TestHandleReportNotificationRequest(t *testing.T) { diff --git a/tests/balanceplatform/transferwebhook_test.go b/tests/balanceplatform/transferwebhook_test.go index b879a07fd..e067cc793 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/v8/src/transferwebhook" + "github.com/adyen/adyen-go-api-library/v9/src/transferwebhook" ) func TestHandleTransferNotificationRequest(t *testing.T) { diff --git a/tests/balanceplatform/unit_test.go b/tests/balanceplatform/unit_test.go index 787c3dae6..71317ec46 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/v8/src/adyen" - "github.com/adyen/adyen-go-api-library/v8/src/balanceplatform" - "github.com/adyen/adyen-go-api-library/v8/src/common" - "github.com/adyen/adyen-go-api-library/v8/tests" + "github.com/adyen/adyen-go-api-library/v9/src/adyen" + "github.com/adyen/adyen-go-api-library/v9/src/balanceplatform" + "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 440607919..5ab31831e 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/v8/src/binlookup" + "github.com/adyen/adyen-go-api-library/v9/src/binlookup" "os" "testing" - "github.com/adyen/adyen-go-api-library/v8/src/adyen" - "github.com/adyen/adyen-go-api-library/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/adyen" + "github.com/adyen/adyen-go-api-library/v9/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 1ae19c28b..546fc8991 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/v8/src/adyen" - "github.com/adyen/adyen-go-api-library/v8/src/checkout" - "github.com/adyen/adyen-go-api-library/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/adyen" + "github.com/adyen/adyen-go-api-library/v9/src/checkout" + "github.com/adyen/adyen-go-api-library/v9/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 7164f8896..6f1aec247 100644 --- a/tests/checkout/integration_test.go +++ b/tests/checkout/integration_test.go @@ -6,9 +6,9 @@ package checkout import ( "context" "encoding/json" - "github.com/adyen/adyen-go-api-library/v8/src/adyen" - "github.com/adyen/adyen-go-api-library/v8/src/checkout" - "github.com/adyen/adyen-go-api-library/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/adyen" + "github.com/adyen/adyen-go-api-library/v9/src/checkout" + "github.com/adyen/adyen-go-api-library/v9/src/common" "github.com/google/uuid" "io/ioutil" "os" diff --git a/tests/checkout/unit_test.go b/tests/checkout/unit_test.go index 4f4377fbc..8ef8f7c75 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/v8/src/adyen" - "github.com/adyen/adyen-go-api-library/v8/src/checkout" - "github.com/adyen/adyen-go-api-library/v8/src/common" - "github.com/adyen/adyen-go-api-library/v8/tests" + "github.com/adyen/adyen-go-api-library/v9/src/adyen" + "github.com/adyen/adyen-go-api-library/v9/src/checkout" + "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 a6a547bea..fddecd938 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/v8/src/adyen" - "github.com/adyen/adyen-go-api-library/v8/src/common" - "github.com/adyen/adyen-go-api-library/v8/src/dataprotection" + "github.com/adyen/adyen-go-api-library/v9/src/adyen" + "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 7abae8147..c29af0716 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/v8/src/adyen" - "github.com/adyen/adyen-go-api-library/v8/src/common" - "github.com/adyen/adyen-go-api-library/v8/src/disputes" + "github.com/adyen/adyen-go-api-library/v9/src/adyen" + "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 e5dee28f5..255ea5266 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/v8/src/adyen" - "github.com/adyen/adyen-go-api-library/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/adyen" + "github.com/adyen/adyen-go-api-library/v9/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 47c1c247c..b58617871 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/v8/src/adyen" - "github.com/adyen/adyen-go-api-library/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/adyen" + "github.com/adyen/adyen-go-api-library/v9/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 9b26ec098..2aafbc7e2 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/v8/src/adyen" - "github.com/adyen/adyen-go-api-library/v8/src/common" - "github.com/adyen/adyen-go-api-library/v8/src/legalentity" + "github.com/adyen/adyen-go-api-library/v9/src/adyen" + "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 4dc947823..4d66c0f98 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/v8/src/adyen" - "github.com/adyen/adyen-go-api-library/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/adyen" + "github.com/adyen/adyen-go-api-library/v9/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 5a275d249..b4a9a6084 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/v8/src/adyen" - "github.com/adyen/adyen-go-api-library/v8/src/common" - "github.com/adyen/adyen-go-api-library/v8/src/management" + "github.com/adyen/adyen-go-api-library/v9/src/adyen" + "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 38660273f..7dd564502 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/v8/src/managementwebhook" + "github.com/adyen/adyen-go-api-library/v9/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 85fd8682d..bd40ffba2 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/v8/src/checkout" + "github.com/adyen/adyen-go-api-library/v9/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 00aceb2de..cd5380949 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/v8/src/checkout" + "github.com/adyen/adyen-go-api-library/v9/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 f6195eed3..31c4695f5 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/v8/src/adyen" - "github.com/adyen/adyen-go-api-library/v8/src/common" - "github.com/adyen/adyen-go-api-library/v8/src/payments" + "github.com/adyen/adyen-go-api-library/v9/src/adyen" + "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 f0625e57a..3b67f76ab 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/v8/src/adyen" - "github.com/adyen/adyen-go-api-library/v8/src/common" - "github.com/adyen/adyen-go-api-library/v8/src/payout" + "github.com/adyen/adyen-go-api-library/v9/src/adyen" + "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 714b5446c..1190db525 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/v8/src/adyen" - "github.com/adyen/adyen-go-api-library/v8/src/common" - "github.com/adyen/adyen-go-api-library/v8/src/platformsaccount" - "github.com/adyen/adyen-go-api-library/v8/src/platformsfund" - "github.com/adyen/adyen-go-api-library/v8/src/platformsnotificationconfiguration" + "github.com/adyen/adyen-go-api-library/v9/src/adyen" + "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/platformsaccount" + "github.com/adyen/adyen-go-api-library/v9/src/platformsfund" + "github.com/adyen/adyen-go-api-library/v9/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 fdcf69113..cc4ac4672 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/v8/src/adyen" - "github.com/adyen/adyen-go-api-library/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/adyen" + "github.com/adyen/adyen-go-api-library/v9/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 26ea11c75..0868b1d1e 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/v8/src/adyen" - "github.com/adyen/adyen-go-api-library/v8/src/checkout" - "github.com/adyen/adyen-go-api-library/v8/src/common" - "github.com/adyen/adyen-go-api-library/v8/src/recurring" - "github.com/adyen/adyen-go-api-library/v8/src/webhook" + "github.com/adyen/adyen-go-api-library/v9/src/adyen" + "github.com/adyen/adyen-go-api-library/v9/src/checkout" + "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/recurring" + "github.com/adyen/adyen-go-api-library/v9/src/webhook" "net/http" "net/url" "time" diff --git a/tests/recurring_test.go b/tests/recurring_test.go index 629374433..92747336d 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/v8/src/adyen" - "github.com/adyen/adyen-go-api-library/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/adyen" + "github.com/adyen/adyen-go-api-library/v9/src/common" - "github.com/adyen/adyen-go-api-library/v8/src/recurring" + "github.com/adyen/adyen-go-api-library/v9/src/recurring" "github.com/joho/godotenv" "github.com/stretchr/testify/assert" diff --git a/tests/storedvalue_test.go b/tests/storedvalue_test.go index ed77d3c46..d66931ab9 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/v8/src/adyen" - "github.com/adyen/adyen-go-api-library/v8/src/common" - "github.com/adyen/adyen-go-api-library/v8/src/storedvalue" + "github.com/adyen/adyen-go-api-library/v9/src/adyen" + "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v9/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 527b46426..1abaf271f 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/v8/src/transfers" + "github.com/adyen/adyen-go-api-library/v9/src/transfers" "io" "net/http" "net/http/httptest" "testing" "time" - "github.com/adyen/adyen-go-api-library/v8/src/adyen" - "github.com/adyen/adyen-go-api-library/v8/src/common" + "github.com/adyen/adyen-go-api-library/v9/src/adyen" + "github.com/adyen/adyen-go-api-library/v9/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 50145a669..3df63225f 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/v8/src/webhook" + "github.com/adyen/adyen-go-api-library/v9/src/webhook" ) func TestWebhook_HandleRequest(t *testing.T) {