Flow Schema
data class FlowSchema(val apiVersion: String? = null, val kind: String? = null, val metadata: ObjectMeta? = null, val spec: FlowSchemaSpec? = null, val status: FlowSchemaStatus? = null)
FlowSchema defines the schema of a group of flows. Note that a flow is made up of a set of inbound API requests with similar attributes and is identified by a pair of strings: the name of the FlowSchema and a "flow distinguisher".
Constructors
Link copied to clipboard
fun FlowSchema(apiVersion: String? = null, kind: String? = null, metadata: ObjectMeta? = null, spec: FlowSchemaSpec? = null, status: FlowSchemaStatus? = null)