Skip to content
This repository has been archived by the owner on Mar 19, 2024. It is now read-only.

Commit

Permalink
Release 2.45.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
IngenicoEPayments committed Dec 12, 2023
1 parent 04caf26 commit bde0ade
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 5 deletions.
2 changes: 1 addition & 1 deletion communicator/MetaDataProvider.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ func getPlatformIdentifier() string {
}

const sdkIdentifier = "GoServerSDK/v" + sdkVersion
const sdkVersion = "2.44.0"
const sdkVersion = "2.45.0"
const serverMetaInfoHeader = "X-GCS-ServerMetaInfo"

// NewMetaDataProviderWithBuilder creates a MetaDataProvider with the given MetaDataProviderBuilder
Expand Down
5 changes: 3 additions & 2 deletions domain/definitions/FraudResults.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ package definitions

// FraudResults represents class FraudResults
type FraudResults struct {
FraudServiceResult *string `json:"fraudServiceResult,omitempty"`
InAuth *InAuth `json:"inAuth,omitempty"`
FraudServiceResult *string `json:"fraudServiceResult,omitempty"`
InAuth *InAuth `json:"inAuth,omitempty"`
MicrosoftFraudProtection *MicrosoftFraudResults `json:"microsoftFraudProtection,omitempty"`
}

// NewFraudResults constructs a new FraudResults
Expand Down
3 changes: 3 additions & 0 deletions domain/payment/EInvoicePaymentMethodSpecificOutput.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,11 @@

package payment

import "github.com/Ingenico-ePayments/connect-sdk-go/domain/definitions"

// EInvoicePaymentMethodSpecificOutput represents class EInvoicePaymentMethodSpecificOutput
type EInvoicePaymentMethodSpecificOutput struct {
FraudResults *definitions.FraudResults `json:"fraudResults,omitempty"`
PaymentProduct9000SpecificOutput *EInvoicePaymentProduct9000SpecificOutput `json:"paymentProduct9000SpecificOutput,omitempty"`
PaymentProductID *int32 `json:"paymentProductId,omitempty"`
}
Expand Down
2 changes: 0 additions & 2 deletions domain/payment/SdkDataInput.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ package payment

// SdkDataInput represents class SdkDataInput
type SdkDataInput struct {
// Deprecated: No replacement
DeviceInfo *string `json:"deviceInfo,omitempty"`
DeviceRenderOptions *DeviceRenderOptions `json:"deviceRenderOptions,omitempty"`
SdkAppID *string `json:"sdkAppId,omitempty"`
SdkEncryptedData *string `json:"sdkEncryptedData,omitempty"`
Expand Down
1 change: 1 addition & 0 deletions domain/product/PaymentProduct.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ type PaymentProduct struct {
Fields *[]PaymentProductField `json:"fields,omitempty"`
FieldsWarning *string `json:"fieldsWarning,omitempty"`
ID *int32 `json:"id,omitempty"`
IsAuthenticationSupported *bool `json:"isAuthenticationSupported,omitempty"`
IsJavaScriptRequired *bool `json:"isJavaScriptRequired,omitempty"`
MaxAmount *int64 `json:"maxAmount,omitempty"`
MinAmount *int64 `json:"minAmount,omitempty"`
Expand Down
1 change: 1 addition & 0 deletions domain/product/PaymentProductResponse.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ type PaymentProductResponse struct {
Fields *[]PaymentProductField `json:"fields,omitempty"`
FieldsWarning *string `json:"fieldsWarning,omitempty"`
ID *int32 `json:"id,omitempty"`
IsAuthenticationSupported *bool `json:"isAuthenticationSupported,omitempty"`
IsJavaScriptRequired *bool `json:"isJavaScriptRequired,omitempty"`
MaxAmount *int64 `json:"maxAmount,omitempty"`
MinAmount *int64 `json:"minAmount,omitempty"`
Expand Down

0 comments on commit bde0ade

Please sign in to comment.