Package so.prelude.sdk.models
Class WatchPredictResponse
-
- All Implemented Interfaces:
public final class WatchPredictResponse
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
WatchPredictResponse.Builder
A builder for WatchPredictResponse.
public final class
WatchPredictResponse.Prediction
The prediction outcome.
-
Method Summary
Modifier and Type Method Description final String
id()
The prediction identifier. final WatchPredictResponse.Prediction
prediction()
The prediction outcome. final String
requestId()
A string that identifies this specific request. final JsonField<String>
_id()
Returns the raw JSON value of id. final JsonField<WatchPredictResponse.Prediction>
_prediction()
Returns the raw JSON value of prediction. final JsonField<String>
_requestId()
Returns the raw JSON value of requestId. final Map<String, JsonValue>
_additionalProperties()
final WatchPredictResponse.Builder
toBuilder()
final WatchPredictResponse
validate()
final Boolean
isValid()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static WatchPredictResponse.Builder
builder()
Returns a mutable builder for constructing an instance of WatchPredictResponse. -
-
Method Detail
-
prediction
final WatchPredictResponse.Prediction prediction()
The prediction outcome.
-
requestId
final String requestId()
A string that identifies this specific request. Report it back to us to help us diagnose your issues.
-
_id
final JsonField<String> _id()
Returns the raw JSON value of id.
Unlike id, this method doesn't throw if the JSON field has an unexpected type.
-
_prediction
final JsonField<WatchPredictResponse.Prediction> _prediction()
Returns the raw JSON value of prediction.
Unlike prediction, this method doesn't throw if the JSON field has an unexpected type.
-
_requestId
final JsonField<String> _requestId()
Returns the raw JSON value of requestId.
Unlike requestId, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final WatchPredictResponse.Builder toBuilder()
-
validate
final WatchPredictResponse validate()
-
builder
final static WatchPredictResponse.Builder builder()
Returns a mutable builder for constructing an instance of WatchPredictResponse.
The following fields are required:
.id() .prediction() .requestId()
-
-
-
-