SectionSpec

data class SectionSpec(    val api_path: IdentifierSpec,     val fields: List<SectionFieldSpec>,     @StringRes val title: Int? = null) : FormItemSpec, RequiredItemSpec, Parcelable

This represents a section in a form that contains other elements

Constructors

Link copied to clipboard
fun SectionSpec(    identifier: IdentifierSpec,     field: SectionFieldSpec,     title: Int? = null)
Link copied to clipboard
fun SectionSpec(    api_path: IdentifierSpec,     fields: List<SectionFieldSpec>,     @StringRes title: Int? = null)

Functions

Link copied to clipboard
abstract fun describeContents(): Int
Link copied to clipboard
abstract fun writeToParcel(p0: Parcel, p1: Int)

Properties

Link copied to clipboard
open override val api_path: IdentifierSpec
Link copied to clipboard
val fields: List<SectionFieldSpec>
Link copied to clipboard
val title: Int? = null