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

com.aliyun.dingtalkexclusive_1_0.models.GetUserRealPeopleStateResponseBody 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.dingtalkexclusive_1_0.models;

import com.aliyun.tea.*;

public class GetUserRealPeopleStateResponseBody extends TeaModel {
    @NameInMap("data")
    public java.util.List data;

    public static GetUserRealPeopleStateResponseBody build(java.util.Map map) throws Exception {
        GetUserRealPeopleStateResponseBody self = new GetUserRealPeopleStateResponseBody();
        return TeaModel.build(map, self);
    }

    public GetUserRealPeopleStateResponseBody setData(java.util.List data) {
        this.data = data;
        return this;
    }
    public java.util.List getData() {
        return this.data;
    }

    public static class GetUserRealPeopleStateResponseBodyData extends TeaModel {
        /**
         * example:
         * 

1

*/ @NameInMap("state") public Integer state; /** * example: *

userId

*/ @NameInMap("userId") public String userId; public static GetUserRealPeopleStateResponseBodyData build(java.util.Map map) throws Exception { GetUserRealPeopleStateResponseBodyData self = new GetUserRealPeopleStateResponseBodyData(); return TeaModel.build(map, self); } public GetUserRealPeopleStateResponseBodyData setState(Integer state) { this.state = state; return this; } public Integer getState() { return this.state; } public GetUserRealPeopleStateResponseBodyData setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy