com.github.jamesnetherton.zulip.client.api.user.ProfileData 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.user;
import com.fasterxml.jackson.annotation.JsonProperty;
/**
* Defines Zulip profile data.
*/
public class ProfileData {
@JsonProperty
private String renderedValue;
@JsonProperty
private String value;
public String getRenderedValue() {
return renderedValue;
}
public String getValue() {
return value;
}
}