com.alipay.api.domain.AlipayOpenPublicLifeMsgRecallModel 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-08-28 17:30:50
*/
public class AlipayOpenPublicLifeMsgRecallModel extends AlipayObject {
private static final long serialVersionUID = 3178873171358145186L;
/**
* 消息id
*/
@ApiField("message_id")
private String messageId;
public String getMessageId() {
return this.messageId;
}
public void setMessageId(String messageId) {
this.messageId = messageId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy