com.alipay.api.domain.Text Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk Show documentation
Show all versions of alipay-sdk Show documentation
alipay-sdk project for Spring Project
The newest version!
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 文本消息内容
*
* @author auto create
* @since 1.0, 2017-06-29 17:24:44
*/
public class Text extends AlipayObject {
private static final long serialVersionUID = 1245667693458611828L;
/**
* 文本消息的内容
*/
@ApiField("content")
private String content;
/**
* 文本消息的标题
*/
@ApiField("title")
private String title;
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy