com.aliyun.dingtalkedu_1_0.models.PollingConfirmStatusRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkedu_1_0.models;
import com.aliyun.tea.*;
public class PollingConfirmStatusRequest extends TeaModel {
/**
* example:
* testCourseCode
*/
@NameInMap("courseCode")
public String courseCode;
/**
* example:
* testExt
*/
@NameInMap("ext")
public String ext;
/**
* example:
* DDIsv
*/
@NameInMap("isvCode")
public String isvCode;
/**
* example:
* 1
*/
@NameInMap("opUserId")
public String opUserId;
public static PollingConfirmStatusRequest build(java.util.Map map) throws Exception {
PollingConfirmStatusRequest self = new PollingConfirmStatusRequest();
return TeaModel.build(map, self);
}
public PollingConfirmStatusRequest setCourseCode(String courseCode) {
this.courseCode = courseCode;
return this;
}
public String getCourseCode() {
return this.courseCode;
}
public PollingConfirmStatusRequest setExt(String ext) {
this.ext = ext;
return this;
}
public String getExt() {
return this.ext;
}
public PollingConfirmStatusRequest setIsvCode(String isvCode) {
this.isvCode = isvCode;
return this;
}
public String getIsvCode() {
return this.isvCode;
}
public PollingConfirmStatusRequest setOpUserId(String opUserId) {
this.opUserId = opUserId;
return this;
}
public String getOpUserId() {
return this.opUserId;
}
}