com.aliyun.dingtalkindustry_1_0.models.CollegeQueryStudentInfoByStudentIdRequest 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.dingtalkindustry_1_0.models;
import com.aliyun.tea.*;
public class CollegeQueryStudentInfoByStudentIdRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 22222
*/
@NameInMap("studentId")
public Long studentId;
public static CollegeQueryStudentInfoByStudentIdRequest build(java.util.Map map) throws Exception {
CollegeQueryStudentInfoByStudentIdRequest self = new CollegeQueryStudentInfoByStudentIdRequest();
return TeaModel.build(map, self);
}
public CollegeQueryStudentInfoByStudentIdRequest setStudentId(Long studentId) {
this.studentId = studentId;
return this;
}
public Long getStudentId() {
return this.studentId;
}
}