This repository has been archived by the owner on Mar 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
af4dd34
commit 04caf26
Showing
9 changed files
with
76 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// This class was auto-generated from the API references found at | ||
// https://epayments-api.developer-ingenico.com/s2sapi/v1/ | ||
|
||
package payment | ||
|
||
import "github.com/Ingenico-ePayments/connect-sdk-go/domain/definitions" | ||
|
||
// AccountFundingRecipient represents class AccountFundingRecipient | ||
type AccountFundingRecipient struct { | ||
AccountNumber *string `json:"accountNumber,omitempty"` | ||
AccountNumberType *string `json:"accountNumberType,omitempty"` | ||
Address *definitions.Address `json:"address,omitempty"` | ||
DateOfBirth *string `json:"dateOfBirth,omitempty"` | ||
Name *AfrName `json:"name,omitempty"` | ||
PartialPan *string `json:"partialPan,omitempty"` | ||
} | ||
|
||
// NewAccountFundingRecipient constructs a new AccountFundingRecipient | ||
func NewAccountFundingRecipient() *AccountFundingRecipient { | ||
return &AccountFundingRecipient{} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// This class was auto-generated from the API references found at | ||
// https://epayments-api.developer-ingenico.com/s2sapi/v1/ | ||
|
||
package payment | ||
|
||
// AfrName represents class AfrName | ||
type AfrName struct { | ||
FirstName *string `json:"firstName,omitempty"` | ||
Surname *string `json:"surname,omitempty"` | ||
} | ||
|
||
// NewAfrName constructs a new AfrName | ||
func NewAfrName() *AfrName { | ||
return &AfrName{} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// This class was auto-generated from the API references found at | ||
// https://epayments-api.developer-ingenico.com/s2sapi/v1/ | ||
|
||
package payment | ||
|
||
// PersonalIdentification represents class PersonalIdentification | ||
type PersonalIdentification struct { | ||
IDIssuingCountryCode *string `json:"idIssuingCountryCode,omitempty"` | ||
IDType *string `json:"idType,omitempty"` | ||
IDValue *string `json:"idValue,omitempty"` | ||
} | ||
|
||
// NewPersonalIdentification constructs a new PersonalIdentification | ||
func NewPersonalIdentification() *PersonalIdentification { | ||
return &PersonalIdentification{} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters