data class SpanContext(val traceId: String, val spanId: String, val parentSpanId: String? = null, val traceFlags: Byte = SAMPLED, val traceState: String? = null)
Context for a span in a distributed trace.
Follows W3C Trace Context specification for trace/span ID formats.