Package org.mlflow.api.proto
Interface Service.GetOnlineTraceDetails.ResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Service.GetOnlineTraceDetails.Response
,Service.GetOnlineTraceDetails.Response.Builder
- Enclosing class:
- Service.GetOnlineTraceDetails
public static interface Service.GetOnlineTraceDetails.ResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getTraceData()
Return trace JSON in string form Note: we may change this to a TraceData object in the futurecom.google.protobuf.ByteString
getTraceDataBytes()
Return trace JSON in string form Note: we may change this to a TraceData object in the futureboolean
hasTraceData()
Return trace JSON in string form Note: we may change this to a TraceData object in the future-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasTraceData
boolean hasTraceData()
Return trace JSON in string form Note: we may change this to a TraceData object in the future
optional string trace_data = 1;
- Returns:
- Whether the traceData field is set.
-
getTraceData
java.lang.String getTraceData()
Return trace JSON in string form Note: we may change this to a TraceData object in the future
optional string trace_data = 1;
- Returns:
- The traceData.
-
getTraceDataBytes
com.google.protobuf.ByteString getTraceDataBytes()
Return trace JSON in string form Note: we may change this to a TraceData object in the future
optional string trace_data = 1;
- Returns:
- The bytes for traceData.
-
-