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

com.github.jamesnetherton.zulip.client.api.message.response.RenderMessageApiResponse Maven / Gradle / Ivy

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

import com.fasterxml.jackson.annotation.JsonProperty;
import com.github.jamesnetherton.zulip.client.api.core.ZulipApiResponse;

/**
 * Zulip API response class for rendering message to HTML.
 *
 * @see https://zulip.com/api/render-message#response
 */
public class RenderMessageApiResponse extends ZulipApiResponse {

    @JsonProperty
    private String rendered;

    public String getRendered() {
        return rendered;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy