com.github.jamesnetherton.zulip.client.api.message.response.GetScheduledMessagesApiResponse 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;
import com.github.jamesnetherton.zulip.client.api.message.ScheduledMessage;
import java.util.ArrayList;
import java.util.List;
/**
* Zulip API response class for getting scheduled messages for the current user.
*
* @see https://zulip.com/api/get-scheduled-messages#response
*/
public class GetScheduledMessagesApiResponse extends ZulipApiResponse {
@JsonProperty
private List scheduledMessages = new ArrayList<>();
public List getScheduledMessages() {
return scheduledMessages;
}
}