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

lodsve.wechat.beans.tidings.TextTidings Maven / Gradle / Ivy

There is a newer version: 2.7.5-RELEASE
Show newest version
package lodsve.wechat.beans.tidings;

import io.swagger.annotations.ApiModel;
import io.swagger.annotations.ApiModelProperty;
import lodsve.wechat.beans.tidings.items.Text;

/**
 * 文本客服消息.
 *
 * @author sunhao([email protected])
 * @version V1.0, 16/2/24 上午11:56
 */
@ApiModel(description = "文本客服消息")
public class TextTidings extends Tidings {
    public TextTidings() {
        setTidingsType(TidingsType.text);
    }

    @ApiModelProperty(value = "文本客服消息", required = true)
    private Text text;

    @ApiModelProperty(value = "文本客服消息", required = true)
    public Text getText() {
        return text;
    }

    @ApiModelProperty(value = "文本客服消息", required = true)
    public void setText(Text text) {
        this.text = text;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy