diff --git a/Readme.md b/Readme.md index a25875f95..6f6e88bba 100644 --- a/Readme.md +++ b/Readme.md @@ -68,7 +68,7 @@ The library supports all webhooks under the following model directories: You can use go modules to add our library to your project ```bash -go get github.com/adyen/adyen-go-api-library/v9@v10.3.0 +go get github.com/adyen/adyen-go-api-library/v10@v10.3.0 ``` ## Usage examples @@ -78,9 +78,9 @@ go get github.com/adyen/adyen-go-api-library/v9@v10.3.0 ```go import ( "context" - "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" + "github.com/adyen/adyen-go-api-library/v10/src/checkout" + "github.com/adyen/adyen-go-api-library/v10/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/adyen" ) client := adyen.NewClient(&common.Config{ @@ -100,9 +100,9 @@ res, httpRes, err := service.PaymentsApi.PaymentMethods(context.Background(), re ```go import ( - "github.com/adyen/adyen-go-api-library/v9/src/checkout" - "github.com/adyen/adyen-go-api-library/v9/src/common" - "github.com/adyen/adyen-go-api-library/v9/src/adyen" + "github.com/adyen/adyen-go-api-library/v10/src/checkout" + "github.com/adyen/adyen-go-api-library/v10/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/adyen" ) client := adyen.NewClient(&common.Config{ @@ -123,9 +123,9 @@ res, httpRes, err := service.PaymentsApi.PaymentMethods(context.Background(), re ```go import ( - "github.com/adyen/adyen-go-api-library/v9/src/recurring" - "github.com/adyen/adyen-go-api-library/v9/src/common" - "github.com/adyen/adyen-go-api-library/v9/src/adyen" + "github.com/adyen/adyen-go-api-library/v10/src/recurring" + "github.com/adyen/adyen-go-api-library/v10/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/adyen" ) client := adyen.NewClient(&common.Config{ @@ -153,7 +153,7 @@ In some setups you might need to unmarshal JSON strings to request objects. For ```go import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/checkout" + "github.com/adyen/adyen-go-api-library/v10/src/checkout" ) paymentRequest := checkout.PaymentRequest{} error := json.Unmarshal([]byte("YOUR_JSON_STRING"), &paymentRequest) @@ -164,7 +164,7 @@ error := json.Unmarshal([]byte("YOUR_JSON_STRING"), &paymentRequest) ```go import ( - "github.com/adyen/adyen-go-api-library/v9/src/webhook" + "github.com/adyen/adyen-go-api-library/v10/src/webhook" ) msg, err := webhook.HandleRequest(`{"live": "false", "notificationItems": []}`) @@ -174,9 +174,9 @@ msg, err := webhook.HandleRequest(`{"live": "false", "notificationItems": []}`) ```go import ( - "github.com/adyen/adyen-go-api-library/v9/src/common" - "github.com/adyen/adyen-go-api-library/v9/src/checkout" - "github.com/adyen/adyen-go-api-library/v9/src/adyen" + "github.com/adyen/adyen-go-api-library/v10/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/checkout" + "github.com/adyen/adyen-go-api-library/v10/src/adyen" ) client := adyen.NewClient(&common.Config{ diff --git a/go.mod b/go.mod index de4fc5169..32ba7d838 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/adyen/adyen-go-api-library/v9 +module github.com/adyen/adyen-go-api-library/v10 go 1.13 diff --git a/main.go b/main.go index 623c1a181..b19d38b9a 100644 --- a/main.go +++ b/main.go @@ -9,8 +9,8 @@ package main import ( "fmt" - "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/v10/src/adyen" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) func main() { diff --git a/main_test.go b/main_test.go index dd8f98398..e88462396 100644 --- a/main_test.go +++ b/main_test.go @@ -5,9 +5,9 @@ import ( "strings" "testing" - "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/v10/src/adyen" + "github.com/adyen/adyen-go-api-library/v10/src/checkout" + "github.com/adyen/adyen-go-api-library/v10/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 238cc4095..94f33f219 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c020e4fd2..0cf6eb088 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8e3f85692..94a5344ae 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e186b6c83..1dc002dbf 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8a7b2bd6a..ff962fa9e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a2822ebd5..cc9d20f4d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 9e7e90f71..177059082 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 52e76b796..34fe10cf8 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 d5de9c900..f40c664f5 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/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" + "github.com/adyen/adyen-go-api-library/v10/src/dataprotection" + + "github.com/adyen/adyen-go-api-library/v10/src/balancecontrol" + "github.com/adyen/adyen-go-api-library/v10/src/balanceplatform" + "github.com/adyen/adyen-go-api-library/v10/src/binlookup" + "github.com/adyen/adyen-go-api-library/v10/src/checkout" + "github.com/adyen/adyen-go-api-library/v10/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/disputes" + "github.com/adyen/adyen-go-api-library/v10/src/legalentity" + "github.com/adyen/adyen-go-api-library/v10/src/management" + "github.com/adyen/adyen-go-api-library/v10/src/payments" + "github.com/adyen/adyen-go-api-library/v10/src/payout" + "github.com/adyen/adyen-go-api-library/v10/src/platformsaccount" + "github.com/adyen/adyen-go-api-library/v10/src/platformsfund" + "github.com/adyen/adyen-go-api-library/v10/src/platformshostedonboardingpage" + "github.com/adyen/adyen-go-api-library/v10/src/platformsnotificationconfiguration" + "github.com/adyen/adyen-go-api-library/v10/src/posterminalmanagement" + "github.com/adyen/adyen-go-api-library/v10/src/recurring" + "github.com/adyen/adyen-go-api-library/v10/src/storedvalue" + "github.com/adyen/adyen-go-api-library/v10/src/transfers" ) // Constants used for the client API diff --git a/src/adyen/api_test.go b/src/adyen/api_test.go index 82c4fc652..487656506 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/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/v10/src/checkout" + "github.com/adyen/adyen-go-api-library/v10/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6c41dc98e..00c57f31d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // GeneralApi service diff --git a/src/balancecontrol/model_amount.go b/src/balancecontrol/model_amount.go index 43ecc75f8..6a6acce94 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a7aef37b7..dce17f7ae 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0c14d8568..28131714c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 1417c23f3..d5492e0e9 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // AccountHoldersApi service diff --git a/src/balanceplatform/api_balance_accounts.go b/src/balanceplatform/api_balance_accounts.go index be519aa51..fe5f45cc3 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // BalanceAccountsApi service diff --git a/src/balanceplatform/api_bank_account_validation.go b/src/balanceplatform/api_bank_account_validation.go index 7dbc7179e..3a78c5596 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // BankAccountValidationApi service diff --git a/src/balanceplatform/api_card_orders.go b/src/balanceplatform/api_card_orders.go index 86ea114bb..5e5797e79 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // CardOrdersApi service diff --git a/src/balanceplatform/api_grant_accounts.go b/src/balanceplatform/api_grant_accounts.go index 7a5632976..40377fa1e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // GrantAccountsApi service diff --git a/src/balanceplatform/api_grant_offers.go b/src/balanceplatform/api_grant_offers.go index ce7b8ad04..d1f247e6c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // GrantOffersApi service diff --git a/src/balanceplatform/api_manage_card_pin.go b/src/balanceplatform/api_manage_card_pin.go index a4b1fb253..7ef89faad 100644 --- a/src/balanceplatform/api_manage_card_pin.go +++ b/src/balanceplatform/api_manage_card_pin.go @@ -15,7 +15,7 @@ import ( "net/http" "net/url" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // ManageCardPINApi service diff --git a/src/balanceplatform/api_manage_sca_devices.go b/src/balanceplatform/api_manage_sca_devices.go index f80cde5ce..2de4b91a0 100644 --- a/src/balanceplatform/api_manage_sca_devices.go +++ b/src/balanceplatform/api_manage_sca_devices.go @@ -16,7 +16,7 @@ import ( "net/url" "strings" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // ManageSCADevicesApi service diff --git a/src/balanceplatform/api_network_tokens.go b/src/balanceplatform/api_network_tokens.go index 107793c05..501150953 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // NetworkTokensApi service diff --git a/src/balanceplatform/api_payment_instrument_groups.go b/src/balanceplatform/api_payment_instrument_groups.go index b7a10c21c..755cbac86 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // PaymentInstrumentGroupsApi service diff --git a/src/balanceplatform/api_payment_instruments.go b/src/balanceplatform/api_payment_instruments.go index 852b3380a..22dc5e561 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // PaymentInstrumentsApi service diff --git a/src/balanceplatform/api_pin_functionality.go b/src/balanceplatform/api_pin_functionality.go index 901aa9e5d..dc1ccefa1 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // PINFunctionalityApi service diff --git a/src/balanceplatform/api_platform.go b/src/balanceplatform/api_platform.go index d0a36e6c3..0be0fa48f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // PlatformApi service diff --git a/src/balanceplatform/api_transaction_rules.go b/src/balanceplatform/api_transaction_rules.go index b1314ae25..0514776bf 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // TransactionRulesApi service diff --git a/src/balanceplatform/api_transfer_routes.go b/src/balanceplatform/api_transfer_routes.go index 4e94bc1be..a04ae1ac8 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // TransferRoutesApi service diff --git a/src/balanceplatform/client.go b/src/balanceplatform/client.go index 4fcb6a3f4..a95bd8d71 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e2da1b523..641822630 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 1cc74a099..bffa8ad44 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 dfae3b094..51eb2aef0 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8bdfd077a..c3f9da52b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e9bfd9f11..8402a334d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4dab2f72c..9850cc20e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 88927cc61..a1c9fd40a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 cac4b7514..b4819ce72 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b941b2f0b..5510b2202 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c836d4027..82ea89e5e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 77ee5d5c6..037e81b11 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f6dab6eec..bbda55b1e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7ae8ce09e..b252e911f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 483059bd2..a201e4313 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 01790dda5..ccfbbed25 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 50590680d..4265bea4f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 367d98c2c..d755fcafa 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e5da63512..84f037676 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b6f7d13c4..44e5e57f6 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 684cf024c..9114521a6 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7d91c69c9..93728b8c3 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the BankAccount type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_bank_account_details.go b/src/balanceplatform/model_bank_account_details.go index 38712c68c..2935c571e 100644 --- a/src/balanceplatform/model_bank_account_details.go +++ b/src/balanceplatform/model_bank_account_details.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the BankAccountDetails type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_bank_account_identification_type_requirement.go b/src/balanceplatform/model_bank_account_identification_type_requirement.go index 54457e1f5..bfd2abf9b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 09088bcb4..1b9d2a7cb 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 9012eeac8..5568bcf48 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0f550f051..05daf6b76 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 1ea548272..ad8c2d129 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b87add562..e0722256f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 28b5b1676..f3a8dac50 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b9c371612..05021e905 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0441831de..2059eab5c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 467bf98b9..851c1a1a5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 304bd9250..c50496f21 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0615e811e..d10f1c0ce 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 df260bd38..e915fc3d3 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 997078193..7844b2384 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6a21dbed4..096819fa3 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 03a2f092d..4da07859a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5383869cb..8a1dd1211 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5cccd4148..f0401ff77 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a8a814880..afee237ad 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ed82d3393..2760b268c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 d45dd1ea5..d5aa77ed3 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 cda573a07..b155ad9ed 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4be7fd931..fb8a165b5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 1d360a612..611be1808 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7f0337c99..bbcb4aca5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 2acab878d..a6da0a6d5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 1195b3e0f..004d1d0c8 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the DayOfWeekRestriction type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_delegated_authentication_data.go b/src/balanceplatform/model_delegated_authentication_data.go index 3c30ea1c3..53937633b 100644 --- a/src/balanceplatform/model_delegated_authentication_data.go +++ b/src/balanceplatform/model_delegated_authentication_data.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the DelegatedAuthenticationData type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_delivery_address.go b/src/balanceplatform/model_delivery_address.go index ba8ea3840..e37bd7653 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e8842292d..12668824c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the DeliveryContact type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_device.go b/src/balanceplatform/model_device.go index 681af7f66..400ecdc12 100644 --- a/src/balanceplatform/model_device.go +++ b/src/balanceplatform/model_device.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the Device type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_device_info.go b/src/balanceplatform/model_device_info.go index 786c6b609..061949b9d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6d1822d21..d7730beae 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4873d6b86..121a21b00 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5996d52cb..0e69fb55f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6f510dce7..f17a10399 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 cc1608114..016c14dca 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 004dd994b..3a1eaca6f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f736fd2f9..4d801d445 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b9994d20c..f783e20d7 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 75704de78..0afed7f27 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 1273e174f..712c56703 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c9be5874a..971a987ca 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5b3d5e3a5..7971206f9 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the HKLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_href.go b/src/balanceplatform/model_href.go index 986974e4d..45b22b404 100644 --- a/src/balanceplatform/model_href.go +++ b/src/balanceplatform/model_href.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the Href type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_hu_local_account_identification.go b/src/balanceplatform/model_hu_local_account_identification.go index 81f8ce7da..c69b25382 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5650a26e2..84fd16e5e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 47a5547fd..99905f834 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 08264f13e..da18b0330 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f9c0efab3..a6971f7d1 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 141c212ac..b925d1568 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the JSONPath type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_link.go b/src/balanceplatform/model_link.go index da1d46b59..454c38cc1 100644 --- a/src/balanceplatform/model_link.go +++ b/src/balanceplatform/model_link.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the Link type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_list_network_tokens_response.go b/src/balanceplatform/model_list_network_tokens_response.go index 40c335981..34a102999 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 d3125c017..47ae273c5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the MatchingTransactionsRestriction type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_matching_values_restriction.go b/src/balanceplatform/model_matching_values_restriction.go index 54fc6d2a6..64bcaae5e 100644 --- a/src/balanceplatform/model_matching_values_restriction.go +++ b/src/balanceplatform/model_matching_values_restriction.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the MatchingValuesRestriction type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_mccs_restriction.go b/src/balanceplatform/model_mccs_restriction.go index bc26b7b8b..6831a8efb 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f3a0f049d..cee9c94e3 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b669f9202..c087ff95e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f4766965f..700d46c98 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 bca236fc1..2d8a632b9 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 12e9300a2..5ea1f8b11 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 09d395da4..0fa6dad18 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c44bdf3ff..98fd91e99 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e4f8d32c5..dd602b948 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 04b79f0e4..d7a0cd328 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 3b1c4c5e6..9fdaf3f1b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 afa0a7afe..aac332603 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e45779771..39424c605 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c4df5216d..4319b0747 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 857b61aee..d722538b9 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 702dd8c0a..b3ae9472f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 d4d2026c2..1a0d21e4d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ca5a76d86..5530e4bf8 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b89f62c32..3641c86db 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4cb6690f9..8adc53805 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the PaymentInstrumentRevealInfo type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_payment_instrument_reveal_request.go b/src/balanceplatform/model_payment_instrument_reveal_request.go index 2cf1495a6..a3b2a3370 100644 --- a/src/balanceplatform/model_payment_instrument_reveal_request.go +++ b/src/balanceplatform/model_payment_instrument_reveal_request.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the PaymentInstrumentRevealRequest type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_payment_instrument_reveal_response.go b/src/balanceplatform/model_payment_instrument_reveal_response.go index d4932471b..63469b8f0 100644 --- a/src/balanceplatform/model_payment_instrument_reveal_response.go +++ b/src/balanceplatform/model_payment_instrument_reveal_response.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the PaymentInstrumentRevealResponse type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_payment_instrument_update_request.go b/src/balanceplatform/model_payment_instrument_update_request.go index 995a8770e..752a5f8a1 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 9eaf23c4f..654256486 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 04e79cfe3..00f5b2dde 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 dd797d07c..d22297b02 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 31406de52..af5a893da 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8852ce83d..0a73e412a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 d3d7692a0..5c4c78f34 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 670653eca..2d6c45709 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4275d896c..0bbf89fab 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the PublicKeyResponse type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_register_sca_final_response.go b/src/balanceplatform/model_register_sca_final_response.go index f53d8d1af..789a36693 100644 --- a/src/balanceplatform/model_register_sca_final_response.go +++ b/src/balanceplatform/model_register_sca_final_response.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the RegisterSCAFinalResponse type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_register_sca_request.go b/src/balanceplatform/model_register_sca_request.go index 6c42174c3..60545e5cd 100644 --- a/src/balanceplatform/model_register_sca_request.go +++ b/src/balanceplatform/model_register_sca_request.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the RegisterSCARequest type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_register_sca_response.go b/src/balanceplatform/model_register_sca_response.go index 2b2fb7d39..d06d33edf 100644 --- a/src/balanceplatform/model_register_sca_response.go +++ b/src/balanceplatform/model_register_sca_response.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the RegisterSCAResponse type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_remediating_action.go b/src/balanceplatform/model_remediating_action.go index 38e3a8682..add4ac988 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c1a411ee8..1111f17d7 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 d4f6ca8bb..41ffe8cfa 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 9883a0333..fe932ce4c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 10a9b38f1..838484038 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 3312b7510..aab0a2380 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the RevealPinResponse type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_risk_scores.go b/src/balanceplatform/model_risk_scores.go index 47320a288..b8f73ca7c 100644 --- a/src/balanceplatform/model_risk_scores.go +++ b/src/balanceplatform/model_risk_scores.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the RiskScores type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_risk_scores_restriction.go b/src/balanceplatform/model_risk_scores_restriction.go index 35b27daaf..3e0c8e868 100644 --- a/src/balanceplatform/model_risk_scores_restriction.go +++ b/src/balanceplatform/model_risk_scores_restriction.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the RiskScoresRestriction type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_same_amount_restriction.go b/src/balanceplatform/model_same_amount_restriction.go index 0c0aefa89..e6d508dbc 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6d577ac43..36d95ea58 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f62498330..11adf3723 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the SELocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_search_registered_devices_response.go b/src/balanceplatform/model_search_registered_devices_response.go index 1c7df638c..ddddddd27 100644 --- a/src/balanceplatform/model_search_registered_devices_response.go +++ b/src/balanceplatform/model_search_registered_devices_response.go @@ -11,7 +11,7 @@ package balanceplatform import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the SearchRegisteredDevicesResponse type satisfies the MappedNullable interface at compile time diff --git a/src/balanceplatform/model_sg_local_account_identification.go b/src/balanceplatform/model_sg_local_account_identification.go index cd21c3839..bc3911e2c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8e8cd3a03..369693c53 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 52270df0b..9db55e54b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0db3f4292..494aa31cb 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 dfc4961ff..01169dcb3 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 afc386530..3ac710893 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b6d020d1c..ee45d3994 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 951e206b3..8c313f535 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 97cf91082..1e0cbe900 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e028ed614..3dcc8e091 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 fe1e42078..1fbc465a0 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 bf6cd4ef2..6b001cfe9 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 37bc2ff6a..9743d26e7 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 24346c073..83f09dbaf 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b6349e735..71cd8737e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 88378fa09..cb67b059b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 975fd8c6c..e74820f7e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 91593b7be..5734d3475 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 40f951dbb..cf5095c15 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 dbcdd55e9..7ac70e67f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 128e40640..8b9db1fb5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 02de69161..bdf74b816 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 39e767fd0..b27699b39 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7cad8aa39..6b6412a50 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 eddb549a0..86dea90d7 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b2cce84c4..554b8dff1 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 32e8c4ed1..7a14a8ebb 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8eedc4cd9..004c532ce 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // GeneralApi service diff --git a/src/binlookup/model_amount.go b/src/binlookup/model_amount.go index bd21b8578..0d9c7b35f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 fbd27bfc7..475425b75 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 585a2b139..92086bd4b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 bef436088..c2ee8bf60 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 734ee7f51..69f038ea8 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6368671c6..4e346da78 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 14f4c6504..1aa911f8d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 08d373d99..98b2da085 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a69358717..ed77250de 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7913e623d..ac80f7597 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8f91276ca..d5188f93f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 2ec6da9a2..657c7d5e5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 3b3a53a2c..2420d95bb 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b3371eeaf..6fe7d93be 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // ClassicCheckoutSDKApi service diff --git a/src/checkout/api_donations.go b/src/checkout/api_donations.go index 2b4b7f1ed..16a051400 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // DonationsApi service diff --git a/src/checkout/api_modifications.go b/src/checkout/api_modifications.go index 8940f5c18..9c817fe2e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // ModificationsApi service diff --git a/src/checkout/api_orders.go b/src/checkout/api_orders.go index 27edce80e..22cc78165 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // OrdersApi service diff --git a/src/checkout/api_payment_links.go b/src/checkout/api_payment_links.go index f750737b0..8561478ff 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // PaymentLinksApi service diff --git a/src/checkout/api_payments.go b/src/checkout/api_payments.go index ef3e135ef..959ac4da2 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // PaymentsApi service diff --git a/src/checkout/api_recurring.go b/src/checkout/api_recurring.go index e63e096d5..b68c15948 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // RecurringApi service diff --git a/src/checkout/api_utility.go b/src/checkout/api_utility.go index 92290d837..dfa26f066 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // UtilityApi service diff --git a/src/checkout/client.go b/src/checkout/client.go index 5254bfad5..e1443e7b7 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e5432b4a2..9a9d74e83 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 80069ae2c..b83f356af 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 9da39e99a..2db092aed 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 1be9977c2..b442c4f09 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b5b90d166..d7085795a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6a977468a..3c45ae444 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 fd00b30e1..b2c19e5ed 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 de2e50e9a..c7489e431 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5f578ab63..8bc5e4bcb 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c43546cf1..735cb52f2 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 274ddd83c..fbfc58125 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 94843f85a..d3427edbd 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 efcf82c9b..d1a9fae4a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 35df6e80e..d09abe106 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 d1e2a634c..c29ef4db6 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4992ec0b3..07fd6a16e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 06f6243ab..2ed920102 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 bb993bd86..b5c77ad7d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 62092a216..ab8c97c91 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 26bea0c44..23fe8cdea 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 bd8943d11..ad46f308d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0846f2292..5f320e5f4 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the Amount type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_ancv_details.go b/src/checkout/model_ancv_details.go index 07cba999e..32c21e01d 100644 --- a/src/checkout/model_ancv_details.go +++ b/src/checkout/model_ancv_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the AncvDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_android_pay_details.go b/src/checkout/model_android_pay_details.go index 55fe006ec..f1a4bc9bc 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ac5752aad..598ff14ed 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 31546fbce..733d054ac 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b991d0a8c..90fba0b4c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 44ffc4ac8..f05954406 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ba3f1a6c4..c4c2f4f55 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 fe7edafe2..249eddb43 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 08dc4286e..09f786496 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 3d0c11fc5..6c7cfdd98 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 d283ee807..c206a9b03 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6169744de..b3b660daa 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a8191e22d..847a70702 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7ccb92828..eb93ea8c4 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 74662d880..9d887f9fe 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5cf71ca37..38e8cde44 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5e5f9513a..0acc6918b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ad331f27e..ed6d9c25d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 697e98a0b..d7108711d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 1b7e3e4af..9173b032a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7e3eb9434..68d660b92 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8c9bf0747..f4cd7dda2 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 207846522..0a1e74864 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 50977d171..07fd078e5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 37e8961ce..1b1565de7 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the CardDonations type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_cash_app_details.go b/src/checkout/model_cash_app_details.go index 9f5fa1089..afccb4c85 100644 --- a/src/checkout/model_cash_app_details.go +++ b/src/checkout/model_cash_app_details.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the CashAppDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_cellulant_details.go b/src/checkout/model_cellulant_details.go index 18c46de57..706acaf81 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 bb8888c47..e89f2f60f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 011f6f79e..0b51381f2 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b12c847d5..31bab0a0d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ed6a40573..875d9be1b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 386029719..c6c746a2e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 676540f71..6b5bd8a08 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 af114b83a..fbb9ab301 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 113ab406c..68fd21c17 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the CheckoutSessionInstallmentOption type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_checkout_session_three_ds2_request_data.go b/src/checkout/model_checkout_session_three_ds2_request_data.go index 9d2d95fe6..f750d139d 100644 --- a/src/checkout/model_checkout_session_three_ds2_request_data.go +++ b/src/checkout/model_checkout_session_three_ds2_request_data.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the CheckoutSessionThreeDS2RequestData type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_checkout_three_ds2_action.go b/src/checkout/model_checkout_three_ds2_action.go index d6ad68472..ca30d2cf4 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6b7bb3299..6fba29487 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a6cfcbb76..8a57690cc 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 11842f211..29c5b5cdf 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7615ccde2..2d4f90e6c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4c095326b..8ea4f1b1c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 355a30b33..ce7471ef7 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c827f27be..f2b2ef3b6 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ca7002e55..7dad3d111 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b823badbe..ef6992ef9 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the DeliveryAddress type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_delivery_method.go b/src/checkout/model_delivery_method.go index 1002cf493..54a7887b2 100644 --- a/src/checkout/model_delivery_method.go +++ b/src/checkout/model_delivery_method.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the DeliveryMethod type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_details_request_authentication_data.go b/src/checkout/model_details_request_authentication_data.go index 3043ea3ee..4a8be9e4b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 dfdf5ec50..4ca8ae90a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a589e85d3..b409b2f67 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5a7cafaaa..ec6a45ab8 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b639d081d..1d90400d2 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c12ae7f9a..9558aff67 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ad8e66dff..ca8fb5d0f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c232a0486..216c65eb6 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 63804ded9..720a1783b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ff14d6d96..1107735cb 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 bea1a2525..281cdf4d0 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 017a0f241..a3db496fe 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4f277082e..52d564968 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 fd7aa81a5..80a821e91 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 667bb4c70..919d08550 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 abbbedc72..44e078d64 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 13bfd924f..66eb36c86 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8c2b17c7c..1e8237c6b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 9c1c3c142..579944938 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 82bac6cbb..9800a8b8e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 3b2e50216..dc3d303e1 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 db84e5b07..b51d54b60 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6d191964e..dadb2c80b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0958407a1..2d7a37f5c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8429f3e79..4c29798f4 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 35d1e340d..2512d677e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7ce2859b4..de2543bca 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 869161b3f..1ef9de351 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0efd882e6..b767f68ac 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 3591f7b02..022c42915 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 238c7bfcd..849e0f00e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 3ae071a8c..3a136eef3 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6d4efa44e..fe9e519d5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 86c0b73cc..143c7a4e2 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 2244f9962..306ecf5c9 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a716e8846..cb1a271d4 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ffda10f59..2fa78f99a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 148ef14b4..06417cf14 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 668428c45..9a8d2691f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ff34cb021..8966c6fed 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c55b2fcba..e140af65e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5a661934b..31b3d628f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 bc86c1a4f..fe97326ad 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 66bde066c..b62bc59c4 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 698f2f349..2085cde6d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 31764ff6e..2895c687b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 16011f4f3..c51bef625 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 42eecc2d7..7e5d4ab9c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8fb446bf7..1758301c6 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 40bed45e6..3946f7951 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b8aa1059f..af04381b9 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ca90f129c..0a0e3bf78 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 2b023311a..950b62ca6 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 1c4666435..37d22743f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f1f97ccb7..b9c5014c8 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 fe66b5ae9..250498ea1 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8b7716581..eb3cffba5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the PaymentMethodIssuer type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_method_to_store.go b/src/checkout/model_payment_method_to_store.go index 0661f27e4..504d6cddb 100644 --- a/src/checkout/model_payment_method_to_store.go +++ b/src/checkout/model_payment_method_to_store.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the PaymentMethodToStore type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_method_upi_apps.go b/src/checkout/model_payment_method_upi_apps.go index 2c44a901b..5a133ef21 100644 --- a/src/checkout/model_payment_method_upi_apps.go +++ b/src/checkout/model_payment_method_upi_apps.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the PaymentMethodUPIApps type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_payment_methods_request.go b/src/checkout/model_payment_methods_request.go index 834a95874..4dbd7be1c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 29fb8ab66..403b5bb5e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 388b6da87..d6b661e7c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e9d190578..0242eefa6 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 d9f1a0c64..ef4f1713f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7f79514d0..3b26dbf34 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a6b67ada6..6407242e3 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 630d605b2..656b9326e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4b7ba16d6..1f82c16b4 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 da6964edd..5408e30d2 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4d8ed91d8..60b8b49be 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 daf3abe93..23785dcb2 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the PaymentVerificationResponse type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_paypal_update_order_request.go b/src/checkout/model_paypal_update_order_request.go index b0a249e7c..8c09efff6 100644 --- a/src/checkout/model_paypal_update_order_request.go +++ b/src/checkout/model_paypal_update_order_request.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the PaypalUpdateOrderRequest type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_paypal_update_order_response.go b/src/checkout/model_paypal_update_order_response.go index 2e8e391c2..815f9d5a9 100644 --- a/src/checkout/model_paypal_update_order_response.go +++ b/src/checkout/model_paypal_update_order_response.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the PaypalUpdateOrderResponse type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_phone.go b/src/checkout/model_phone.go index d65a6541a..8658d4693 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 9ae6a60b5..3f930a7b3 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7ff08b6f6..de3b222a4 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 bd1991aed..ddec626e1 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5d1770a90..d8cb2fc10 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 19418c3a1..a523ad88b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 985ca5c70..b1487227d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8feac7a3a..71b5b1b09 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7cd61e833..02deebc51 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ce91c44fb..1f51a8e8a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 179d4df31..93827e382 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4aca22389..da9b28383 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c2367bf31..680751199 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 178e756a3..8a0e7a860 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 35058b181..178aaa171 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 45f91b637..2c0e83612 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 65a228f82..41e9b6707 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 504a3cfdf..198da80f6 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the SDKEphemPubKey type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_secure_remote_commerce_checkout_data.go b/src/checkout/model_secure_remote_commerce_checkout_data.go index 0289eb8d5..c49b00ab1 100644 --- a/src/checkout/model_secure_remote_commerce_checkout_data.go +++ b/src/checkout/model_secure_remote_commerce_checkout_data.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the SecureRemoteCommerceCheckoutData type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_sepa_direct_debit_details.go b/src/checkout/model_sepa_direct_debit_details.go index 3a5a037fa..58457f122 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 67fa36502..ab30f532b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4996359f2..c34451d8c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 d03322d80..fb41970f5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 9468f44a8..5a42b7164 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 56e690737..175d09e98 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8bffa15da..94c8ca9cc 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0bf664a59..c951529d4 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 2f5410601..2b8f837ed 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 d1af4dedb..8acd30cbf 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 1ebfc5c59..e065a6c96 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a82a8b2b3..26586966a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 db3eddeea..b2084325e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the StoredPaymentMethodDetails type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_stored_payment_method_request.go b/src/checkout/model_stored_payment_method_request.go index 6694bc346..56215e0f8 100644 --- a/src/checkout/model_stored_payment_method_request.go +++ b/src/checkout/model_stored_payment_method_request.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the StoredPaymentMethodRequest type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_stored_payment_method_resource.go b/src/checkout/model_stored_payment_method_resource.go index edd921041..502b6566d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 863fc1008..44eb22534 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ef6806399..05cf8682e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 51d410dd2..0f5b4d958 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the SubMerchantInfo type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_tax_total.go b/src/checkout/model_tax_total.go index 2b5eb5bd3..54a929f0e 100644 --- a/src/checkout/model_tax_total.go +++ b/src/checkout/model_tax_total.go @@ -11,7 +11,7 @@ package checkout import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the TaxTotal type satisfies the MappedNullable interface at compile time diff --git a/src/checkout/model_three_d_secure_data.go b/src/checkout/model_three_d_secure_data.go index 6040bccde..dc439589e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5c3facb6e..62e6a12c1 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ddb1c4c52..9061759ec 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 062970467..40c2cda19 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 50d5384d9..ab188cf26 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 cb6648ac2..269d46ee0 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8326be923..c0056ebaa 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 fdde30964..425c73b5d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 cd2a93dfd..e211451ab 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b134dd20e..82315d6b1 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e354f90bd..affead037 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 80c9317ac..f98bfa011 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b1da9124e..35d198d23 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 94eb4837e..7d3dbe1fc 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f4f1bef04..2e27629d6 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 845f2f99d..fd37d5bcc 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b5a0a83ca..bad2a642f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 353bb7d39..c605df924 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 111159df7..e3d6c6818 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7a4dbfdbe..dcf91b203 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 669c0678a..375ce05f1 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8a750e54c..7d2ade1a4 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 94ea5471d..0c32c1e57 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f1593fde5..56bec91d5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 fe9f28938..709ef2047 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 edceb3ebf..3d7e7e829 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 68c43f503..d6e5cd1d4 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 091b1d76b..062b5a4fa 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e9cf1b542..c78fa81d4 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 9cc515097..8953031ee 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5989f4231..38fc3c00d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the BalancePlatformNotificationResponse type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_bank_account_details.go b/src/configurationwebhook/model_bank_account_details.go index f1b5bf71d..9adaffb92 100644 --- a/src/configurationwebhook/model_bank_account_details.go +++ b/src/configurationwebhook/model_bank_account_details.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the BankAccountDetails type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_bulk_address.go b/src/configurationwebhook/model_bulk_address.go index abee621dc..0b4ce026d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7f1bf746b..b57344f2b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 966cee45a..a2379a6ba 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 cbf9b7968..e17c4a8c3 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ea1606f32..8966499c7 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 dafcb7221..ac0a95ad4 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 1814a9679..b9ca5013a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b02b71f45..e3fc2d14c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 beba1920a..c9b2c62bc 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0216f7baf..bc06cc40c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b32b05694..1dbd4d925 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 1f2043b42..1b7393019 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 01deeaeff..3e5a97b2e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the CronSweepSchedule type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_delivery_address.go b/src/configurationwebhook/model_delivery_address.go index 38c8d793e..db9db292d 100644 --- a/src/configurationwebhook/model_delivery_address.go +++ b/src/configurationwebhook/model_delivery_address.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the DeliveryAddress type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_delivery_contact.go b/src/configurationwebhook/model_delivery_contact.go index 6c6dad73a..e3e4c61e6 100644 --- a/src/configurationwebhook/model_delivery_contact.go +++ b/src/configurationwebhook/model_delivery_contact.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the DeliveryContact type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_expiry.go b/src/configurationwebhook/model_expiry.go index cb32ae975..5736e3029 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 51c06ee87..697d3814f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 48a61a4a8..4e9f347b0 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0ba081e19..ba0223357 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 91905ef63..80483e84b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 2d4b40f4d..6278610a1 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 83e2d2a25..68cf765b0 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 2d979ef43..8ef75adfb 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 fa078998d..b863ea136 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 53ceb7c84..82f626185 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a5f2ea1cb..ef013fd2e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ae08cfeba..5c092d762 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 016c682e3..159a43702 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ccc3db029..d407db5a1 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 036561a71..1c3bd34d6 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a045d2fdd..f45a3bb5e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f88d280fd..9aa75da31 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6461ad760..b2c2fb778 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f4ec3519a..63f56b153 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the SweepSchedule type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_uk_local_account_identification.go b/src/configurationwebhook/model_uk_local_account_identification.go index a2561570c..7d0f9cc8d 100644 --- a/src/configurationwebhook/model_uk_local_account_identification.go +++ b/src/configurationwebhook/model_uk_local_account_identification.go @@ -11,7 +11,7 @@ package configurationwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the UKLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/configurationwebhook/model_us_local_account_identification.go b/src/configurationwebhook/model_us_local_account_identification.go index 8bf22d1ff..9275f2e6b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 78acbebda..6ae661d2a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 96501f79c..0c04f4a7a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 423e481a3..c7664ecb8 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 84e68b9d9..3cce7e328 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // GeneralApi service diff --git a/src/dataprotection/model_service_error.go b/src/dataprotection/model_service_error.go index f9f67d435..d562832f4 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8b84c06ef..ed88dcce9 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a59c68c39..98cbb0f38 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 978789038..5c7642687 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // GeneralApi service diff --git a/src/disputes/model_accept_dispute_request.go b/src/disputes/model_accept_dispute_request.go index 864a67f84..4815a7139 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4f28593c4..8d8e63143 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 2a9205359..64479923c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a9b7ae6d9..901c6d17f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 78ae75dcc..a865292fb 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a3d84a2bb..3543bbd5d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8be6f7b6b..1720dbecd 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c32ed69f9..9ff31dbdc 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 163460f06..a0340d0da 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 870ad2587..ae572198a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 fdd8d1c78..21343796d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 583bca36c..ed1946db0 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 205934ede..71ee07156 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 db29b67f9..be933a87f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4cf61f81e..0f779f70c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 15231b932..f9aaff692 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/v9/src/webhook" + "github.com/adyen/adyen-go-api-library/v10/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 6a09843c1..6db6be657 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/v9/src/webhook" + "github.com/adyen/adyen-go-api-library/v10/src/webhook" "github.com/stretchr/testify/assert" ) diff --git a/src/legalentity/api_business_lines.go b/src/legalentity/api_business_lines.go index ab65c6f3c..4c06fbd26 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // BusinessLinesApi service diff --git a/src/legalentity/api_documents.go b/src/legalentity/api_documents.go index 1bc720ebd..d67896372 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // DocumentsApi service diff --git a/src/legalentity/api_hosted_onboarding.go b/src/legalentity/api_hosted_onboarding.go index c5c388317..c860fa349 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // HostedOnboardingApi service diff --git a/src/legalentity/api_legal_entities.go b/src/legalentity/api_legal_entities.go index 223b4ba13..6f4a5cf32 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // LegalEntitiesApi service diff --git a/src/legalentity/api_pci_questionnaires.go b/src/legalentity/api_pci_questionnaires.go index c98779815..567b37e4e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // PCIQuestionnairesApi service diff --git a/src/legalentity/api_terms_of_service.go b/src/legalentity/api_terms_of_service.go index 1cfd9a048..f2df8e47a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // TermsOfServiceApi service diff --git a/src/legalentity/api_transfer_instruments.go b/src/legalentity/api_transfer_instruments.go index 762a94335..155d0ce31 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // TransferInstrumentsApi service diff --git a/src/legalentity/client.go b/src/legalentity/client.go index 3578df7c1..4dde8afa9 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 2345a4a55..638c1d240 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 632edbc53..ced6c6e74 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 69af2f40f..96464c676 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 aaaf06358..a77e859d5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 57b112211..012d8266c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ba7d8e245..2983317ac 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 1e6abd1c3..fdd51bc91 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 d64b2f70d..1378fdf94 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 09c67b3ba..588d85c94 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8ac0d037d..dedbf630e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 010988965..7a79b8114 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 bb452393a..c1c5a5e34 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 d291374d8..40d19f84a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 bfbadd41c..523e42d4e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 bf7ef6bab..e143bfd29 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 aeee4430c..cf38e6eaa 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e3bbc4cdf..002fb5e7f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 3f5bae2d5..fe688bf69 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 18aca9237..f872adefe 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 3f7d4da36..18a2f3d0c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 79e0a41ec..8bbfc87b5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 dc7893e56..9336d01db 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 3fcc64447..010ae7e57 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 d6c13f16c..f1aa17ef5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 561c86dbf..aaa9cea17 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 cbee1b469..19c969a02 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 3c5d52542..9909af698 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 53a0ba9ee..dd8ca7050 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0f08e31e1..ff9dd0c7a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 86b6d8fc8..ef5bf4d23 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0ebfc1380..cfbd28c73 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c7938cd1e..b135b4a4a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 fce974ec4..e0a13d17b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 1bc244d2d..7c2f90545 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 549067efd..d884d98b8 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7e0f7a216..7184fc993 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 50c975f22..c53aeb420 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 55cd3cbca..64abe15e8 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 198e49b4f..35bd5cdce 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e0096ae61..07221adad 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ebb9d81ce..e3b2c0bf9 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 9676fdbbc..2849bfa4e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f03a39aa2..c8ff7eeff 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 3c1a4abaf..949fb0d45 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b4ab4ab1b..10678a8b8 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 570d5c18d..5e2e099d5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0fa3ed213..0d4974ff6 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 826e650a8..066e64ea8 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 dbed432f8..73c29bd3b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the OnboardingLinkInfo type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_onboarding_link_settings.go b/src/legalentity/model_onboarding_link_settings.go index 27d968adc..92b98b277 100644 --- a/src/legalentity/model_onboarding_link_settings.go +++ b/src/legalentity/model_onboarding_link_settings.go @@ -11,7 +11,7 @@ package legalentity import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the OnboardingLinkSettings type satisfies the MappedNullable interface at compile time diff --git a/src/legalentity/model_onboarding_theme.go b/src/legalentity/model_onboarding_theme.go index 4ba7afd71..22142f141 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 15f9d00cf..768329941 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c6c031f60..4adbf96b2 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 84402b7f4..74f60443c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 3bdf57420..0306c42dc 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6299cb562..0ee4a2420 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 764a1adac..76d3d6692 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 77c45b194..68052d93e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4ffd7196e..8ff63c65b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 2cb949c9a..0fd70424d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a20507f9d..0c022c988 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0971b34f8..064fc578c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 80c63195c..9c88d33aa 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ed8ae12c8..138e4394d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 3234fc36e..af17134df 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 df21b900e..0dd71162a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 9b3e24e85..c7278def7 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a21af2145..729d98e19 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ee2e4a780..63e6ed8e9 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 60ab1da6e..221ac8dcd 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8ca3e96b3..66ebbb7c8 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 3681443d6..fe81d6d6b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a3af0a9e4..17feab1b3 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 598a01a28..1e7d98610 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 2f35a15e5..61ab7a338 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8e398e9bf..72fcc6168 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4b887f47d..e3db7b150 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8b773df0d..500e78c29 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 cfa687f4f..c694259b4 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 480e8cbe4..4df138674 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 62b84c00d..adf1e1009 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c24cc6627..d555f9ea7 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 22a7882df..7b2554e14 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 280302e69..87d205210 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 dff97f1b0..654715891 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // AccountCompanyLevelApi service diff --git a/src/management/api_account_merchant_level.go b/src/management/api_account_merchant_level.go index 52f4b66c3..4b54d4ff3 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // AccountMerchantLevelApi service diff --git a/src/management/api_account_store_level.go b/src/management/api_account_store_level.go index 21fd688b1..3ffc6f998 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 aaee7b1f3..14d07db68 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 792e23cc7..bc537a4f8 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5eb39b718..45ce209a1 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f68736d1f..35e411ec1 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e83d59c74..bbcf12e24 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c52a6a659..96d29a181 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ed212bc43..54551713f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a2f29e0c7..8e0551964 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7546a7724..7f38037a2 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // ClientKeyMerchantLevelApi service diff --git a/src/management/api_my_api_credential.go b/src/management/api_my_api_credential.go index b96f54bf5..5dac75631 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e6142fdd9..8a2102b4a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6c0edd7ff..89388ae27 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0c7cc60d8..63ae776ac 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 9f5a02ac9..b9ce5118e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 1b91f238a..ef6be349f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8776dd02e..aac3c2661 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 66eccedca..e8ecbb2b0 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a8d98ab78..ee6a07f46 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 23b41ac35..9d7f51e73 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6a196f657..83cf309ff 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6d8f10fc2..ce6524512 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // TerminalSettingsTerminalLevelApi service diff --git a/src/management/api_terminals_terminal_level.go b/src/management/api_terminals_terminal_level.go index 1d4fbd3c7..8df445a91 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // TerminalsTerminalLevelApi service diff --git a/src/management/api_users_company_level.go b/src/management/api_users_company_level.go index 1107a74a2..6e349209c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // UsersCompanyLevelApi service diff --git a/src/management/api_users_merchant_level.go b/src/management/api_users_merchant_level.go index 84e3d2d67..afbb33a6f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // UsersMerchantLevelApi service diff --git a/src/management/api_webhooks_company_level.go b/src/management/api_webhooks_company_level.go index fbd4141d2..0bd16d5a0 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // WebhooksCompanyLevelApi service diff --git a/src/management/api_webhooks_merchant_level.go b/src/management/api_webhooks_merchant_level.go index f4a5913d4..42e970bd8 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // WebhooksMerchantLevelApi service diff --git a/src/management/client.go b/src/management/client.go index db45a2a56..63879dda0 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 19df6c110..b277b2902 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c276ac396..5336d4397 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 35f3fb5d8..42a5b8625 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 32cfa25fd..1c66ea226 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5d1889d3b..56394e94e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 3e4f68dde..5a27af46c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 46d011c3d..e060ad01d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e0cd513f1..7d13d8553 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6cc60931a..992702dc7 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e51190050..bf3cb0fe8 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the AndroidApp type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_android_app_error.go b/src/management/model_android_app_error.go index 80527c23b..931d9dfbb 100644 --- a/src/management/model_android_app_error.go +++ b/src/management/model_android_app_error.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the AndroidAppError type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_android_apps_response.go b/src/management/model_android_apps_response.go index 558c07c07..4436546d9 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8015de461..5e480c854 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4b21ee093..16611c994 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f6c7d6a88..7b6914190 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 27af7661b..c3a9f96b3 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 280e3a542..9c9c019b3 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 65828fca7..a24511650 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 2809d0f20..47ac42e86 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 9279c629f..66bfcb2e9 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0d5ce3eed..6a86eb0f6 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6dba91325..046d8a2ed 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 82e1572e9..aa6f0ef23 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 74007ea17..446b709bc 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 fa97df7f4..e310e3b0b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 d0f61b81d..43159d686 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 befb2cbca..25809a031 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a68fcec64..e69fda2db 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 91c46222c..2233ce821 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4b1099a1e..993b7a714 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 660a65145..9ba1ead68 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 31a69df61..97b246e99 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 2521f8632..ad13aa80e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 06663d208..0cb72a3ac 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 29566515d..b60c40cbe 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f576fd962..a2b008bab 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4ed785a71..b41675bcd 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 2afca97d7..d01502052 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 1c2feea87..d8a990ad5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 34517f27f..0927aae41 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 9b7d6b47c..c31510953 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c451a5e92..38228fbaa 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4f830b54d..2b6a61ab0 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 3566f38bc..e412ce25f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 efc045176..e5e213fd5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8d1cf820f..4d45071b8 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a899be562..6dca74b40 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ee6fd7ebb..0649a9c64 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 70340782b..2f495f8d2 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 79c91cc04..16fbb84e3 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7ad3990b1..d812ca464 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 88e733569..782185cb8 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b2c633716..781b5c7e6 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4602ab032..e0d6408c8 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 612fa0e85..8f14e2c25 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4ec08b8e4..042dc2805 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0a9f5ec7c..7c63a9b2d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ee14c10ca..a8764da17 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5e3c3de96..1000b2e26 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 d3a0d305c..c0641e132 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 548be8383..2bb5fbba0 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 97024befa..b31a93fdc 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ae3e6dca3..649a9339b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 372872cf1..c56544c2f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7cf95d496..043004235 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 bb6494920..7d4a004b7 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5c9aa7b8f..9d49d5b44 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f569eb3d7..0821113d5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 31d35a74c..dc2b65cba 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 fbd9b998a..893c24a60 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f68e03af4..3d6666a97 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 9e33e11e6..1389dee1a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c6936fce6..5375c1331 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a39ba5baf..1096d18b5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 1cba3cc6f..fcf8daf48 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 be02dac01..a86f6d649 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 cd6b17983..45f161a6a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6979abb4d..fe43228ac 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 00754fa35..0d06b222e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c0d7fe0e1..b0c2f63c9 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ffe8be270..91cd1e8a9 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c30d442ef..18a8a7ce4 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 43ad85983..c7dfc1780 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f8061fd79..376e8afc1 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 1fdcd1ae0..b1efdcce4 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e8bfccf0f..920b6f448 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 27e6b886f..63b2a1e1a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 62c5f8f07..176fd21d9 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 3c6e9027e..cff583b55 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a5613b3b5..ab2565bab 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 2d64a64e2..9a44239ae 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 900e82465..d1a7b7c5a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 aee92fd70..e135c81e8 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 64f05447f..8ea2e7243 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 61c96ef55..919f467f0 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6bf24e6d3..df2b00b31 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 534089c6b..62d1185b0 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f2401410f..b61449208 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 17b74367f..e662dad85 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e0805c468..c35da4373 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5483be45f..fdd5ff724 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4ad66c245..48627cae4 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 17c6e06e2..efe2470fa 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f9a626a84..98ab52c54 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8b906b093..ae1c374b2 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 22984d294..ae93e9d32 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 2519fd95f..5c768b75e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 9bbfb682b..a19fdc276 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a103ff4c4..0674f6293 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f938c3f07..65d44fdfa 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the ReleaseUpdateDetails type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_reprocess_android_app_response.go b/src/management/model_reprocess_android_app_response.go index f4ef1fe2e..0189ebfab 100644 --- a/src/management/model_reprocess_android_app_response.go +++ b/src/management/model_reprocess_android_app_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the ReprocessAndroidAppResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_request_activation_response.go b/src/management/model_request_activation_response.go index 3246398ff..1c6c26c11 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 99666d60c..4740599ea 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ddfeb31ab..81017c24f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 aab7db536..6477d1daf 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 9b33a1904..8288f05c6 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 d3b9686d0..af94c3d47 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6a78333be..520a83300 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e32689f59..3f7380a69 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 11a3d723b..488bd66bd 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6b4aadf67..58b547ec6 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5289c4988..c127b46ff 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 50b3f64d6..289998bc0 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 08298da99..184559826 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 fd3c7c83c..0b877ed01 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6644eb4a6..389f5f4f4 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the Store type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_store_and_forward.go b/src/management/model_store_and_forward.go index e9d57cf98..340634c1d 100644 --- a/src/management/model_store_and_forward.go +++ b/src/management/model_store_and_forward.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the StoreAndForward type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_store_creation_request.go b/src/management/model_store_creation_request.go index 9f38f7edf..8cf65410d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 75de456b0..5eee39e41 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 719fb89bd..88406b6ad 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ed6bf0e14..5ff4081a4 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the StoreSplitConfiguration type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_supported_card_types.go b/src/management/model_supported_card_types.go index f2c8fc273..1873c81b3 100644 --- a/src/management/model_supported_card_types.go +++ b/src/management/model_supported_card_types.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the SupportedCardTypes type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_surcharge.go b/src/management/model_surcharge.go index c491870db..210d639c5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 da4d70f1a..b55143a0a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4958520cb..56d6797c5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f30ffe67f..583474905 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 eddb024d7..cbe1c0fb7 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f20f25f31..c70171555 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e76e221ea..a9f970e12 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 986069328..b1fa27dc7 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 2bc4fccda..434bfa34d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 768f5ad7f..4a8b14f26 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 65ac2b1b4..f01a698f6 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the TerminalConnectivityWifi type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_terminal_instructions.go b/src/management/model_terminal_instructions.go index c6e913440..0bb3a8eb7 100644 --- a/src/management/model_terminal_instructions.go +++ b/src/management/model_terminal_instructions.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the TerminalInstructions type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_terminal_models_response.go b/src/management/model_terminal_models_response.go index 41818afff..b66f2b95d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 34e5450f1..2c14e4b5d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 da183cb5b..01dac9209 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 57d617996..c4458b47e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 14c2d8dbf..09f34dea7 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f18eead2c..d6ffdf095 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c61531a1a..2ba0f1001 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0b1993950..f7f91e56c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 957ea5e43..5aacb054a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ebd052699..6bdc0c960 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f12488383..80978d916 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 06b058044..c8353c713 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 50a297b1d..3e76c9e5a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 dd71fb049..aa54c4427 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 406bfc7f5..1f3404367 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a46a97eea..928710727 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ee92b4634..eba181894 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4b6e1216d..0ac5e10dd 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0ae818c43..fbc39f02b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 d264680ac..33d16fff2 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 06286bc9d..b0648105d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 adc846ae5..146f68983 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 31864e58e..23e346dbd 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 bbf452b0b..e4b04954e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4dc56fcde..a834a8c76 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f12369031..3343e2b2c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c0cf76e67..d569442c9 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4a6ea9698..8d33fd0dd 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7753070a4..b6ab52f32 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 9ce269315..c659ee1c3 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c13f38db6..f8976ce7f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5d36c293f..c0f44b87d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 47544290d..62bcd8403 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the UploadAndroidAppResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_upload_android_certificate_response.go b/src/management/model_upload_android_certificate_response.go index 28bf0fb9a..2afb6c00f 100644 --- a/src/management/model_upload_android_certificate_response.go +++ b/src/management/model_upload_android_certificate_response.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the UploadAndroidCertificateResponse type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_url.go b/src/management/model_url.go index 0386c9e31..4158c8a2b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 04044b15f..62424d778 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 fc0752c50..6dd677744 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the VippsInfo type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_we_chat_pay_info.go b/src/management/model_we_chat_pay_info.go index 38cd851a4..e1d3b62ab 100644 --- a/src/management/model_we_chat_pay_info.go +++ b/src/management/model_we_chat_pay_info.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the WeChatPayInfo type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_we_chat_pay_pos_info.go b/src/management/model_we_chat_pay_pos_info.go index 8d8ed52f6..0753a1e8c 100644 --- a/src/management/model_we_chat_pay_pos_info.go +++ b/src/management/model_we_chat_pay_pos_info.go @@ -11,7 +11,7 @@ package management import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the WeChatPayPosInfo type satisfies the MappedNullable interface at compile time diff --git a/src/management/model_webhook.go b/src/management/model_webhook.go index 37b271d81..03df51096 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 07996beb7..13e8ae49b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8ea0e7bc1..46bd239f5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 209ec32b1..d9babec43 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 79a7fdfc4..9580a6e1f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ca6a08afc..d0ee7802c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6955375bd..017c5ae35 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 37d8acbdc..17309b328 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8101ea203..d553e9c3c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4bbd7e67b..7c1d0d49d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f2d44aa6a..5b3b0573a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 2d5351810..26de89704 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 24ce19342..2d3f1cadc 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f24129570..48724c089 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 cdf30459b..c197b9e20 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 277282585..65c5baaca 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 89ca8e77e..ef49f79d9 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 eb06fd528..055c646e7 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 eeeaab3db..c24e05ff1 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the RemediatingAction type satisfies the MappedNullable interface at compile time diff --git a/src/managementwebhook/model_terminal_settings_data.go b/src/managementwebhook/model_terminal_settings_data.go index 212441b1a..f672442aa 100644 --- a/src/managementwebhook/model_terminal_settings_data.go +++ b/src/managementwebhook/model_terminal_settings_data.go @@ -11,7 +11,7 @@ package managementwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the TerminalSettingsData type satisfies the MappedNullable interface at compile time diff --git a/src/managementwebhook/model_terminal_settings_notification_request.go b/src/managementwebhook/model_terminal_settings_notification_request.go index 5aba30464..5e666a257 100644 --- a/src/managementwebhook/model_terminal_settings_notification_request.go +++ b/src/managementwebhook/model_terminal_settings_notification_request.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the TerminalSettingsNotificationRequest type satisfies the MappedNullable interface at compile time diff --git a/src/managementwebhook/model_terminal_settings_notification_response.go b/src/managementwebhook/model_terminal_settings_notification_response.go index e782e1990..44f59dbe5 100644 --- a/src/managementwebhook/model_terminal_settings_notification_response.go +++ b/src/managementwebhook/model_terminal_settings_notification_response.go @@ -11,7 +11,7 @@ package managementwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the TerminalSettingsNotificationResponse type satisfies the MappedNullable interface at compile time diff --git a/src/managementwebhook/model_verification_error.go b/src/managementwebhook/model_verification_error.go index 89c4b4ff8..d87add22a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 21bbc890a..0d773cd52 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f69b4f868..ad82d2d56 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // GeneralApi service diff --git a/src/payments/api_modifications.go b/src/payments/api_modifications.go index d6e01fe2d..6c9dda381 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // ModificationsApi service diff --git a/src/payments/api_payments.go b/src/payments/api_payments.go index dd45994b6..9aa17e3d6 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // PaymentsApi service diff --git a/src/payments/client.go b/src/payments/client.go index 80e9d765c..0ad2a0ad2 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 980a36b73..8a429a9a4 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 faca27a3d..1fe924eb9 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 04d46dd08..728c15e88 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f6450d6ff..8ae8a5b9f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a5eab23f4..06cb46612 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 453423ccb..90c16b4fb 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 513a98c9f..8e7c2e115 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 42a219ca4..8a1b86958 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 31dc34387..9382d85d5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 d32efb8f5..05adbb413 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 aa93ba8b5..17a3ac9fc 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 3bae12b16..d4d3cb292 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 17363af32..cd30f0819 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a5f68f9bd..2f5dffa9c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 3b2f93724..ad619a508 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 10e1329d8..b7b798bf0 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7339d0feb..6ad402fca 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 1bc0f3827..bc23cffa0 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 eae4e67b0..ec9381e54 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 42be934e5..9ff362180 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 3ce402331..25512c3e3 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7a8a3520c..eabb8e542 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 535f34fc7..bdc1d6400 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5bc0c4203..a04a4e454 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b5bc97273..494200b24 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c7c474325..041aab3a5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5d6b496ac..52bda7c0d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4b398c89e..e870a78c9 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b4c219889..c284900e5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a3daddaac..0ba3068d9 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f10f35c6d..8e6e85636 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5f9d56fb8..fc0bb2b0d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c5c5e2044..de98d2017 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 db4cd454b..c1b1e7e24 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e7be69816..479eebf42 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 58701656e..5df5b97e1 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 15dbdac7a..ff5cb7fa9 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 003d30936..03aae1a3b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 1a1fde911..c16384ed9 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 d2e6e2043..54e224944 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8d68412c1..2d3d8b312 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 75eb8f56c..fa53742ea 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 fa72532c7..fcb98c214 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 cd96662ed..531d9c94c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 06b92fb2a..0f26e57b0 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 169dc6425..4bd814802 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 827116549..939e581fd 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 89c3edf76..ae1585ff3 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 80e360152..c1ca813ae 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 681329375..f2c0b217b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 443d0fdd3..d9f487d07 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f5e41fcf7..8cb76b214 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7f57da799..025f08746 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c69755c29..1e8f9156a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 fb0dbc6d5..f816b8b36 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5fbe9fdc2..5e435983b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 1db313d45..a0c190c18 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 727710271..711312f3b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 fd1a99da3..a48a43b60 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a2186486e..2f6b46d65 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a167b83a1..30fbd1465 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 93cf4c490..391581c56 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 20d7e3fbf..2b453d190 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 34904e3b7..3d0b8d2db 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the SDKEphemPubKey type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_secure_remote_commerce_checkout_data.go b/src/payments/model_secure_remote_commerce_checkout_data.go index 15008b23f..52488a643 100644 --- a/src/payments/model_secure_remote_commerce_checkout_data.go +++ b/src/payments/model_secure_remote_commerce_checkout_data.go @@ -11,7 +11,7 @@ package payments import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the SecureRemoteCommerceCheckoutData type satisfies the MappedNullable interface at compile time diff --git a/src/payments/model_service_error.go b/src/payments/model_service_error.go index 3a8d05762..0d8659751 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 68a1d7421..475692805 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 9f08f8d72..c11b7946e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 d54b8af27..09ce14444 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 d7537199a..bf61ad861 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 36e223650..a2691a970 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6c1f8a688..be53f6513 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8ca2c6066..e7574c803 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f5b9331f0..b4aa0bca3 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 cb569c3cb..fb523ca7a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 86aa25566..67d3289e6 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0e9d6200b..450ea24d5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 54e688e1c..50e7f676f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 abc4ea45a..1defc3e97 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 49e76ef7f..45b16ec2a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a16f5e15b..b304f76e4 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // InitializationApi service diff --git a/src/payout/api_instant_payouts.go b/src/payout/api_instant_payouts.go index 437d041a5..acd10d6cc 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // InstantPayoutsApi service diff --git a/src/payout/api_reviewing.go b/src/payout/api_reviewing.go index 08a6b7766..b4375861a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // ReviewingApi service diff --git a/src/payout/client.go b/src/payout/client.go index 597d7140f..bb2c4d669 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 50bc5c5f9..6ecf4c071 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 757437d0b..092432b05 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 87d986f2f..9843d6c71 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b72018ed4..b02e17443 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e4952b54c..e395db532 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6d96e9807..337534df4 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 79f7389aa..a19fc40fb 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a7fad8579..b5fef78ff 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7241ee4cc..a6673b6ee 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c4cbecc49..cab0d06fc 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e3a9ddae6..5a5dd0855 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5095a2cf9..a83f8a358 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 224857507..c2e9b34e8 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ce6a0970e..f8fd15b0a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f9e5ec39d..64ee8c4fd 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f21e4464d..881748694 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 3c22835e2..fcd4abaac 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 23d89f60f..5780ebe34 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0c7506d20..43656d4d2 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ee742d998..f89e2608e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c602b7bf1..54365607a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 351a8e676..6dd2c986a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 11900856f..25df4443d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 01982c41f..9b65bd7a7 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 bda3a0e76..4d5e71eed 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 11d3f8344..fc5f35f0c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 44d43f4e4..6f11356de 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 73cc9d4c3..7f5f19b32 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e122ff9ad..216ef70b9 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ae6cb230c..ab9500164 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 cec4d2255..14ea6df71 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // PlatformsAccount PlatformsAccount service diff --git a/src/platformsfund/api_default.go b/src/platformsfund/api_default.go index 82f08a916..991611f18 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // PlatformsFund PlatformsFund service diff --git a/src/platformshostedonboardingpage/api_default.go b/src/platformshostedonboardingpage/api_default.go index 8b40f194e..0ce57bfb5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // PlatformsHostedOnboardingPage PlatformsHostedOnboardingPage service diff --git a/src/platformsnotificationconfiguration/api_default.go b/src/platformsnotificationconfiguration/api_default.go index 03dac1b81..6e87c8fcf 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // PlatformsNotificationConfiguration PlatformsNotificationConfiguration service diff --git a/src/posmobile/api_general.go b/src/posmobile/api_general.go index 824d9b2ea..1aead1a33 100644 --- a/src/posmobile/api_general.go +++ b/src/posmobile/api_general.go @@ -13,7 +13,7 @@ import ( "net/http" "net/url" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // GeneralApi service diff --git a/src/posmobile/model_create_session_request.go b/src/posmobile/model_create_session_request.go index 0b9d621fc..cd5e54334 100644 --- a/src/posmobile/model_create_session_request.go +++ b/src/posmobile/model_create_session_request.go @@ -11,7 +11,7 @@ package posmobile import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the CreateSessionRequest type satisfies the MappedNullable interface at compile time diff --git a/src/posmobile/model_create_session_response.go b/src/posmobile/model_create_session_response.go index abc85f0f2..8c9f6c047 100644 --- a/src/posmobile/model_create_session_response.go +++ b/src/posmobile/model_create_session_response.go @@ -11,7 +11,7 @@ package posmobile import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the CreateSessionResponse type satisfies the MappedNullable interface at compile time diff --git a/src/posterminalmanagement/api_general.go b/src/posterminalmanagement/api_general.go index 1616e001f..836e5ca02 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // GeneralApi service diff --git a/src/posterminalmanagement/model_address.go b/src/posterminalmanagement/model_address.go index 0d18dfa0b..ff14100d4 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e5094083d..7a2e72c7a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 03bb368a9..3df8b45cd 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5f5447df3..b5fbaa158 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7779606e2..d9e4c7020 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e2f84322e..ba0989ecb 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e49b072b5..aba872022 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6e34c29db..884a3c6e7 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 17a3e26ad..b850e79dd 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 aa219095e..e0ec86995 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e167587d4..968c88cea 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 108b98864..f04911729 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 53ff93ffd..bf127911c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c0d73068f..43bce334f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7c1ed9e6c..2a9e0ce82 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // GeneralApi service diff --git a/src/recurring/model_address.go b/src/recurring/model_address.go index ee97bf6eb..11cd9d41a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 63d71d5e9..68db39633 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 17380ded0..3e8a5b5eb 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ef4e8c361..cbea16d47 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 1298e02f8..ff5994d38 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 bef86dfbf..837d302f7 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5d0e12d17..90e3aa499 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 08e1f0b76..f2cd79292 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4594059b6..7674c9ee6 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7ff56978a..b5eef69dc 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 9d3efa798..3263709dd 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 478a0469a..772cd20c3 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 db6f582f4..c3c213488 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 3b650b730..d602a4b16 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b1f712cf9..a9ded016d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5cd2312e6..ce7dca6dc 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0616b29f6..fa69a20c6 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a3e6c938e..98167f8e7 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a17cf0ebc..c67e61d64 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0542c9424..b39095e8c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4e9463344..2058254d9 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6b3eec529..c43c6436d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 d3a45f6ca..761e787a9 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c924ff1e4..4f0522a28 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0858fdf49..f710ec5ed 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 9c081be8d..4f81d5baa 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7ba51b032..f6b6294dd 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 da8fec0a9..0977e6006 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 cd6855849..37c5174b5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ca16a9c10..044bcd150 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 59f8f8af9..28c47fa3d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // GeneralApi service diff --git a/src/storedvalue/model_amount.go b/src/storedvalue/model_amount.go index e493f1418..85ccb1abc 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4a8f76e73..31edb7686 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 a5d43bad1..5aeb02827 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7cc522b4a..3b7f2739b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b89f4b227..8b8926c05 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b2b5c3511..2bc4195cf 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ca1b573dc..8eceed22b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0f6c50fc4..b812abb20 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 260e69bc9..ae78cab98 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 739d81577..057366319 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4929bd9b8..893fe2e16 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 45c594c83..6306a1035 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 73decdf44..c6030ac5b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7613ac926..53467b8d9 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 91a32b0a8..890dbffc1 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7c5db0ab0..c125a8d03 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 14e937d50..579c60c13 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b827f247a..8b4f60732 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 61961befe..cbda9ec3b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 68ec0db62..c4ed28375 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 163a2dc04..4ef1fb546 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b3d1fcb0a..7c0497233 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // CapitalApi service diff --git a/src/transfers/api_transactions.go b/src/transfers/api_transactions.go index 6fdb307cd..6dc17ed74 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // TransactionsApi service diff --git a/src/transfers/api_transfers.go b/src/transfers/api_transfers.go index 0568684f2..e585ffe30 100644 --- a/src/transfers/api_transfers.go +++ b/src/transfers/api_transfers.go @@ -17,7 +17,7 @@ import ( "strings" "time" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // TransfersApi service diff --git a/src/transfers/client.go b/src/transfers/client.go index 4b3847a55..06fb65066 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 95f2c9a7c..ed9440eee 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f656aa296..ce57015e6 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0293e3c8e..1a561563b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the Amount type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_amount_adjustment.go b/src/transfers/model_amount_adjustment.go index b18a59d44..f21790dad 100644 --- a/src/transfers/model_amount_adjustment.go +++ b/src/transfers/model_amount_adjustment.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the AmountAdjustment type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_au_local_account_identification.go b/src/transfers/model_au_local_account_identification.go index c1e74ceb4..7ce92af1a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the AULocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_balance_mutation.go b/src/transfers/model_balance_mutation.go index 446463a6b..2db8c5675 100644 --- a/src/transfers/model_balance_mutation.go +++ b/src/transfers/model_balance_mutation.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the BalanceMutation type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_bank_account_v3.go b/src/transfers/model_bank_account_v3.go index 14f2e98cc..a296c1340 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 bc8364e47..d498fe49e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4ed462fc8..731fb64a7 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e41d0ddbf..1910d0241 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7a2491643..14b017ecb 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5604076ca..6a46292a3 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 3a152e58f..768529839 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e2e0a7482..a2bb530c5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the CapitalGrants type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_confirmation_tracking_data.go b/src/transfers/model_confirmation_tracking_data.go index b274babde..5d6b1c4a7 100644 --- a/src/transfers/model_confirmation_tracking_data.go +++ b/src/transfers/model_confirmation_tracking_data.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the ConfirmationTrackingData type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_counterparty.go b/src/transfers/model_counterparty.go index 54b75cc3d..d566d4ad5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e6df2c7ea..0f7da9d1e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0d9c2a193..102d24f56 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 27c255c98..5a13c14c8 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e1ddd2034..dccb7ac8c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the DKLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_estimation_tracking_data.go b/src/transfers/model_estimation_tracking_data.go index deadaa1d9..29a6784a5 100644 --- a/src/transfers/model_estimation_tracking_data.go +++ b/src/transfers/model_estimation_tracking_data.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the EstimationTrackingData type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_external_reason.go b/src/transfers/model_external_reason.go index f05862549..840fb31e3 100644 --- a/src/transfers/model_external_reason.go +++ b/src/transfers/model_external_reason.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the ExternalReason type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_fee.go b/src/transfers/model_fee.go index 3600cf11e..0fa5b5105 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the Fee type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_find_transfers_response.go b/src/transfers/model_find_transfers_response.go index 1d7d94656..28733ecb1 100644 --- a/src/transfers/model_find_transfers_response.go +++ b/src/transfers/model_find_transfers_response.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the FindTransfersResponse type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_hk_local_account_identification.go b/src/transfers/model_hk_local_account_identification.go index 8c39f41bb..ba699873d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 758435df3..c14c4891c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 79fed1787..c2b97721d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 fc75cadd3..ffec8b9e9 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the InternalCategoryData type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_internal_review_tracking_data.go b/src/transfers/model_internal_review_tracking_data.go index b89b55ff0..7ce7c94e2 100644 --- a/src/transfers/model_internal_review_tracking_data.go +++ b/src/transfers/model_internal_review_tracking_data.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the InternalReviewTrackingData type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_invalid_field.go b/src/transfers/model_invalid_field.go index 093e45300..ddf27fbfd 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8300ce6db..c643b10b3 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 79d1c38a9..da000c028 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 771bbaf2d..84e62783f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 39a063ea6..ab6890013 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ed6ed226d..b26ed2f87 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 523c2c9d0..6ddf58e09 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the MerchantData type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_modification.go b/src/transfers/model_modification.go index 9ef164b70..6d2fe10fc 100644 --- a/src/transfers/model_modification.go +++ b/src/transfers/model_modification.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the Modification type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_name_location.go b/src/transfers/model_name_location.go index a17a9c393..2120a04e5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 312fcefea..7f6141582 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b5b8b8ee1..8f9332898 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 cb23d0eff..f8ea4423f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 fde189acc..06bbef48c 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6199121ea..e34dbdc7f 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 51dea4bca..bc5a08c34 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8a44c3870..547477647 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e42ea148d..dd261ebfe 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 d64b680c7..e38f25568 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 f8d8117d4..6a2cbf383 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 288104c2d..28589a27e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5b117afc1..e1cced737 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 9ddbf797b..290539bf3 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 edea31007..fb165db61 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the ReturnTransferResponse type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_routing_details.go b/src/transfers/model_routing_details.go index f9e2a1178..c7dab1d9b 100644 --- a/src/transfers/model_routing_details.go +++ b/src/transfers/model_routing_details.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the RoutingDetails type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_se_local_account_identification.go b/src/transfers/model_se_local_account_identification.go index d781b4391..80f27b886 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 cd71fcd73..6e7312696 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 cd74bd079..65e1acac4 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 eba4c3a20..55e3efe24 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 e0810ff32..52b7e685e 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the Transaction type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_transaction_event_violation.go b/src/transfers/model_transaction_event_violation.go index afc9d1008..a1e957ba2 100644 --- a/src/transfers/model_transaction_event_violation.go +++ b/src/transfers/model_transaction_event_violation.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the TransactionEventViolation type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_transaction_rule_reference.go b/src/transfers/model_transaction_rule_reference.go index 35d958741..946013b90 100644 --- a/src/transfers/model_transaction_rule_reference.go +++ b/src/transfers/model_transaction_rule_reference.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the TransactionRuleReference type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_transaction_rule_source.go b/src/transfers/model_transaction_rule_source.go index 1878f848b..2a5a9cdd6 100644 --- a/src/transfers/model_transaction_rule_source.go +++ b/src/transfers/model_transaction_rule_source.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the TransactionRuleSource type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_transaction_rules_result.go b/src/transfers/model_transaction_rules_result.go index 473bcec29..4cc3650b9 100644 --- a/src/transfers/model_transaction_rules_result.go +++ b/src/transfers/model_transaction_rules_result.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the TransactionRulesResult type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_transaction_search_response.go b/src/transfers/model_transaction_search_response.go index 4d52b31c9..9b3c3f6c1 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 521a6fe8e..9cb70a309 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7dfd43702..741632cd9 100644 --- a/src/transfers/model_transfer_data.go +++ b/src/transfers/model_transfer_data.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the TransferData type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_transfer_event.go b/src/transfers/model_transfer_event.go index 3f67e1d13..6b03c1b5d 100644 --- a/src/transfers/model_transfer_event.go +++ b/src/transfers/model_transfer_event.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the TransferEvent type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_transfer_info.go b/src/transfers/model_transfer_info.go index 2d4a18c78..646838c17 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the TransferInfo type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_transfer_notification_counter_party.go b/src/transfers/model_transfer_notification_counter_party.go index f9e6ce0e5..e1fb99fbe 100644 --- a/src/transfers/model_transfer_notification_counter_party.go +++ b/src/transfers/model_transfer_notification_counter_party.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the TransferNotificationCounterParty type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_transfer_notification_merchant_data.go b/src/transfers/model_transfer_notification_merchant_data.go index cb35c6658..6fce25461 100644 --- a/src/transfers/model_transfer_notification_merchant_data.go +++ b/src/transfers/model_transfer_notification_merchant_data.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the TransferNotificationMerchantData type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_transfer_notification_transfer_tracking.go b/src/transfers/model_transfer_notification_transfer_tracking.go index 87fd87a48..321051881 100644 --- a/src/transfers/model_transfer_notification_transfer_tracking.go +++ b/src/transfers/model_transfer_notification_transfer_tracking.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the TransferNotificationTransferTracking type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_transfer_notification_validation_fact.go b/src/transfers/model_transfer_notification_validation_fact.go index d595a9647..a34191371 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the TransferNotificationValidationFact type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_transfer_service_rest_service_error.go b/src/transfers/model_transfer_service_rest_service_error.go index e152ab9d3..5a2d66a7d 100644 --- a/src/transfers/model_transfer_service_rest_service_error.go +++ b/src/transfers/model_transfer_service_rest_service_error.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the TransferServiceRestServiceError type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_transfer_view.go b/src/transfers/model_transfer_view.go index 07d1e4d60..1367aa59b 100644 --- a/src/transfers/model_transfer_view.go +++ b/src/transfers/model_transfer_view.go @@ -11,7 +11,7 @@ package transfers import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the TransferView type satisfies the MappedNullable interface at compile time diff --git a/src/transfers/model_uk_local_account_identification.go b/src/transfers/model_uk_local_account_identification.go index 1a505fd6c..8dbfbe1d1 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b6637db3e..514ef7e39 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c628726de..9467f86dd 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 bf56b4197..93611ae35 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 2b3166619..2b25e70fd 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 2878148de..44bceeef8 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 fcbdce9dc..62e0bdeb5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0430b8af1..b14659b47 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 711a1551d..f3e5e3720 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 686421363..7047e44cd 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 3085b6e58..2bc477f79 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4687feb3f..865f91d16 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 59a767791..c86a8b37a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 9d0ff6b92..38a941b5a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 090d2d423..2dee9e8d2 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the CALocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_confirmation_tracking_data.go b/src/transferwebhook/model_confirmation_tracking_data.go index 5fa3bfc75..5a2ac2699 100644 --- a/src/transferwebhook/model_confirmation_tracking_data.go +++ b/src/transferwebhook/model_confirmation_tracking_data.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the ConfirmationTrackingData type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_counterparty_v3.go b/src/transferwebhook/model_counterparty_v3.go index 5ef552402..2074dda52 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 3ed38d410..0f5ccdc67 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 0283d67b6..b0c23d635 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the DKLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_estimation_tracking_data.go b/src/transferwebhook/model_estimation_tracking_data.go index 792945baa..7a24090ef 100644 --- a/src/transferwebhook/model_estimation_tracking_data.go +++ b/src/transferwebhook/model_estimation_tracking_data.go @@ -12,7 +12,7 @@ import ( "encoding/json" "time" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the EstimationTrackingData type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_external_reason.go b/src/transferwebhook/model_external_reason.go index f86e1899d..6fc186dae 100644 --- a/src/transferwebhook/model_external_reason.go +++ b/src/transferwebhook/model_external_reason.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the ExternalReason type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_hk_local_account_identification.go b/src/transferwebhook/model_hk_local_account_identification.go index 18279d989..8c11c77fd 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 6606d2757..af4482301 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 06a283605..3d4838f42 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 69e3e3d77..a39b4c4d1 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the InternalCategoryData type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_internal_review_tracking_data.go b/src/transferwebhook/model_internal_review_tracking_data.go index 4e6d94325..c3ed7df68 100644 --- a/src/transferwebhook/model_internal_review_tracking_data.go +++ b/src/transferwebhook/model_internal_review_tracking_data.go @@ -11,7 +11,7 @@ package transferwebhook import ( "encoding/json" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the InternalReviewTrackingData type satisfies the MappedNullable interface at compile time diff --git a/src/transferwebhook/model_issued_card.go b/src/transferwebhook/model_issued_card.go index d248171ab..00a711315 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 9287a7947..fc6735030 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7d6c8d705..2552bcac0 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 2bc4b9530..cb984b642 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ab81c6351..3a0871faf 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 17c2d17a4..90d24ddf5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 45418bf02..284159d76 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 30f9d2195..6889fca39 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 73648f9a8..b14fcfd3d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 ae7b152e2..f03220fde 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 012fb21c3..6768926d4 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 946d31224..1ca415111 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 d45fdccc0..b68a004b7 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 cc2e5f7e7..710322510 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 68efed028..b7822663a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 26ee9d439..53cb85ec5 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 719c7db26..383f23d46 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 4973203c9..8be6f44c4 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 3872b0c9c..86145f452 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b5b731b30..afe988900 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 11c54cdba..dc354e98b 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 46a50cb91..fc38089d3 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 fe22c7f36..0c5504034 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c13949209..eec920448 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 219b0f23d..e6930c303 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 b18bf485a..e5efd324d 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 3623b7dae..3fa350f4a 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 8c1926d9b..5ffbfec92 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 cf5fc2852..23015c2b1 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 412db0e49..a1f434215 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 da677fdfd..6ee702fe8 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // checks if the USLocalAccountIdentification type satisfies the MappedNullable interface at compile time diff --git a/templates/config.yaml b/templates/config.yaml index 619d74fee..65db3cb19 100644 --- a/templates/config.yaml +++ b/templates/config.yaml @@ -1,5 +1,5 @@ gitUserId: adyen -gitRepoId: adyen-go-api-library/v9/src +gitRepoId: adyen-go-api-library/v10/src structPrefix: true isGoSubmodule: true additionalProperties: diff --git a/templates/custom/api.mustache b/templates/custom/api.mustache index e8ba2c892..d3a1d9a67 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // {{classname}} service diff --git a/templates/custom/client.mustache b/templates/custom/client.mustache index f7c81278d..ab49b6336 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // APIClient manages communication with the {{appName}} API v{{version}} @@ -39,4 +39,4 @@ func NewAPIClient(client *common.Client) *APIClient { {{/apiInfo}} return c -} \ No newline at end of file +} diff --git a/templates/custom/model.mustache b/templates/custom/model.mustache index c968bc44b..d0423b487 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" {{#imports}} "{{import}}" {{/imports}} diff --git a/templates/custom/rest_api.mustache b/templates/custom/rest_api.mustache index 8bcfb325b..31bb8a057 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/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/common" ) // {{classname}} {{classname}} service @@ -136,13 +136,13 @@ func (a *{{{classname}}}) {{#lambda.titlecase}}{{operationId}}{{/lambda.titlecas defer httpRes.Body.Close() {{#responses}} {{#dataType}} - + {{^is1xx}} {{^is2xx}} {{#range}} - + {{#is3xx}} - + if httpRes.StatusCode >= 300 && httpRes.StatusCode < 400 { {{/is3xx}} {{#is4xx}} diff --git a/tests/api_modifications_test.go b/tests/api_modifications_test.go index 47bf0dbe3..62bd31f1c 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/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/v10/src/adyen" + "github.com/adyen/adyen-go-api-library/v10/src/checkout" + "github.com/adyen/adyen-go-api-library/v10/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 a1a57abb3..723de9ef3 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/v9/src/balancecontrol" + "github.com/adyen/adyen-go-api-library/v10/src/balancecontrol" "io" "net/http" "net/http/httptest" "testing" - "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/v10/src/adyen" + "github.com/adyen/adyen-go-api-library/v10/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 d53e1d4ef..7c1bad3eb 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/v9/src/acswebhook" + "github.com/adyen/adyen-go-api-library/v10/src/acswebhook" "testing" "github.com/stretchr/testify/assert" diff --git a/tests/balanceplatform/configurationwebhook_test.go b/tests/balanceplatform/configurationwebhook_test.go index 374a55c48..896c1d20f 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/v9/src/configurationwebhook" + "github.com/adyen/adyen-go-api-library/v10/src/configurationwebhook" ) func TestHandleAccountHolderNotificationRequest(t *testing.T) { diff --git a/tests/balanceplatform/reportwebhook_test.go b/tests/balanceplatform/reportwebhook_test.go index bbea2d87c..38fbb01db 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/v9/src/reportwebhook" + "github.com/adyen/adyen-go-api-library/v10/src/reportwebhook" ) func TestHandleReportNotificationRequest(t *testing.T) { diff --git a/tests/balanceplatform/transferwebhook_test.go b/tests/balanceplatform/transferwebhook_test.go index e067cc793..6b6a4ffdb 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/v9/src/transferwebhook" + "github.com/adyen/adyen-go-api-library/v10/src/transferwebhook" ) func TestHandleTransferNotificationRequest(t *testing.T) { diff --git a/tests/balanceplatform/unit_test.go b/tests/balanceplatform/unit_test.go index 71317ec46..c330f19f6 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/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/adyen/adyen-go-api-library/v10/src/adyen" + "github.com/adyen/adyen-go-api-library/v10/src/balanceplatform" + "github.com/adyen/adyen-go-api-library/v10/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 5ab31831e..aecbcbe18 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/v9/src/binlookup" + "github.com/adyen/adyen-go-api-library/v10/src/binlookup" "os" "testing" - "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/v10/src/adyen" + "github.com/adyen/adyen-go-api-library/v10/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 546fc8991..a0c732c6a 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/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/v10/src/adyen" + "github.com/adyen/adyen-go-api-library/v10/src/checkout" + "github.com/adyen/adyen-go-api-library/v10/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 055bd9bed..29dd71b54 100644 --- a/tests/checkout/integration_test.go +++ b/tests/checkout/integration_test.go @@ -5,9 +5,9 @@ package checkout import ( "context" - "github.com/adyen/adyen-go-api-library/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/v10/src/adyen" + "github.com/adyen/adyen-go-api-library/v10/src/checkout" + "github.com/adyen/adyen-go-api-library/v10/src/common" "github.com/google/uuid" "io/ioutil" "os" diff --git a/tests/checkout/unit_test.go b/tests/checkout/unit_test.go index 8ef8f7c75..f40d9112e 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/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/adyen/adyen-go-api-library/v10/src/adyen" + "github.com/adyen/adyen-go-api-library/v10/src/checkout" + "github.com/adyen/adyen-go-api-library/v10/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 fddecd938..b478f73d3 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/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/adyen/adyen-go-api-library/v10/src/adyen" + "github.com/adyen/adyen-go-api-library/v10/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 c29af0716..e01352600 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/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/adyen/adyen-go-api-library/v10/src/adyen" + "github.com/adyen/adyen-go-api-library/v10/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 255ea5266..02c1ea6c6 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/v9/src/adyen" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/adyen" + "github.com/adyen/adyen-go-api-library/v10/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 f245e8624..909812ee0 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/v9/src/adyen" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/adyen" + "github.com/adyen/adyen-go-api-library/v10/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 2aafbc7e2..f908ed859 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/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/adyen/adyen-go-api-library/v10/src/adyen" + "github.com/adyen/adyen-go-api-library/v10/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 30c3794e7..4d0b47029 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/v9/src/adyen" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/adyen" + "github.com/adyen/adyen-go-api-library/v10/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 b4a9a6084..9a5b01d03 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/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/adyen/adyen-go-api-library/v10/src/adyen" + "github.com/adyen/adyen-go-api-library/v10/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 7dd564502..1a28b32ac 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/v9/src/managementwebhook" + "github.com/adyen/adyen-go-api-library/v10/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 bd40ffba2..55f2bdd43 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/v9/src/checkout" + "github.com/adyen/adyen-go-api-library/v10/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 cd5380949..4771a0071 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/v9/src/checkout" + "github.com/adyen/adyen-go-api-library/v10/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 31c4695f5..3aba7011c 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/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/adyen/adyen-go-api-library/v10/src/adyen" + "github.com/adyen/adyen-go-api-library/v10/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 3b67f76ab..d6ea2fb82 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/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/adyen/adyen-go-api-library/v10/src/adyen" + "github.com/adyen/adyen-go-api-library/v10/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 02eaac953..ed8c171db 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/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/adyen/adyen-go-api-library/v10/src/adyen" + "github.com/adyen/adyen-go-api-library/v10/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/platformsaccount" + "github.com/adyen/adyen-go-api-library/v10/src/platformsfund" + "github.com/adyen/adyen-go-api-library/v10/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 cc4ac4672..bf65f743e 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/v9/src/adyen" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/adyen" + "github.com/adyen/adyen-go-api-library/v10/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 81599a317..78a7ba317 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/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" + "github.com/adyen/adyen-go-api-library/v10/src/adyen" + "github.com/adyen/adyen-go-api-library/v10/src/checkout" + "github.com/adyen/adyen-go-api-library/v10/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/recurring" + "github.com/adyen/adyen-go-api-library/v10/src/webhook" "net/http" "net/url" "time" diff --git a/tests/recurring_test.go b/tests/recurring_test.go index aefcbe039..cc212761e 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/v9/src/adyen" - "github.com/adyen/adyen-go-api-library/v9/src/common" + "github.com/adyen/adyen-go-api-library/v10/src/adyen" + "github.com/adyen/adyen-go-api-library/v10/src/common" - "github.com/adyen/adyen-go-api-library/v9/src/recurring" + "github.com/adyen/adyen-go-api-library/v10/src/recurring" "github.com/joho/godotenv" "github.com/stretchr/testify/assert" diff --git a/tests/storedvalue_test.go b/tests/storedvalue_test.go index d66931ab9..f3ba8c1d3 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/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/adyen/adyen-go-api-library/v10/src/adyen" + "github.com/adyen/adyen-go-api-library/v10/src/common" + "github.com/adyen/adyen-go-api-library/v10/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 1abaf271f..87f893a8e 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/v9/src/transfers" + "github.com/adyen/adyen-go-api-library/v10/src/transfers" "io" "net/http" "net/http/httptest" "testing" "time" - "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/v10/src/adyen" + "github.com/adyen/adyen-go-api-library/v10/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 3df63225f..f433c81e7 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/v9/src/webhook" + "github.com/adyen/adyen-go-api-library/v10/src/webhook" ) func TestWebhook_HandleRequest(t *testing.T) {