public class MessageList extends AbstractModel
Constructor and Description |
---|
MessageList() |
MessageList(MessageList source)
NOTE: Any ambiguous key set via .set("AnyKey", "value") will be a shallow copy,
and any explicit key, i.e Foo, set via .setFoo("value") will be a deep copy.
|
Modifier and Type | Method and Description |
---|---|
String |
getFromAccount()
Get The sender.
|
MessageItem[] |
getMessageBody()
Get The message content.
|
Long |
getSeq()
Get The message sequence, which is unique across a class.
|
Long |
getTimestamp()
Get The message timestamp.
|
void |
setFromAccount(String FromAccount)
Set The sender.
|
void |
setMessageBody(MessageItem[] MessageBody)
Set The message content.
|
void |
setSeq(Long Seq)
Set The message sequence, which is unique across a class.
|
void |
setTimestamp(Long Timestamp)
Set The message timestamp.
|
void |
toMap(HashMap<String,String> map,
String prefix)
Internal implementation, normal users should not use it.
|
any, fromJsonString, getBinaryParams, getMultipartRequestParams, set, setParamArrayObj, setParamArraySimple, setParamObj, setParamSimple, toJsonString
public MessageList()
public MessageList(MessageList source)
public Long getTimestamp()
public void setTimestamp(Long Timestamp)
Timestamp
- The message timestamp.
Note: This field may return null, indicating that no valid values can be obtained.public String getFromAccount()
public void setFromAccount(String FromAccount)
FromAccount
- The sender.
Note: This field may return null, indicating that no valid values can be obtained.public Long getSeq()
public void setSeq(Long Seq)
Seq
- The message sequence, which is unique across a class. The earlier a message is sent, the lower the sequence.
Note: This field may return null, indicating that no valid values can be obtained.public MessageItem[] getMessageBody()
public void setMessageBody(MessageItem[] MessageBody)
MessageBody
- The message content.
Note: This field may return null, indicating that no valid values can be obtained.Copyright © 2023. All rights reserved.