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

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

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

import com.squareup.moshi.Json

data class Xs2aNameCheckResponse (
    /* Name used for the comparison. Usually the surname. */
    @Json(name = "name")
    var name: String,
    /* Firstname used for the comparison. */
    @Json(name = "firstname")
    var firstname: String,
    /* Indicates if it's a match ("1") or not ("0") */
    @Json(name = "match")
    var match: Boolean,
    /* Indicates the similarity with the provided and actual name. */
    @Json(name = "similarity")
    var similarity: Int,
    @Json(name = "created_at")
    var created_at: String,
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy