com.github.jamesnetherton.zulip.client.api.message.response.SendMessageApiResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zulip-java-client Show documentation
Show all versions of zulip-java-client Show documentation
Java client for the Zulip REST API
The newest version!
package com.github.jamesnetherton.zulip.client.api.message.response;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.github.jamesnetherton.zulip.client.api.core.ZulipApiResponse;
/**
* Zulip API response class for sending a message.
*
* @see https://zulip.com/api/send-message#response
*/
public class SendMessageApiResponse extends ZulipApiResponse {
@JsonProperty
private long id;
public long getId() {
return id;
}
}