Form
data class Form(val componentId: String? = null, val type: ComponentType = ComponentType.FORM, val name: String? = null, val enabled: Boolean = true, val i18n: String? = null, val sections: List<AbstractComponent.Section>? = null, val buttons: List<AbstractComponent.Button>? = null, val submitOnChange: Boolean = false, val isRealTime: Boolean = false) : AbstractComponent, Parcelable
Constructors
Link copied to clipboard
constructor(componentId: String? = null, type: ComponentType = ComponentType.FORM, name: String? = null, enabled: Boolean = true, i18n: String? = null, sections: List<AbstractComponent.Section>? = null, buttons: List<AbstractComponent.Button>? = null, submitOnChange: Boolean = false, isRealTime: Boolean = false)