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

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

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy