Package ai.nexconn.chat.params
Class PinParams
-
- All Implemented Interfaces:
public final class PinParamsParameters for pinning a channel to the top.
val params = PinParams().apply { updateOperationTime = false } channel.pin(params) { result, error -> ... }
-
-
Field Summary
Fields Modifier and Type Field Description private BooleanupdateOperationTime
-
Constructor Summary
Constructors Constructor Description PinParams()
-
Method Summary
Modifier and Type Method Description final BooleangetUpdateOperationTime()Whether to update the channel operation timestamp. final UnitsetUpdateOperationTime(Boolean updateOperationTime)Whether to update the channel operation timestamp. -
-
Method Detail
-
getUpdateOperationTime
final Boolean getUpdateOperationTime()
Whether to update the channel operation timestamp. Default is
true.
-
setUpdateOperationTime
final Unit setUpdateOperationTime(Boolean updateOperationTime)
Whether to update the channel operation timestamp. Default is
true.
-
-
-
-