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

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

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


import com.squareup.moshi.Json

/**
 *
 * @param name The name of the form element
 * @param tabs An array of possible transports
 * @param label The label of the form element
 * @param selected The selected transport
 */

data class FormTabs(
    /* The name of the form element */
    @Json(name = "name")
    override var name: String,
    /* An array of possible transports */
    @Json(name = "tabs")
    var tabs: List,
    /* The label of the form element */
    @Json(name = "label")
    var label: String,
    /* The selected transport */
    @Json(name = "selected")
    var selected: String
) : FormNameBase()




© 2015 - 2024 Weber Informatics LLC | Privacy Policy