Class MessageListDeliveryLogsPageResponse.Builder
-
- All Implemented Interfaces:
public final class MessageListDeliveryLogsPageResponse.BuilderA builder for MessageListDeliveryLogsPageResponse.
-
-
Method Summary
-
-
Method Detail
-
entries
final MessageListDeliveryLogsPageResponse.Builder entries(List<MessageDeliveryLog> entries)
Returns a paginated list of delivery logs from the downstream provider for the specified message. For Knock in-app channels, the delivery logs will always be an empty list.
-
entries
final MessageListDeliveryLogsPageResponse.Builder entries(JsonField<List<MessageDeliveryLog>> entries)
Sets Builder.entries to an arbitrary JSON value.
You should usually call Builder.entries with a well-typed
List<MessageDeliveryLog>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addEntry
final MessageListDeliveryLogsPageResponse.Builder addEntry(MessageDeliveryLog entry)
Adds a single MessageDeliveryLog to entries.
-
pageInfo
final MessageListDeliveryLogsPageResponse.Builder pageInfo(PageInfo pageInfo)
Pagination information for a list of resources.
-
pageInfo
final MessageListDeliveryLogsPageResponse.Builder pageInfo(JsonField<PageInfo> pageInfo)
Sets Builder.pageInfo to an arbitrary JSON value.
You should usually call Builder.pageInfo with a well-typed PageInfo value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final MessageListDeliveryLogsPageResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final MessageListDeliveryLogsPageResponse.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final MessageListDeliveryLogsPageResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final MessageListDeliveryLogsPageResponse.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final MessageListDeliveryLogsPageResponse.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final MessageListDeliveryLogsPageResponse build()
Returns an immutable instance of MessageListDeliveryLogsPageResponse.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.entries() .pageInfo()
-
-
-
-