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

Commit

Permalink
Release 2.5.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Jenkins committed Sep 30, 2019
1 parent e10d876 commit fb5be49
Show file tree
Hide file tree
Showing 4 changed files with 6 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.4.0"
const sdkVersion = "2.5.0"
const serverMetaInfoHeader = "X-GCS-ServerMetaInfo"

// NewMetaDataProviderWithBuilder creates a MetaDataProvider with the given MetaDataProviderBuilder
Expand Down
1 change: 1 addition & 0 deletions domain/payment/Product840SpecificOutput.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ import "github.com/Ingenico-ePayments/connect-sdk-go/domain/definitions"

// Product840SpecificOutput represents class PaymentProduct840SpecificOutput
type Product840SpecificOutput struct {
BillingAddress *definitions.Address `json:"billingAddress,omitempty"`
CustomerAccount *Product840CustomerAccount `json:"customerAccount,omitempty"`
CustomerAddress *definitions.Address `json:"customerAddress,omitempty"`
ProtectionEligibility *ProtectionEligibility `json:"protectionEligibility,omitempty"`
Expand Down
5 changes: 3 additions & 2 deletions domain/token/CreateResponse.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,9 @@ package token

// CreateResponse represents class CreateTokenResponse
type CreateResponse struct {
IsNewToken *bool `json:"isNewToken,omitempty"`
Token *string `json:"token,omitempty"`
IsNewToken *bool `json:"isNewToken,omitempty"`
OriginalPaymentID *string `json:"originalPaymentId,omitempty"`
Token *string `json:"token,omitempty"`
}

// NewCreateResponse constructs a new CreateResponse
Expand Down
1 change: 1 addition & 0 deletions domain/token/Response.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ type Response struct {
EWallet *EWallet `json:"eWallet,omitempty"`
ID *string `json:"id,omitempty"`
NonSepaDirectDebit *NonSepaDirectDebit `json:"nonSepaDirectDebit,omitempty"`
OriginalPaymentID *string `json:"originalPaymentId,omitempty"`
PaymentProductID *int32 `json:"paymentProductId,omitempty"`
SepaDirectDebit *SepaDirectDebit `json:"sepaDirectDebit,omitempty"`
}
Expand Down

0 comments on commit fb5be49

Please sign in to comment.