com.alipay.api.domain.TechriskRiskaiOpsgptTaskQueryModel 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-09-03 09:55:30
*/
public class TechriskRiskaiOpsgptTaskQueryModel extends AlipayObject {
private static final long serialVersionUID = 1213615242362397415L;
/**
* 提交任务成功后返回的任务id,用户需要使用该 id 调用任务查询接口轮询任务结果
*/
@ApiField("task_id")
private String taskId;
public String getTaskId() {
return this.taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy