Class StreamEvent.Data.StreamEventLogDataOutput
-
- All Implemented Interfaces:
public final class StreamEvent.Data.StreamEventLogDataOutput
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classStreamEvent.Data.StreamEventLogDataOutput.BuilderA builder for StreamEventLogDataOutput.
-
Method Summary
Modifier and Type Method Description final Stringmessage()Log message from the operation final JsonValue_status()Expected to always return the following:
However, this method can be useful for debugging and logging (e.g.JsonValue.from("running")final JsonField<String>_message()Returns the raw JSON value of message. final Map<String, JsonValue>_additionalProperties()final StreamEvent.Data.StreamEventLogDataOutput.BuildertoBuilder()final StreamEvent.Data.StreamEventLogDataOutputvalidate()Validates that the types of all values in this object match their expected types recursively. final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static StreamEvent.Data.StreamEventLogDataOutput.Builderbuilder()Returns a mutable builder for constructing an instance of StreamEventLogDataOutput. -
-
Method Detail
-
_status
final JsonValue _status()
Expected to always return the following:
JsonValue.from("running")However, this method can be useful for debugging and logging (e.g. if the server responded with an unexpected value).
-
_message
final JsonField<String> _message()
Returns the raw JSON value of message.
Unlike message, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final StreamEvent.Data.StreamEventLogDataOutput.Builder toBuilder()
-
validate
final StreamEvent.Data.StreamEventLogDataOutput validate()
Validates that the types of all values in this object match their expected types recursively.
This method is not forwards compatible with new types from the API for existing fields.
-
builder
final static StreamEvent.Data.StreamEventLogDataOutput.Builder builder()
Returns a mutable builder for constructing an instance of StreamEventLogDataOutput.
The following fields are required:
.message()
-
-
-
-