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

com.fintecsystems.xs2a.java.models.blacklist.BlacklistObject.kt Maven / Gradle / Ivy

The newest version!
package com.fintecsystems.xs2a.java.models.blacklist

import com.squareup.moshi.Json

/**
 *
 * @param id Blacklist item id
 * @param type Type of the entry, e.g. iban
 * @param data IBAN
 */

data class BlacklistObject (
    /* Blacklist item id */
    @Json(name = "id")
    var id: String,
    /* Type of the entry, e.g. iban */
    @Json(name = "type")
    var type: String,
    /* IBAN */
    @Json(name = "data")
    var data: String
)




© 2015 - 2025 Weber Informatics LLC | Privacy Policy