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

com.github.jamesnetherton.zulip.client.api.user.response.GetUserPresenceApiResponse Maven / Gradle / Ivy

The newest version!
package com.github.jamesnetherton.zulip.client.api.user.response;

import com.fasterxml.jackson.annotation.JsonProperty;
import com.github.jamesnetherton.zulip.client.api.core.ZulipApiResponse;
import com.github.jamesnetherton.zulip.client.api.user.UserPresenceDetail;
import java.util.HashMap;
import java.util.Map;

/**
 * Zulip API response class for getting user presence.
 *
 * @see https://zulip.com/api/get-user-presence#response
 */
public class GetUserPresenceApiResponse extends ZulipApiResponse {

    @JsonProperty
    private Map presence = new HashMap<>();

    public Map getPresence() {
        return presence;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy