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

com.aliyun.dingtalkindustry_1_0.models.CollegeUpdateStudentMoblieRequest Maven / Gradle / Ivy

There is a newer version: 2.1.88
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkindustry_1_0.models;

import com.aliyun.tea.*;

public class CollegeUpdateStudentMoblieRequest extends TeaModel {
    @NameInMap("isForce")
    public Boolean isForce;

    /**
     * 

This parameter is required.

* * example: *

187xxxxxxxx

*/ @NameInMap("newMobile") public String newMobile; /** *

This parameter is required.

* * example: *

222222

*/ @NameInMap("studentId") public Long studentId; public static CollegeUpdateStudentMoblieRequest build(java.util.Map map) throws Exception { CollegeUpdateStudentMoblieRequest self = new CollegeUpdateStudentMoblieRequest(); return TeaModel.build(map, self); } public CollegeUpdateStudentMoblieRequest setIsForce(Boolean isForce) { this.isForce = isForce; return this; } public Boolean getIsForce() { return this.isForce; } public CollegeUpdateStudentMoblieRequest setNewMobile(String newMobile) { this.newMobile = newMobile; return this; } public String getNewMobile() { return this.newMobile; } public CollegeUpdateStudentMoblieRequest setStudentId(Long studentId) { this.studentId = studentId; return this; } public Long getStudentId() { return this.studentId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy