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

com.fintecsystems.xs2a.java.models.risk.checks.Xs2aSeizureCheckResponse.kt Maven / Gradle / Ivy

The newest version!
package com.fintecsystems.xs2a.java.models.risk.checks


import com.squareup.moshi.Json
import java.time.OffsetDateTime

/**
 *
 * @param isSeizure 1 if the customers account is a seizure account, 0 if otherwise
 * @param days The limit of turnover days for this check
 * @param createdAt Creation date of the object
 */

data class Xs2aSeizureCheckResponse(
    /* True if the customers account is a seizure account, False if otherwise */
    @Json(name = "is_seizure")
    var isSeizure: Boolean,
    /* The limit of turnover days for this check */
    @Json(name = "days")
    var days: Int? = null,
    /* Creation date of the object */
    @Json(name = "created_at")
    var createdAt: OffsetDateTime
)





© 2015 - 2025 Weber Informatics LLC | Privacy Policy