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

Commit

Permalink
Release 2.22.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
IngenicoEPayments authored and jenkins committed Jun 24, 2021
1 parent f7af2ba commit f48ce52
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 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.21.0"
const sdkVersion = "2.22.0"
const serverMetaInfoHeader = "X-GCS-ServerMetaInfo"

// NewMetaDataProviderWithBuilder creates a MetaDataProvider with the given MetaDataProviderBuilder
Expand Down
6 changes: 4 additions & 2 deletions domain/payment/DeviceRenderOptions.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ package payment

// DeviceRenderOptions represents class DeviceRenderOptions
type DeviceRenderOptions struct {
SdkInterface *string `json:"sdkInterface,omitempty"`
SdkUIType *string `json:"sdkUiType,omitempty"`
SdkInterface *string `json:"sdkInterface,omitempty"`
// Deprecated: Use deviceRenderOptions.sdkUiTypes instead
SdkUIType *string `json:"sdkUiType,omitempty"`
SdkUITypes *[]string `json:"sdkUiTypes,omitempty"`
}

// NewDeviceRenderOptions constructs a new DeviceRenderOptions
Expand Down
2 changes: 2 additions & 0 deletions domain/payment/RedirectPaymentProduct4101SpecificInput.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ package payment
// RedirectPaymentProduct4101SpecificInput represents class RedirectPaymentProduct4101SpecificInput
type RedirectPaymentProduct4101SpecificInput struct {
IntegrationType *string `json:"integrationType,omitempty"`
MerchantName *string `json:"merchantName,omitempty"`
TransactionNote *string `json:"transactionNote,omitempty"`
Vpa *string `json:"vpa,omitempty"`
}

Expand Down

0 comments on commit f48ce52

Please sign in to comment.