Class FetchProjectLogsEventsResponse.Builder
-
- All Implemented Interfaces:
public final class FetchProjectLogsEventsResponse.BuilderA builder for FetchProjectLogsEventsResponse.
-
-
Method Summary
-
-
Method Detail
-
events
final FetchProjectLogsEventsResponse.Builder events(List<ProjectLogsEvent> events)
A list of fetched events
-
events
final FetchProjectLogsEventsResponse.Builder events(JsonField<List<ProjectLogsEvent>> events)
Sets Builder.events to an arbitrary JSON value.
You should usually call Builder.events with a well-typed
List<ProjectLogsEvent>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addEvent
final FetchProjectLogsEventsResponse.Builder addEvent(ProjectLogsEvent event)
Adds a single ProjectLogsEvent to events.
-
cursor
final FetchProjectLogsEventsResponse.Builder cursor(String cursor)
Pagination cursor
Pass this string directly as the
cursorparam to your next fetch request to get the next page of results. Not provided if the returned result set is empty.
-
cursor
final FetchProjectLogsEventsResponse.Builder cursor(Optional<String> cursor)
Alias for calling Builder.cursor with
cursor.orElse(null).
-
cursor
final FetchProjectLogsEventsResponse.Builder cursor(JsonField<String> cursor)
Sets Builder.cursor to an arbitrary JSON value.
You should usually call Builder.cursor with a well-typed String value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
additionalProperties
final FetchProjectLogsEventsResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final FetchProjectLogsEventsResponse.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final FetchProjectLogsEventsResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final FetchProjectLogsEventsResponse.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final FetchProjectLogsEventsResponse.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final FetchProjectLogsEventsResponse build()
Returns an immutable instance of FetchProjectLogsEventsResponse.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.events()
-
-
-
-