Class UpdateApiKeyResponse
- java.lang.Object
-
- com.algolia.search.models.apikeys.UpdateApiKeyResponse
-
- All Implemented Interfaces:
WaitableResponse,Serializable
public class UpdateApiKeyResponse extends Object implements WaitableResponse, Serializable
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UpdateApiKeyResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Function<String,ApiKey>getGetApiKeyFunction()StringgetKey()ApiKeygetPendingKey()OffsetDateTimegetUpdatedAt()voidsetGetApiKeyFunction(Function<String,ApiKey> getApiKeyConsumer)voidsetKey(String key)voidsetPendingKey(ApiKey pendingKey)voidsetUpdatedAt(OffsetDateTime updatedAt)voidwaitTask()Wait for a task to complete before executing the next line of code, to synchronize index updates.
-
-
-
Method Detail
-
getKey
public String getKey()
-
setKey
public void setKey(String key)
-
getUpdatedAt
public OffsetDateTime getUpdatedAt()
-
setUpdatedAt
public void setUpdatedAt(OffsetDateTime updatedAt)
-
getPendingKey
public ApiKey getPendingKey()
-
setPendingKey
public void setPendingKey(ApiKey pendingKey)
-
waitTask
public void waitTask()
Description copied from interface:WaitableResponseWait for a task to complete before executing the next line of code, to synchronize index updates.- Specified by:
waitTaskin interfaceWaitableResponse
-
-