Package app.knock.api.models.schedules
Class ScheduleDeleteParams.Body.Builder
-
- All Implemented Interfaces:
public final class ScheduleDeleteParams.Body.BuilderA builder for Body.
-
-
Method Summary
Modifier and Type Method Description final ScheduleDeleteParams.Body.BuilderscheduleIds(List<String> scheduleIds)A list of schedule IDs. final ScheduleDeleteParams.Body.BuilderscheduleIds(JsonField<List<String>> scheduleIds)Sets Builder.scheduleIds to an arbitrary JSON value. final ScheduleDeleteParams.Body.BuilderaddScheduleId(String scheduleId)Adds a single String to scheduleIds. final ScheduleDeleteParams.Body.BuilderadditionalProperties(Map<String, JsonValue> additionalProperties)final ScheduleDeleteParams.Body.BuilderputAdditionalProperty(String key, JsonValue value)final ScheduleDeleteParams.Body.BuilderputAllAdditionalProperties(Map<String, JsonValue> additionalProperties)final ScheduleDeleteParams.Body.BuilderremoveAdditionalProperty(String key)final ScheduleDeleteParams.Body.BuilderremoveAllAdditionalProperties(Set<String> keys)final ScheduleDeleteParams.Bodybuild()Returns an immutable instance of Body. -
-
Method Detail
-
scheduleIds
final ScheduleDeleteParams.Body.Builder scheduleIds(List<String> scheduleIds)
A list of schedule IDs.
-
scheduleIds
final ScheduleDeleteParams.Body.Builder scheduleIds(JsonField<List<String>> scheduleIds)
Sets Builder.scheduleIds to an arbitrary JSON value.
You should usually call Builder.scheduleIds with a well-typed
List<String>value instead. This method is primarily for setting the field to an undocumented or not yet supported value.
-
addScheduleId
final ScheduleDeleteParams.Body.Builder addScheduleId(String scheduleId)
Adds a single String to scheduleIds.
-
additionalProperties
final ScheduleDeleteParams.Body.Builder additionalProperties(Map<String, JsonValue> additionalProperties)
-
putAdditionalProperty
final ScheduleDeleteParams.Body.Builder putAdditionalProperty(String key, JsonValue value)
-
putAllAdditionalProperties
final ScheduleDeleteParams.Body.Builder putAllAdditionalProperties(Map<String, JsonValue> additionalProperties)
-
removeAdditionalProperty
final ScheduleDeleteParams.Body.Builder removeAdditionalProperty(String key)
-
removeAllAdditionalProperties
final ScheduleDeleteParams.Body.Builder removeAllAdditionalProperties(Set<String> keys)
-
build
final ScheduleDeleteParams.Body build()
Returns an immutable instance of Body.
Further updates to this Builder will not mutate the returned instance.
The following fields are required:
.scheduleIds()
-
-
-
-