All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.dingtalkedu_1_0.models.PollingConfirmStatusRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy