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

com.aliyun.dingtalkresident_1_0.models.GetResidentMembersInfoRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class GetResidentMembersInfoRequest extends TeaModel {
    @NameInMap("residentCropId")
    public String residentCropId;

    @NameInMap("userIdList")
    public java.util.List userIdList;

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

    public GetResidentMembersInfoRequest setResidentCropId(String residentCropId) {
        this.residentCropId = residentCropId;
        return this;
    }
    public String getResidentCropId() {
        return this.residentCropId;
    }

    public GetResidentMembersInfoRequest setUserIdList(java.util.List userIdList) {
        this.userIdList = userIdList;
        return this;
    }
    public java.util.List getUserIdList() {
        return this.userIdList;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy