Class MessageDeliveryLog
-
- All Implemented Interfaces:
public final class MessageDeliveryLogA message delivery log contains a
requestfrom Knock to a downstream provider and theresponsethat was returned.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classMessageDeliveryLog.BuilderA builder for MessageDeliveryLog.
public final classMessageDeliveryLog.RequestA message delivery log request.
public final classMessageDeliveryLog.ResponseA message delivery log response.
-
Method Summary
Modifier and Type Method Description final Stringid()The unique identifier for the message delivery log. final String_typename()The typename of the schema. final StringenvironmentId()The ID of the environment in which the message delivery occurred. final StringinsertedAt()Timestamp when the message delivery log was created. final MessageDeliveryLog.Requestrequest()A message delivery log request. final MessageDeliveryLog.Responseresponse()A message delivery log response. final StringserviceName()The name of the service that processed the delivery. final JsonField<String>_id()Returns the raw JSON value of id. final JsonField<String>__typename()Returns the raw JSON value of _typename. final JsonField<String>_environmentId()Returns the raw JSON value of environmentId. final JsonField<String>_insertedAt()Returns the raw JSON value of insertedAt. final JsonField<MessageDeliveryLog.Request>_request()Returns the raw JSON value of request. final JsonField<MessageDeliveryLog.Response>_response()Returns the raw JSON value of response. final JsonField<String>_serviceName()Returns the raw JSON value of serviceName. final Map<String, JsonValue>_additionalProperties()final MessageDeliveryLog.BuildertoBuilder()final MessageDeliveryLogvalidate()final BooleanisValid()Booleanequals(Object other)IntegerhashCode()StringtoString()final static MessageDeliveryLog.Builderbuilder()Returns a mutable builder for constructing an instance of MessageDeliveryLog. -
-
Method Detail
-
environmentId
final String environmentId()
The ID of the environment in which the message delivery occurred.
-
insertedAt
final String insertedAt()
Timestamp when the message delivery log was created.
-
request
final MessageDeliveryLog.Request request()
A message delivery log request.
-
response
final MessageDeliveryLog.Response response()
A message delivery log response.
-
serviceName
final String serviceName()
The name of the service that processed the delivery.
-
_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.
-
__typename
final JsonField<String> __typename()
Returns the raw JSON value of _typename.
Unlike _typename, this method doesn't throw if the JSON field has an unexpected type.
-
_environmentId
final JsonField<String> _environmentId()
Returns the raw JSON value of environmentId.
Unlike environmentId, this method doesn't throw if the JSON field has an unexpected type.
-
_insertedAt
final JsonField<String> _insertedAt()
Returns the raw JSON value of insertedAt.
Unlike insertedAt, this method doesn't throw if the JSON field has an unexpected type.
-
_request
final JsonField<MessageDeliveryLog.Request> _request()
Returns the raw JSON value of request.
Unlike request, this method doesn't throw if the JSON field has an unexpected type.
-
_response
final JsonField<MessageDeliveryLog.Response> _response()
Returns the raw JSON value of response.
Unlike response, this method doesn't throw if the JSON field has an unexpected type.
-
_serviceName
final JsonField<String> _serviceName()
Returns the raw JSON value of serviceName.
Unlike serviceName, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalProperties
final Map<String, JsonValue> _additionalProperties()
-
toBuilder
final MessageDeliveryLog.Builder toBuilder()
-
validate
final MessageDeliveryLog validate()
-
builder
final static MessageDeliveryLog.Builder builder()
Returns a mutable builder for constructing an instance of MessageDeliveryLog.
The following fields are required:
.id() ._typename() .environmentId() .insertedAt() .request() .response() .serviceName()
-
-
-
-