Package | Description |
---|---|
com.ciscowebex.androidsdk.message |
Modifier and Type | Method and Description |
---|---|
Message.Text |
Message.getTextAsObject()
Returns the content of the message in as
Message.Text object. |
static Message.Text |
Message.Text.html(java.lang.String html,
java.lang.String plain)
Make a Text object for the html.
|
static Message.Text |
Message.Text.markdown(java.lang.String markdown,
java.lang.String html,
java.lang.String plain)
Make a Text object for the markdown.
|
static Message.Text |
Message.Text.plain(java.lang.String plain)
Make a Text object for the plain text.
|
Modifier and Type | Method and Description |
---|---|
static Message.Draft |
Message.draft(Message.Text text)
Write a draft to be posted.
|
void |
MessageClient.edit(Message originalMessage,
Message.Text text,
Mention[] mentions,
CompletionHandler<MessageObserver.MessageEdited> handler)
Edit a previous sent message asynchronously.
|
void |
MessageClient.postToPerson(EmailAddress email,
Message.Text text,
LocalFile[] files,
CompletionHandler<Message> handler)
Posts a message with optional file attachments to a person asynchronously.
|
void |
MessageClient.postToPerson(java.lang.String id,
Message.Text text,
LocalFile[] files,
CompletionHandler<Message> handler)
Posts a message with optional file attachments to a person asynchronously.
|
void |
MessageClient.postToSpace(java.lang.String id,
Message.Text text,
Mention[] mentions,
LocalFile[] files,
CompletionHandler<Message> handler)
Posts a message with optional file attachments to a space asynchronously.
|