blob: b13dcb1bd77c530eaf2ea0f976962ee85a5c3d2e [file] [log] [blame]
package org.apache.fineract.data.models.accounts
import com.google.gson.annotations.SerializedName
data class AccountPage(
@SerializedName("accounts") val accounts: List<Account>? = null,
@SerializedName("totalPages") val totalPages: Int? = null,
@SerializedName("totalElements") val totalElements: Long? = null
)