Skip to content

Commit b284fb8

Browse files
author
Marcin Bawtrol
committed
Initiate payment request usecase based
1 parent 1cd4d1c commit b284fb8

File tree

5 files changed

+220
-20
lines changed

5 files changed

+220
-20
lines changed

README.md

+65-5
Original file line numberDiff line numberDiff line change
@@ -13,20 +13,23 @@ JVM client implementing [kevin. platform API v0.3](https://api-reference.kevin.e
1313

1414
## Installation
1515

16-
Package and installation instructions are available at the [Maven Central Repository](https://maven-badges.herokuapp.com/maven-central/eu.kevin/kevin-jvm)
16+
Package and installation instructions are available at
17+
the [Maven Central Repository](https://maven-badges.herokuapp.com/maven-central/eu.kevin/kevin-jvm)
1718

1819
### Maven
20+
1921
```
2022
<dependency>
2123
<groupId>eu.kevin</groupId>
2224
<artifactId>kevin-jvm</artifactId>
23-
<version>0.2.7</version>
25+
<version>0.2.8</version>
2426
</dependency>
2527
```
2628

2729
### Gradle
30+
2831
```
29-
implementation 'eu.kevin:kevin-jvm:0.2.7'
32+
implementation 'eu.kevin:kevin-jvm:0.2.8'
3033
```
3134

3235
## Usage Examples
@@ -49,14 +52,17 @@ val client = Client(
4952
```
5053

5154
### Call an API method
55+
56+
#### Bank payment example:
57+
5258
```kotlin
53-
val request = InitiatePaymentRequest(
59+
val request = InitiateBankPaymentRequest(
5460
redirectUrl = "https://yourapp.com/callback",
5561
amount = BigDecimal("12.34"),
5662
currencyCode = "EUR",
5763
description = "My payment",
5864
identifier = UserIdentifier(email = "[email protected]"),
59-
bankPaymentMethod = BankPaymentMethod(
65+
mandatoryBankPaymentMethod = BankPaymentMethod(
6066
endToEndId = "123",
6167
creditorName = "John Doe",
6268
informationStructured = InformationStructured(
@@ -69,6 +75,59 @@ val request = InitiatePaymentRequest(
6975
)
7076
)
7177
)
78+
```
79+
80+
#### Card payment example:
81+
```kotlin
82+
val request = InitiateCardPaymentRequest(
83+
redirectUrl = "https://yourapp.com/callback",
84+
amount = BigDecimal("12.34"),
85+
currencyCode = "EUR",
86+
description = "My payment",
87+
identifier = UserIdentifier(email = "[email protected]"),
88+
mandatoryBankPaymentMethod = BankPaymentMethod(
89+
endToEndId = "123",
90+
creditorName = "John Doe",
91+
informationStructured = InformationStructured(
92+
reference = "00220055",
93+
referenceType = "SCOR"
94+
),
95+
requestedExecutionDate = LocalDate.of(2021, 3, 8),
96+
creditorAccount = Account(
97+
iban = "LT144010051005081586"
98+
)
99+
),
100+
mandatoryCardPaymentMethod = CardPaymentMethod()
101+
)
102+
```
103+
104+
#### Hybrid payment example:
105+
```kotlin
106+
val request = InitiateHybridPaymentRequest(
107+
redirectUrl = "https://yourapp.com/callback",
108+
amount = BigDecimal("12.34"),
109+
currencyCode = "EUR",
110+
description = "My payment",
111+
identifier = UserIdentifier(email = "[email protected]"),
112+
mandatoryBankPaymentMethod = BankPaymentMethod(
113+
endToEndId = "123",
114+
creditorName = "John Doe",
115+
informationStructured = InformationStructured(
116+
reference = "00220055",
117+
referenceType = "SCOR"
118+
),
119+
requestedExecutionDate = LocalDate.of(2021, 3, 8),
120+
creditorAccount = Account(
121+
iban = "LT144010051005081586"
122+
)
123+
),
124+
mandatoryCardPaymentMethod = CardPaymentMethod()
125+
)
126+
```
127+
128+
### Handle the response
129+
130+
```kotlin
72131

73132
val response = try {
74133
client.paymentClient.initiatePayment(request)
@@ -79,6 +138,7 @@ val response = try {
79138
```
80139

81140
### Parse the request body of a webhook response
141+
82142
```kotlin
83143
import eu.kevin.api.services.Parser
84144

Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
package eu.kevin.api.models.payment.payment.request
2+
3+
import java.math.BigDecimal
4+
5+
data class InitiateBankPaymentRequest(
6+
override val redirectUrl: String,
7+
override val amount: BigDecimal,
8+
override val currencyCode: String,
9+
override val description: String,
10+
val mandatoryBankPaymentMethod: BankPaymentMethod,
11+
override var identifier: UserIdentifier? = null,
12+
override var accessToken: String? = null,
13+
override var bankId: String? = null,
14+
override var redirectPreferred: Boolean? = null,
15+
override var webhookUrl: String? = null,
16+
override var lang: String? = null
17+
): InitiatePaymentRequest(
18+
redirectUrl,
19+
amount,
20+
currencyCode,
21+
description,
22+
bankPaymentMethod = mandatoryBankPaymentMethod,
23+
cardPaymentMethod = null,
24+
identifier,
25+
accessToken,
26+
bankId,
27+
redirectPreferred,
28+
paymentMethodPreferred = PaymentMethod.BANK,
29+
webhookUrl,
30+
lang
31+
)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
package eu.kevin.api.models.payment.payment.request
2+
3+
import java.math.BigDecimal
4+
5+
data class InitiateCardPaymentRequest(
6+
override val redirectUrl: String,
7+
override val amount: BigDecimal,
8+
override val currencyCode: String,
9+
override val description: String,
10+
val mandatoryBankPaymentMethod: BankPaymentMethod,
11+
val mandatoryCardPaymentMethod: CardPaymentMethod,
12+
override var identifier: UserIdentifier? = null,
13+
override var accessToken: String? = null,
14+
override var bankId: String? = null,
15+
override var redirectPreferred: Boolean? = null,
16+
override var webhookUrl: String? = null,
17+
override var lang: String? = null
18+
): InitiatePaymentRequest(
19+
redirectUrl,
20+
amount,
21+
currencyCode,
22+
description,
23+
bankPaymentMethod = mandatoryBankPaymentMethod,
24+
cardPaymentMethod = mandatoryCardPaymentMethod,
25+
identifier,
26+
accessToken,
27+
bankId,
28+
redirectPreferred,
29+
paymentMethodPreferred = PaymentMethod.CARD,
30+
webhookUrl,
31+
lang
32+
)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
package eu.kevin.api.models.payment.payment.request
2+
3+
import java.math.BigDecimal
4+
5+
data class InitiateHybridPaymentRequest(
6+
override val redirectUrl: String,
7+
override val amount: BigDecimal,
8+
override val currencyCode: String,
9+
override val description: String,
10+
val mandatoryBankPaymentMethod: BankPaymentMethod,
11+
val mandatoryCardPaymentMethod: CardPaymentMethod,
12+
override var identifier: UserIdentifier? = null,
13+
override var accessToken: String? = null,
14+
override var bankId: String? = null,
15+
override var redirectPreferred: Boolean? = null,
16+
override var paymentMethodPreferred: PaymentMethod? = null,
17+
override var webhookUrl: String? = null,
18+
override var lang: String? = null
19+
): InitiatePaymentRequest(
20+
redirectUrl,
21+
amount,
22+
currencyCode,
23+
description,
24+
bankPaymentMethod = mandatoryBankPaymentMethod,
25+
cardPaymentMethod = mandatoryCardPaymentMethod,
26+
identifier,
27+
accessToken,
28+
bankId,
29+
redirectPreferred,
30+
paymentMethodPreferred,
31+
webhookUrl,
32+
lang
33+
)

src/main/kotlin/eu/kevin/api/models/payment/payment/request/InitiatePaymentRequest.kt

+59-15
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,62 @@ package eu.kevin.api.models.payment.payment.request
22

33
import java.math.BigDecimal
44

5-
data class InitiatePaymentRequest @JvmOverloads constructor(
6-
val redirectUrl: String,
7-
val amount: BigDecimal,
8-
val currencyCode: String,
9-
val description: String,
10-
var bankPaymentMethod: BankPaymentMethod? = null,
11-
var cardPaymentMethod: CardPaymentMethod? = null,
12-
var identifier: UserIdentifier? = null,
13-
var accessToken: String? = null,
14-
var bankId: String? = null,
15-
var redirectPreferred: Boolean? = null,
16-
var paymentMethodPreferred: PaymentMethod? = null,
17-
var webhookUrl: String? = null,
18-
var lang: String? = null
19-
)
5+
open class InitiatePaymentRequest @JvmOverloads constructor(
6+
open val redirectUrl: String,
7+
open val amount: BigDecimal,
8+
open val currencyCode: String,
9+
open val description: String,
10+
open var bankPaymentMethod: BankPaymentMethod? = null,
11+
open var cardPaymentMethod: CardPaymentMethod? = null,
12+
open var identifier: UserIdentifier? = null,
13+
open var accessToken: String? = null,
14+
open var bankId: String? = null,
15+
open var redirectPreferred: Boolean? = null,
16+
open var paymentMethodPreferred: PaymentMethod? = null,
17+
open var webhookUrl: String? = null,
18+
open var lang: String? = null
19+
) {
20+
override fun equals(other: Any?): Boolean {
21+
if (this === other) return true
22+
if (javaClass != other?.javaClass) return false
23+
24+
other as InitiatePaymentRequest
25+
26+
if (redirectUrl != other.redirectUrl) return false
27+
if (amount != other.amount) return false
28+
if (currencyCode != other.currencyCode) return false
29+
if (description != other.description) return false
30+
if (bankPaymentMethod != other.bankPaymentMethod) return false
31+
if (cardPaymentMethod != other.cardPaymentMethod) return false
32+
if (identifier != other.identifier) return false
33+
if (accessToken != other.accessToken) return false
34+
if (bankId != other.bankId) return false
35+
if (redirectPreferred != other.redirectPreferred) return false
36+
if (paymentMethodPreferred != other.paymentMethodPreferred) return false
37+
if (webhookUrl != other.webhookUrl) return false
38+
if (lang != other.lang) return false
39+
40+
return true
41+
}
42+
43+
override fun hashCode(): Int {
44+
var result = redirectUrl.hashCode()
45+
result = 31 * result + amount.hashCode()
46+
result = 31 * result + currencyCode.hashCode()
47+
result = 31 * result + description.hashCode()
48+
result = 31 * result + (bankPaymentMethod?.hashCode() ?: 0)
49+
result = 31 * result + (cardPaymentMethod?.hashCode() ?: 0)
50+
result = 31 * result + (identifier?.hashCode() ?: 0)
51+
result = 31 * result + (accessToken?.hashCode() ?: 0)
52+
result = 31 * result + (bankId?.hashCode() ?: 0)
53+
result = 31 * result + (redirectPreferred?.hashCode() ?: 0)
54+
result = 31 * result + (paymentMethodPreferred?.hashCode() ?: 0)
55+
result = 31 * result + (webhookUrl?.hashCode() ?: 0)
56+
result = 31 * result + (lang?.hashCode() ?: 0)
57+
return result
58+
}
59+
60+
override fun toString(): String {
61+
return "InitiatePaymentRequest(redirectUrl='$redirectUrl', amount=$amount, currencyCode='$currencyCode', description='$description', bankPaymentMethod=$bankPaymentMethod, cardPaymentMethod=$cardPaymentMethod, identifier=$identifier, accessToken=$accessToken, bankId=$bankId, redirectPreferred=$redirectPreferred, paymentMethodPreferred=$paymentMethodPreferred, webhookUrl=$webhookUrl, lang=$lang)"
62+
}
63+
}

0 commit comments

Comments
 (0)