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

Commit

Permalink
Release 1.19.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
Ingenico ePayments committed May 7, 2018
1 parent 5abc43b commit 8758a15
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 21 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 = "1.18.0"
const sdkVersion = "1.19.0"
const serverMetaInfoHeader = "X-GCS-ServerMetaInfo"

// NewMetaDataProviderWithBuilder creates a MetaDataProvider with the given MetaDataProviderBuilder
Expand Down
13 changes: 7 additions & 6 deletions domain/mandates/CreateMandateBase.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,13 @@ package mandates

// CreateMandateBase represents class CreateMandateBase
type CreateMandateBase struct {
Alias *string `json:"alias,omitempty"`
Customer *MandateCustomer `json:"customer,omitempty"`
CustomerReference *string `json:"customerReference,omitempty"`
Language *string `json:"language,omitempty"`
RecurrenceType *string `json:"recurrenceType,omitempty"`
SignatureType *string `json:"signatureType,omitempty"`
Alias *string `json:"alias,omitempty"`
Customer *MandateCustomer `json:"customer,omitempty"`
CustomerReference *string `json:"customerReference,omitempty"`
Language *string `json:"language,omitempty"`
RecurrenceType *string `json:"recurrenceType,omitempty"`
SignatureType *string `json:"signatureType,omitempty"`
UniqueMandateReference *string `json:"uniqueMandateReference,omitempty"`
}

// NewCreateMandateBase constructs a new CreateMandateBase
Expand Down
15 changes: 8 additions & 7 deletions domain/mandates/CreateMandateRequest.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@ package mandates

// CreateMandateRequest represents class CreateMandateRequest
type CreateMandateRequest struct {
Alias *string `json:"alias,omitempty"`
Customer *MandateCustomer `json:"customer,omitempty"`
CustomerReference *string `json:"customerReference,omitempty"`
Language *string `json:"language,omitempty"`
RecurrenceType *string `json:"recurrenceType,omitempty"`
ReturnURL *string `json:"returnUrl,omitempty"`
SignatureType *string `json:"signatureType,omitempty"`
Alias *string `json:"alias,omitempty"`
Customer *MandateCustomer `json:"customer,omitempty"`
CustomerReference *string `json:"customerReference,omitempty"`
Language *string `json:"language,omitempty"`
RecurrenceType *string `json:"recurrenceType,omitempty"`
ReturnURL *string `json:"returnUrl,omitempty"`
SignatureType *string `json:"signatureType,omitempty"`
UniqueMandateReference *string `json:"uniqueMandateReference,omitempty"`
}

// NewCreateMandateRequest constructs a new CreateMandateRequest
Expand Down
15 changes: 8 additions & 7 deletions domain/mandates/CreateMandateWithReturnURL.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,14 @@ package mandates

// CreateMandateWithReturnURL represents class CreateMandateWithReturnUrl
type CreateMandateWithReturnURL struct {
Alias *string `json:"alias,omitempty"`
Customer *MandateCustomer `json:"customer,omitempty"`
CustomerReference *string `json:"customerReference,omitempty"`
Language *string `json:"language,omitempty"`
RecurrenceType *string `json:"recurrenceType,omitempty"`
ReturnURL *string `json:"returnUrl,omitempty"`
SignatureType *string `json:"signatureType,omitempty"`
Alias *string `json:"alias,omitempty"`
Customer *MandateCustomer `json:"customer,omitempty"`
CustomerReference *string `json:"customerReference,omitempty"`
Language *string `json:"language,omitempty"`
RecurrenceType *string `json:"recurrenceType,omitempty"`
ReturnURL *string `json:"returnUrl,omitempty"`
SignatureType *string `json:"signatureType,omitempty"`
UniqueMandateReference *string `json:"uniqueMandateReference,omitempty"`
}

// NewCreateMandateWithReturnURL constructs a new CreateMandateWithReturnURL
Expand Down
2 changes: 2 additions & 0 deletions domain/payment/CardPaymentMethodSpecificInput.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ type CardPaymentMethodSpecificInput struct {
Token *string `json:"token,omitempty"`
Tokenize *bool `json:"tokenize,omitempty"`
TransactionChannel *string `json:"transactionChannel,omitempty"`
UnscheduledCardOnFileIndicator *string `json:"unscheduledCardOnFileIndicator,omitempty"`
UnscheduledCardOnFileRequestor *string `json:"unscheduledCardOnFileRequestor,omitempty"`
}

// NewCardPaymentMethodSpecificInput constructs a new CardPaymentMethodSpecificInput
Expand Down
2 changes: 2 additions & 0 deletions domain/payment/CardPaymentMethodSpecificInputBase.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,8 @@ type CardPaymentMethodSpecificInputBase struct {
Token *string `json:"token,omitempty"`
Tokenize *bool `json:"tokenize,omitempty"`
TransactionChannel *string `json:"transactionChannel,omitempty"`
UnscheduledCardOnFileIndicator *string `json:"unscheduledCardOnFileIndicator,omitempty"`
UnscheduledCardOnFileRequestor *string `json:"unscheduledCardOnFileRequestor,omitempty"`
}

// NewCardPaymentMethodSpecificInputBase constructs a new CardPaymentMethodSpecificInputBase
Expand Down

0 comments on commit 8758a15

Please sign in to comment.