Layout
data class Layout(val id: String, val layoutType: String, val mode: String, val sections: List<Layout.LayoutSection>, val rawData: JSONObject)
Represents the layout of a Salesforce object.
See also
Constructors
Link copied to clipboard
constructor(id: String, layoutType: String, mode: String, sections: List<Layout.LayoutSection>, rawData: JSONObject)
Types
Link copied to clipboard
data class LayoutSection(val isCollapsible: Boolean, val columns: Int, val heading: String, val id: String, val layoutRows: List<Layout.LayoutSection.Row>, val rows: Int, val usesHeading: Boolean)
Represents a record layout section.