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

com.aliyun.dingtalkresident_1_0.models.GetSpacesInfoRequest 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 GetSpacesInfoRequest extends TeaModel {
    @NameInMap("referIds")
    public java.util.List referIds;

    @NameInMap("residentCorpId")
    public String residentCorpId;

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

    public GetSpacesInfoRequest setReferIds(java.util.List referIds) {
        this.referIds = referIds;
        return this;
    }
    public java.util.List getReferIds() {
        return this.referIds;
    }

    public GetSpacesInfoRequest setResidentCorpId(String residentCorpId) {
        this.residentCorpId = residentCorpId;
        return this;
    }
    public String getResidentCorpId() {
        return this.residentCorpId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy