Class MessageDeltaEvent
-
- All Implemented Interfaces:
public final class MessageDeltaEventRepresents a message delta i.e. any changed fields on a message during streaming.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classMessageDeltaEvent.BuilderA builder for MessageDeltaEvent.
-
Method Summary
Modifier and Type Method Description final Stringid()The identifier of the message, which can be referenced in API endpoints. final MessageDeltadelta()The delta containing the fields that have changed on the Message. final JsonValue_object_()The object type, which is always thread.message.delta.final JsonField<String>_id()The identifier of the message, which can be referenced in API endpoints. final JsonField<MessageDelta>_delta()The delta containing the fields that have changed on the Message. final Map<String, JsonValue>_additionalProperties()final MessageDeltaEventvalidate()final MessageDeltaEvent.BuildertoBuilder()Booleanequals(Object other)IntegerhashCode()StringtoString()final static MessageDeltaEvent.Builderbuilder()Returns a mutable builder for constructing an instance of MessageDeltaEvent. -
-
Method Detail
-
delta
final MessageDelta delta()
The delta containing the fields that have changed on the Message.
-
_id
final JsonField<String> _id()
The identifier of the message, which can be referenced in API endpoints.
-
_delta
final JsonField<MessageDelta> _delta()
The delta containing the fields that have changed on the Message.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
validate
final MessageDeltaEvent validate()
-
toBuilder
final MessageDeltaEvent.Builder toBuilder()
-
builder
final static MessageDeltaEvent.Builder builder()
Returns a mutable builder for constructing an instance of MessageDeltaEvent.
The following fields are required:
.id() .delta()
-
-
-
-