RtmChannelAttribute

最近更新时间:2022-09-20 05:17:40

Public 成员函数
RtmChannelAttribute (String key, String value)
voidsetKey (String key)
StringgetKey ()
voidsetValue (String value)
StringgetValue ()
StringgetLastUpdateUserId ()
longgetLastUpdateTs ()
StringtoString ()

构造及析构函数说明

RtmChannelAttribute()

org.ar.rtm.RtmChannelAttribute.RtmChannelAttribute (String key,String value )   

RtmChannelAttribute 类的构造方法。

参数描述
key频道属性的属性名。必须为可见字符且长度不得超过 32 字节。
value频道属性的属性值。长度不得超过 8 KB。

成员函数说明

getKey()

String org.ar.rtm.RtmChannelAttribute.getKey    ()

获取频道属性名。

返回

通过 setKey 方法设置的频道属性名。

getLastUpdateTs()

long org.ar.rtm.RtmChannelAttribute.getLastUpdateTs ()

获取频道属性最近一次更新的时间戳。

返回

频道属性最近一次更新的时间戳(毫秒)。

getLastUpdateUserId()

String org.ar.rtm.RtmChannelAttribute.getLastUpdateUserId   ()

获取最近一次更新频道属性用户的 ID。

返回

最近一次更新频道属性用户的 ID。

getValue()

String org.ar.rtm.RtmChannelAttribute.getValue()

获取频道属性的属性值。

  • 返回

    通过 setValue 方法设置的频道属性值。

setKey()

void org.ar.rtm.RtmChannelAttribute.setKey (String key)

设置频道属性名。

参数描述
key频道属性的属性名。必须为可见字符且长度不得超过 32 字节。

setValue()

void org.ar.rtm.RtmChannelAttribute.setValue    (String value)

设置频道属性值。

参数描述
value频道属性的属性值。长度不得超过 8 KB。