Class RealtimeTranslationSessionUpdatedEvent
-
- All Implemented Interfaces:
public final class RealtimeTranslationSessionUpdatedEventReturned when a translation session is updated with a
session.updateevent, unless there is an error.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classRealtimeTranslationSessionUpdatedEvent.BuilderA builder for RealtimeTranslationSessionUpdatedEvent.
-
Method Summary
Modifier and Type Method Description final StringeventId()The unique ID of the server event. final RealtimeTranslationSessionsession()The translation session configuration. final JsonValue_type()The event type, must be session.updated.final JsonField<String>_eventId()Returns the raw JSON value of eventId. final JsonField<RealtimeTranslationSession>_session()Returns the raw JSON value of session. final Map<String, JsonValue>_additionalProperties()final RealtimeTranslationSessionUpdatedEvent.BuildertoBuilder()final RealtimeTranslationSessionUpdatedEventvalidate()Validates that the types of all values in this object match their expected types recursively. final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static RealtimeTranslationSessionUpdatedEvent.Builderbuilder()Returns a mutable builder for constructing an instance of RealtimeTranslationSessionUpdatedEvent. -
-
Method Detail
-
session
final RealtimeTranslationSession session()
The translation session configuration.
-
_type
final JsonValue _type()
The event type, must be
session.updated.Expected to always return the following:
JsonValue.from("session.updated")However, this method can be useful for debugging and logging (e.g. if the server responded with an unexpected value).
-
_eventId
final JsonField<String> _eventId()
Returns the raw JSON value of eventId.
Unlike eventId, this method doesn't throw if the JSON field has an unexpected type.
-
_session
final JsonField<RealtimeTranslationSession> _session()
Returns the raw JSON value of session.
Unlike session, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final RealtimeTranslationSessionUpdatedEvent.Builder toBuilder()
-
validate
final RealtimeTranslationSessionUpdatedEvent 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 RealtimeTranslationSessionUpdatedEvent.Builder builder()
Returns a mutable builder for constructing an instance of RealtimeTranslationSessionUpdatedEvent.
The following fields are required:
.eventId() .session()
-
-
-
-