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

com.aliyun.dingtalkedu_1_0.models.QueryUserFaceResponseBody 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.dingtalkedu_1_0.models;

import com.aliyun.tea.*;

public class QueryUserFaceResponseBody extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

dingding123

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

This parameter is required.

* * example: *

30001

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

This parameter is required.

* * example: *

小明

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

This parameter is required.

* * example: *

40001

*/ @NameInMap("userId") public String userId; public static QueryUserFaceResponseBody build(java.util.Map map) throws Exception { QueryUserFaceResponseBody self = new QueryUserFaceResponseBody(); return TeaModel.build(map, self); } public QueryUserFaceResponseBody setCorpId(String corpId) { this.corpId = corpId; return this; } public String getCorpId() { return this.corpId; } public QueryUserFaceResponseBody setFaceId(String faceId) { this.faceId = faceId; return this; } public String getFaceId() { return this.faceId; } public QueryUserFaceResponseBody setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public QueryUserFaceResponseBody setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy