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

com.fintecsystems.xs2a.java.models.form.FormImage.kt Maven / Gradle / Ivy

The newest version!

package com.fintecsystems.xs2a.java.models.form


import com.squareup.moshi.Json

/**
 * 
 * @param data The base64 encoded image
 * @param label The label of the form element
 */

data class FormImage (
    /* The base64 encoded image */
    @Json(name = "data")
    var data: String,
    /* The label of the form element */
    @Json(name = "label")
    var label: String
) : FormBase()





© 2015 - 2025 Weber Informatics LLC | Privacy Policy