com.github.jamesnetherton.zulip.client.api.server.response.GetApiKeyApiResponse 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.server.response;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.github.jamesnetherton.zulip.client.api.core.ZulipApiResponse;
/**
* Zulip API response class for getting a user API key.
*
* @see https://zulip.com/api/fetch-api-key#response
* @see https://zulip.com/api/dev-fetch-api-key#response
*/
public class GetApiKeyApiResponse extends ZulipApiResponse {
@JsonProperty
private String apiKey;
public String getApiKey() {
return apiKey;
}
}