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

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

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

import com.squareup.moshi.Json

/**
 *
 * @param label The label of the element
 * @param value The value of the form element
 * @param elements Array containing the nested elements
 */

data class FormMultiElements(
    /* The label of the element */
    @Json(name = "label")
    var label: String,
    /* The value of the form element */
    @Json(name = "value")
    var value: String,
    /* Array containing the nested elements */
    @Json(name = "elements")
    var elements: List
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy