com.alipay.api.response.AlipaySocialBaseChatGmsgSendResponse Maven / Gradle / Ivy
package com.alipay.api.response;
import com.alipay.api.internal.mapping.ApiField;
import com.alipay.api.AlipayResponse;
/**
* ALIPAY API: alipay.social.base.chat.gmsg.send response.
*
* @author auto create
* @since 1.0, 2024-07-04 19:33:21
*/
public class AlipaySocialBaseChatGmsgSendResponse extends AlipayResponse {
private static final long serialVersionUID = 2497357974975784447L;
/**
* 消息索引号 会话ID_消息ID
*/
@ApiField("msg_index")
private String msgIndex;
public void setMsgIndex(String msgIndex) {
this.msgIndex = msgIndex;
}
public String getMsgIndex( ) {
return this.msgIndex;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy