GraphEdge

@Serializable
data class GraphEdge(val fromId: Long, val toId: Long, val weight: Double)

Graph edge entry in an ExportResponse.

Constructors

Link copied to clipboard
constructor(fromId: Long, toId: Long, weight: Double)

Properties

Link copied to clipboard
@SerialName(value = "fromId")
val fromId: Long
Link copied to clipboard
@SerialName(value = "toId")
val toId: Long
Link copied to clipboard