com.alipay.api.domain.Article Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 图文消息子消息
*
* @author auto create
* @since 1.0, 2020-06-22 21:27:42
*/
public class Article extends AlipayObject {
private static final long serialVersionUID = 3561154383427963275L;
/**
* 链接文字
*/
@ApiField("action_name")
private String actionName;
/**
* 图文消息内容
*/
@ApiField("desc")
private String desc;
/**
* 图片链接,对于多条图文消息的第一条消息,该字段不能为空; 请先调用 图片上传接口获得图片url
*/
@ApiField("image_url")
private String imageUrl;
/**
* 图文消息标题
*/
@ApiField("title")
private String title;
/**
* 点击图文消息跳转的链接
*/
@ApiField("url")
private String url;
public String getActionName() {
return this.actionName;
}
public void setActionName(String actionName) {
this.actionName = actionName;
}
public String getDesc() {
return this.desc;
}
public void setDesc(String desc) {
this.desc = desc;
}
public String getImageUrl() {
return this.imageUrl;
}
public void setImageUrl(String imageUrl) {
this.imageUrl = imageUrl;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
public String getUrl() {
return this.url;
}
public void setUrl(String url) {
this.url = url;
}
}