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

com.github.jamesnetherton.zulip.client.api.user.response.UpdateOwnUserPresenceApiResponse 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.Map;

/**
 * Zulip API response class for updating own user presence.
 *
 * @see https://zulip.com/api/update-presence#response
 */
public class UpdateOwnUserPresenceApiResponse extends ZulipApiResponse {
    @JsonProperty
    private Map presences;

    public Map getPresences() {
        return presences;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy