Class DeliveryReplayParams.Body
-
- All Implemented Interfaces:
public final class DeliveryReplayParams.Body
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classDeliveryReplayParams.Body.BuilderA builder for Body.
-
Method Summary
Modifier and Type Method Description final JsonValue_payload()Override payload to deliver. final Map<String, JsonValue>_additionalProperties()final DeliveryReplayParams.Body.BuildertoBuilder()final DeliveryReplayParams.Bodyvalidate()final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static DeliveryReplayParams.Body.Builderbuilder()Returns a mutable builder for constructing an instance of Body. -
-
Method Detail
-
_payload
final JsonValue _payload()
Override payload to deliver. Must only be supplied when the delivery record lacks enough context to reconstruct the original event (rare). Defaults to an empty data envelope.
This arbitrary value can be deserialized into a custom type using the
convertmethod:MyClass myObject = body.payload().convert(MyClass.class);
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final DeliveryReplayParams.Body.Builder toBuilder()
-
validate
final DeliveryReplayParams.Body validate()
-
builder
final static DeliveryReplayParams.Body.Builder builder()
Returns a mutable builder for constructing an instance of Body.
-
-
-
-