Package app.knock.api.models.users
Class UserListSchedulesPageResponse.Builder
-
- All Implemented Interfaces:
public final class UserListSchedulesPageResponse.BuilderA builder for UserListSchedulesPageResponse.
-
-
Method Summary
-
-
Method Detail
-
entries
final UserListSchedulesPageResponse.Builder entries(List<Schedule> entries)
A list of schedules.
-
entries
final UserListSchedulesPageResponse.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 UserListSchedulesPageResponse.Builder addEntry(Schedule entry)
-
pageInfo
final UserListSchedulesPageResponse.Builder pageInfo(PageInfo pageInfo)
Pagination information for a list of resources.
-
pageInfo
final UserListSchedulesPageResponse.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 UserListSchedulesPageResponse.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final UserListSchedulesPageResponse.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final UserListSchedulesPageResponse.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final UserListSchedulesPageResponse.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final UserListSchedulesPageResponse.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final UserListSchedulesPageResponse build()
Returns an immutable instance of UserListSchedulesPageResponse.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.entries() .pageInfo()
-
-
-
-