com.aliyun.dingtalkedu_1_0.models.DeleteRemoteClassCourseRequest 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 DeleteRemoteClassCourseRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* bab02f63c1e030fbbxxxx
*/
@NameInMap("authCode")
public String authCode;
public static DeleteRemoteClassCourseRequest build(java.util.Map map) throws Exception {
DeleteRemoteClassCourseRequest self = new DeleteRemoteClassCourseRequest();
return TeaModel.build(map, self);
}
public DeleteRemoteClassCourseRequest setAuthCode(String authCode) {
this.authCode = authCode;
return this;
}
public String getAuthCode() {
return this.authCode;
}
}