![JAR search and dependency download from the Maven repository](/logo.png)
com.fintecsystems.xs2a.java.models.events.EventObjectList.kt Maven / Gradle / Ivy
The newest version!
package com.fintecsystems.xs2a.java.models.events
import com.fintecsystems.xs2a.java.models.common.PaginatedList
import com.squareup.moshi.Json
class EventObjectList(
@Json(name = "total")
total: Int,
@Json(name = "per_page")
perPage: Int,
@Json(name = "current_page")
currentPage: Int,
@Json(name = "last_page")
lastPage: Int,
@Json(name = "from")
from: Int? = null,
@Json(name = "to")
to: Int? = null,
@Json(name = "data")
data: List
): PaginatedList(total, perPage, currentPage, lastPage, from, to, data)
© 2015 - 2025 Weber Informatics LLC | Privacy Policy