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

Commit

Permalink
Release 2.42.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
IngenicoEPayments committed Aug 11, 2023
1 parent 6c24080 commit 3bc2216
Show file tree
Hide file tree
Showing 2 changed files with 8 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.41.0"
const sdkVersion = "2.42.0"
const serverMetaInfoHeader = "X-GCS-ServerMetaInfo"

// NewMetaDataProviderWithBuilder creates a MetaDataProvider with the given MetaDataProviderBuilder
Expand Down
11 changes: 7 additions & 4 deletions domain/payment/RefundCardMethodSpecificOutput.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,15 @@

package payment

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

// RefundCardMethodSpecificOutput represents class RefundCardMethodSpecificOutput
type RefundCardMethodSpecificOutput struct {
AuthorisationCode *string `json:"authorisationCode,omitempty"`
RefundProductID *int32 `json:"refundProductId,omitempty"`
TotalAmountPaid *int64 `json:"totalAmountPaid,omitempty"`
TotalAmountRefunded *int64 `json:"totalAmountRefunded,omitempty"`
AuthorisationCode *string `json:"authorisationCode,omitempty"`
Card *definitions.CardEssentials `json:"card,omitempty"`
RefundProductID *int32 `json:"refundProductId,omitempty"`
TotalAmountPaid *int64 `json:"totalAmountPaid,omitempty"`
TotalAmountRefunded *int64 `json:"totalAmountRefunded,omitempty"`
}

// NewRefundCardMethodSpecificOutput constructs a new RefundCardMethodSpecificOutput
Expand Down

0 comments on commit 3bc2216

Please sign in to comment.