Added in API level 31

RemoveByDocumentIdRequest


class RemoveByDocumentIdRequest : Parcelable
kotlin.Any
   ↳ android.app.appsearch.RemoveByDocumentIdRequest

Encapsulates a request to remove documents by namespace and IDs from the AppSearchSession database.

Summary

Nested classes

Builder for RemoveByDocumentIdRequest objects.

Inherited constants
Public methods
MutableSet<String!>

Returns the set of document IDs attached to the request.

String

Returns the namespace to remove documents from.

Unit
writeToParcel(dest: Parcel, flags: Int)

Flatten this object in to a Parcel.

Properties
static Parcelable.Creator<RemoveByDocumentIdRequest!>

Creator class for android.app.appsearch.RemoveByDocumentIdRequest.

Public methods

getIds

Added in API level 31
fun getIds(): MutableSet<String!>

Returns the set of document IDs attached to the request.

Return
MutableSet<String!> This value cannot be null.

getNamespace

Added in API level 31
fun getNamespace(): String

Returns the namespace to remove documents from.

Return
String This value cannot be null.

writeToParcel

fun writeToParcel(
    dest: Parcel,
    flags: Int
): Unit

Flatten this object in to a Parcel.

Parameters
dest Parcel: This value cannot be null.
flags Int: Additional flags about how the object should be written. May be 0 or PARCELABLE_WRITE_RETURN_VALUE. Value is either 0 or a combination of android.os.Parcelable#PARCELABLE_WRITE_RETURN_VALUE, and android.os.Parcelable.PARCELABLE_ELIDE_DUPLICATES

Properties