Class ResponseIncompleteEvent
-
- All Implemented Interfaces:
public final class ResponseIncompleteEventAn event that is emitted when a response finishes as incomplete.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classResponseIncompleteEvent.BuilderA builder for ResponseIncompleteEvent.
-
Method Summary
Modifier and Type Method Description final Responseresponse()The response that was incomplete. final LongsequenceNumber()The sequence number of this event. final JsonValue_type()The type of the event. final JsonField<Response>_response()Returns the raw JSON value of response. final JsonField<Long>_sequenceNumber()Returns the raw JSON value of sequenceNumber. final Map<String, JsonValue>_additionalProperties()final ResponseIncompleteEvent.BuildertoBuilder()final ResponseIncompleteEventvalidate()Validates that the types of all values in this object match their expected types recursively. final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static ResponseIncompleteEvent.Builderbuilder()Returns a mutable builder for constructing an instance of ResponseIncompleteEvent. -
-
Method Detail
-
sequenceNumber
final Long sequenceNumber()
The sequence number of this event.
-
_type
final JsonValue _type()
The type of the event. Always
response.incomplete.Expected to always return the following:
JsonValue.from("response.incomplete")However, this method can be useful for debugging and logging (e.g. if the server responded with an unexpected value).
-
_response
final JsonField<Response> _response()
Returns the raw JSON value of response.
Unlike response, this method doesn't throw if the JSON field has an unexpected type.
-
_sequenceNumber
final JsonField<Long> _sequenceNumber()
Returns the raw JSON value of sequenceNumber.
Unlike sequenceNumber, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final ResponseIncompleteEvent.Builder toBuilder()
-
validate
final ResponseIncompleteEvent 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 ResponseIncompleteEvent.Builder builder()
Returns a mutable builder for constructing an instance of ResponseIncompleteEvent.
The following fields are required:
.response() .sequenceNumber()
-
-
-
-