All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fintecsystems.xs2a.java.models.api.accounts.BankAccountTurnovers.kt Maven / Gradle / Ivy

The newest version!
package com.fintecsystems.xs2a.java.models.api.accounts

import com.fintecsystems.xs2a.java.models.common.Turnover
import com.squareup.moshi.Json
import java.time.OffsetDateTime

/**
 *
 * @param id Bank Account ID
 * @param turnovers The list of turnovers.
 * @param days The number of days requested
 * @param date The date the turnovers were seen on.
 * @param createdAt Date of creation of the turnovers object.
 */

data class BankAccountTurnovers(
    /* Bank Account ID */
    @Json(name = "id")
    var id: String,
    /* The list of turnovers. */
    @Json(name = "turnovers")
    var turnovers: List,
    /* The number of days requested */
    @Json(name = "days")
    var days: Int? = null,
    /* The date the turnovers were seen on. */
    @Json(name = "date")
    var date: OffsetDateTime,
    /* Date of creation of the turnovers object. */
    @Json(name = "created_at")
    var createdAt: OffsetDateTime,
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy