Package app.knock.api.models.objects
Class ObjectListSchedulesPageResponse.Builder
-
- All Implemented Interfaces:
public final class ObjectListSchedulesPageResponse.BuilderA builder for ObjectListSchedulesPageResponse.
-
-
Method Summary
-
-
Method Detail
-
entries
final ObjectListSchedulesPageResponse.Builder entries(List<Schedule> entries)
A list of schedules.
-
entries
final ObjectListSchedulesPageResponse.Builder entries(JsonField<List<Schedule>> entries)
Sets Builder.entries to an arbitrary JSON value.
You should usually call Builder.entries with a well-typed
List<Schedule>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addEntry
final ObjectListSchedulesPageResponse.Builder addEntry(Schedule entry)
-
pageInfo
final ObjectListSchedulesPageResponse.Builder pageInfo(PageInfo pageInfo)
Pagination information for a list of resources.
-
pageInfo
final ObjectListSchedulesPageResponse.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 ObjectListSchedulesPageResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final ObjectListSchedulesPageResponse.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final ObjectListSchedulesPageResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final ObjectListSchedulesPageResponse.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final ObjectListSchedulesPageResponse.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final ObjectListSchedulesPageResponse build()
Returns an immutable instance of ObjectListSchedulesPageResponse.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.entries() .pageInfo()
-
-
-
-