Class EvalRunSucceededWebhookEvent
-
- All Implemented Interfaces:
public final class EvalRunSucceededWebhookEvent
Sent when an eval run has succeeded.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final class
EvalRunSucceededWebhookEvent.Builder
A builder for EvalRunSucceededWebhookEvent.
public final class
EvalRunSucceededWebhookEvent.Data
Event data payload.
public final class
EvalRunSucceededWebhookEvent.Object
The object of the event. Always
event
.
-
Method Summary
Modifier and Type Method Description final String
id()
The unique ID of the event. final Long
createdAt()
The Unix timestamp (in seconds) of when the eval run succeeded. final EvalRunSucceededWebhookEvent.Data
data()
Event data payload. final JsonValue
_type()
The type of the event. final Optional<EvalRunSucceededWebhookEvent.Object>
object_()
The object of the event. final JsonField<String>
_id()
Returns the raw JSON value of id. final JsonField<Long>
_createdAt()
Returns the raw JSON value of createdAt. final JsonField<EvalRunSucceededWebhookEvent.Data>
_data()
Returns the raw JSON value of data. final JsonField<EvalRunSucceededWebhookEvent.Object>
_object_()
Returns the raw JSON value of object_. final Map<String, JsonValue>
_additionalProperties()
final EvalRunSucceededWebhookEvent.Builder
toBuilder()
final EvalRunSucceededWebhookEvent
validate()
final Boolean
isValid()
Boolean
equals(Object other)
Integer
hashCode()
String
toString()
final static EvalRunSucceededWebhookEvent.Builder
builder()
Returns a mutable builder for constructing an instance of EvalRunSucceededWebhookEvent. -
-
Method Detail
-
data
final EvalRunSucceededWebhookEvent.Data data()
Event data payload.
-
_type
final JsonValue _type()
The type of the event. Always
eval.run.succeeded
.Expected to always return the following:
JsonValue.from("eval.run.succeeded")
However, this method can be useful for debugging and logging (e.g. if the server responded with an unexpected value).
-
object_
final Optional<EvalRunSucceededWebhookEvent.Object> object_()
The object of the event. Always
event
.
-
_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.
-
_createdAt
final JsonField<Long> _createdAt()
Returns the raw JSON value of createdAt.
Unlike createdAt, this method doesn't throw if the JSON field has an unexpected type.
-
_data
final JsonField<EvalRunSucceededWebhookEvent.Data> _data()
Returns the raw JSON value of data.
Unlike data, this method doesn't throw if the JSON field has an unexpected type.
-
_object_
final JsonField<EvalRunSucceededWebhookEvent.Object> _object_()
Returns the raw JSON value of object_.
Unlike object_, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final EvalRunSucceededWebhookEvent.Builder toBuilder()
-
validate
final EvalRunSucceededWebhookEvent validate()
-
builder
final static EvalRunSucceededWebhookEvent.Builder builder()
Returns a mutable builder for constructing an instance of EvalRunSucceededWebhookEvent.
The following fields are required:
.id() .createdAt() .data()
-
-
-
-