ArcXPSection

@JsonClass(generateAdapter = true)
data class ArcXPSection(    @Json(name = "_id") val id: String,     @Json(name = "_website") val website: String,     @Json(name = "node_type") val type: String,     val name: String,     val navigation: Navigation,     val children: List<ArcXPSection>?,     val parent: Map<String, String>?,     val ancestors: Map<String, *>?,     val site: SiteServiceSite?,     val social: SiteServiceSocial?)

Response service object for Section List/Navigation Call

Constructors

Link copied to clipboard
fun ArcXPSection(    @Json(name = "_id") id: String,     @Json(name = "_website") website: String,     @Json(name = "node_type") type: String,     name: String,     navigation: Navigation,     children: List<ArcXPSection>?,     parent: Map<String, String>?,     ancestors: Map<String, *>?,     site: SiteServiceSite?,     social: SiteServiceSocial?)

Properties

Link copied to clipboard
val ancestors: Map<String, *>?
Link copied to clipboard
val children: List<ArcXPSection>?
Link copied to clipboard
val id: String
Link copied to clipboard
val name: String
Link copied to clipboard
val navigation: Navigation
Link copied to clipboard
val parent: Map<String, String>?
Link copied to clipboard
val site: SiteServiceSite?
Link copied to clipboard
val social: SiteServiceSocial?
Link copied to clipboard
val type: String
Link copied to clipboard
val website: String