Container

data class Container(id: Long, type: String, style: ContainerStyle?, widgetList: List<Widget>, action: List<Action>)

Author

Umang Chamaria Date: 29/04/20

Constructors

Container
Link copied to clipboard
fun Container(id: Long, type: String, style: ContainerStyle?, widgetList: List<Widget>, action: List<Action>)

Functions

component1
Link copied to clipboard
operator fun component1(): Long
component2
Link copied to clipboard
operator fun component2(): String
component3
Link copied to clipboard
operator fun component3(): ContainerStyle?
component4
Link copied to clipboard
operator fun component4(): List<Widget>
component5
Link copied to clipboard
operator fun component5(): List<Action>
copy
Link copied to clipboard
fun copy(id: Long, type: String, style: ContainerStyle?, widgetList: List<Widget>, action: List<Action>): Container
equals
Link copied to clipboard
open operator override fun equals(other: Any?): Boolean
hashCode
Link copied to clipboard
open override fun hashCode(): Int
toString
Link copied to clipboard
open override fun toString(): String

Properties

action
Link copied to clipboard
val action: List<Action>
id
Link copied to clipboard
val id: Long
style
Link copied to clipboard
val style: ContainerStyle?
type
Link copied to clipboard
val type: String
widgetList
Link copied to clipboard
val widgetList: List<Widget>