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()Validates that the types of all values in this object match their expected types recursively. 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()
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 DeliveryReplayParams.Body.Builder builder()
Returns a mutable builder for constructing an instance of Body.
-
-
-
-