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

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

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

import com.squareup.moshi.Json


/**
 * Contains the form objects
 * @param name ???
 * @param elements Contains the elements of the form. Can contain any of 'Form.Element'
 */

data class FormObject(
    /* ??? */
    @Json(name = "name")
    var name: String,
    /* Contains the elements of the form. Can contain any of 'Form.Element' */
    @Json(name = "elements")
    var elements: List
)




© 2015 - 2024 Weber Informatics LLC | Privacy Policy