BankingClient/fints4javaLib/src/main/kotlin/net/dankito/fints/model/GetTransactionsParameter.kt

12 lines
No EOL
263 B
Kotlin

package net.dankito.fints.model
import java.util.*
open class GetTransactionsParameter(
val fromDate: Date? = null,
val toDate: Date? = null,
val maxAmount: Int? = null,
val allAccounts: Boolean = false,
val continuationId: String? = null
)