com.alipay.api.domain.AnttechMorseDataserviceInsighttaskQueryModel 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-06-03 11:01:26
*/
public class AnttechMorseDataserviceInsighttaskQueryModel extends AlipayObject {
private static final long serialVersionUID = 2227962873896724642L;
/**
* 给客户发放的调用ID
*/
@ApiField("consult_id")
private String consultId;
/**
* 洞察任务ID
*/
@ApiField("task_id")
private String taskId;
public String getConsultId() {
return this.consultId;
}
public void setConsultId(String consultId) {
this.consultId = consultId;
}
public String getTaskId() {
return this.taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy