All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.jamesnetherton.zulip.client.api.message.response.GetMessageReadReceiptsApiResponse Maven / Gradle / Ivy

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 java.util.List;

/**
 * Zulip API response class for searching and getting message receipts.
 *
 * @see https://zulip.com/api/get-read-receipts#response
 */
public class GetMessageReadReceiptsApiResponse extends ZulipApiResponse {
    @JsonProperty
    private List userIds;

    public List getUserIds() {
        return userIds;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy