Interface RealtimeSessionCreateResponse.Tracing.Visitor
-
- All Implemented Interfaces:
public interface RealtimeSessionCreateResponse.Tracing.Visitor<T extends Object>
-
-
Method Summary
Modifier and Type Method Description abstract TvisitAuto(JsonValue auto)Enables tracing and sets default values for tracing configuration options. abstract TvisitConfiguration(RealtimeSessionCreateResponse.Tracing.TracingConfiguration configuration)Granular configuration for tracing. Tunknown(JsonValue json)Maps an unknown variant of Tracing to a value of type T. -
-
Method Detail
-
visitAuto
abstract T visitAuto(JsonValue auto)
Enables tracing and sets default values for tracing configuration options. Always
auto.
-
visitConfiguration
abstract T visitConfiguration(RealtimeSessionCreateResponse.Tracing.TracingConfiguration configuration)
Granular configuration for tracing.
-
unknown
T unknown(JsonValue json)
Maps an unknown variant of Tracing to a value of type T.
An instance of Tracing can contain an unknown variant if it was deserialized from data that doesn't match any known variant. For example, if the SDK is on an older version than the API, then the API may respond with new variants that the SDK is unaware of.
-
-
-
-