
com.aliyun.dingtalkindustry_1_0.models.CollegeQueryStudentInfoByMobileRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkindustry_1_0.models;
import com.aliyun.tea.*;
public class CollegeQueryStudentInfoByMobileRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 187xxxxxxxx
*/
@NameInMap("mobile")
public String mobile;
public static CollegeQueryStudentInfoByMobileRequest build(java.util.Map map) throws Exception {
CollegeQueryStudentInfoByMobileRequest self = new CollegeQueryStudentInfoByMobileRequest();
return TeaModel.build(map, self);
}
public CollegeQueryStudentInfoByMobileRequest setMobile(String mobile) {
this.mobile = mobile;
return this;
}
public String getMobile() {
return this.mobile;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy