Package app.knock.api.models.users.bulk
Class BulkDeleteParams
-
- All Implemented Interfaces:
-
app.knock.api.core.Params
public final class BulkDeleteParams implements Params
Deletes multiple users in a single operation. Accepts up to 100 user IDs to delete and returns a bulk operation that can be queried for progress.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description public final classBulkDeleteParams.BuilderA builder for BulkDeleteParams.
public final classBulkDeleteParams.BodyA request to delete users in bulk.
-
Method Summary
Modifier and Type Method Description final List<String>userIds()A list of user IDs. final JsonField<List<String>>_userIds()Returns the raw JSON value of userIds. final Map<String, JsonValue>_additionalBodyProperties()final Headers_additionalHeaders()final QueryParams_additionalQueryParams()final BulkDeleteParams.BuildertoBuilder()final BulkDeleteParams.Body_body()Headers_headers()The full set of headers in the parameters, including both fixed and additional headers. QueryParams_queryParams()The full set of query params in the parameters, including both fixed and additional query params. Booleanequals(Object other)IntegerhashCode()StringtoString()final static BulkDeleteParams.Builderbuilder()Returns a mutable builder for constructing an instance of BulkDeleteParams. -
-
Method Detail
-
_userIds
final JsonField<List<String>> _userIds()
Returns the raw JSON value of userIds.
Unlike userIds, this method doesn't throw if the JSON field has an unexpected type.
-
_additionalBodyProperties
final Map<String, JsonValue> _additionalBodyProperties()
-
_additionalHeaders
final Headers _additionalHeaders()
-
_additionalQueryParams
final QueryParams _additionalQueryParams()
-
toBuilder
final BulkDeleteParams.Builder toBuilder()
-
_body
final BulkDeleteParams.Body _body()
-
_headers
Headers _headers()
The full set of headers in the parameters, including both fixed and additional headers.
-
_queryParams
QueryParams _queryParams()
The full set of query params in the parameters, including both fixed and additional query params.
-
builder
final static BulkDeleteParams.Builder builder()
Returns a mutable builder for constructing an instance of BulkDeleteParams.
The following fields are required:
.userIds()
-
-
-
-