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

com.aliyun.dingtalkresident_1_0.models.ListSubSpaceRequest 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 ListSubSpaceRequest extends TeaModel {
    @NameInMap("referId")
    public Long referId;

    // A short description of struct
    @NameInMap("residentCorpId")
    public String residentCorpId;

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

    public ListSubSpaceRequest setReferId(Long referId) {
        this.referId = referId;
        return this;
    }
    public Long getReferId() {
        return this.referId;
    }

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

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy