com.alipay.api.domain.AlipayMerchantGroupAssistantMsgQueryModel 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, 2024-12-13 10:26:02
*/
public class AlipayMerchantGroupAssistantMsgQueryModel extends AlipayObject {
private static final long serialVersionUID = 8815543457785292959L;
/**
* 小助手内容id,创建定向消息时返回的数据唯一id
*/
@ApiField("content_id")
private String contentId;
public String getContentId() {
return this.contentId;
}
public void setContentId(String contentId) {
this.contentId = contentId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy