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

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

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkresident_1_0.models;

import com.aliyun.tea.*;

public class GetResidentMembersInfoResponseBody extends TeaModel {
    // result
    @NameInMap("residenceList")
    public java.util.List residenceList;

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

    public GetResidentMembersInfoResponseBody setResidenceList(java.util.List residenceList) {
        this.residenceList = residenceList;
        return this;
    }
    public java.util.List getResidenceList() {
        return this.residenceList;
    }

    public static class GetResidentMembersInfoResponseBodyResidenceList extends TeaModel {
        // 是否激活
        @NameInMap("active")
        public Boolean active;

        // 扩展字段,如果是租客存起止时间
        @NameInMap("extField")
        public String extField;

        // 是否是产权人
        @NameInMap("isPropertyOwner")
        public Boolean isPropertyOwner;

        @NameInMap("name")
        public String name;

        // 业主/租客/亲友等
        @NameInMap("relateType")
        public String relateType;

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

        public GetResidentMembersInfoResponseBodyResidenceList setActive(Boolean active) {
            this.active = active;
            return this;
        }
        public Boolean getActive() {
            return this.active;
        }

        public GetResidentMembersInfoResponseBodyResidenceList setExtField(String extField) {
            this.extField = extField;
            return this;
        }
        public String getExtField() {
            return this.extField;
        }

        public GetResidentMembersInfoResponseBodyResidenceList setIsPropertyOwner(Boolean isPropertyOwner) {
            this.isPropertyOwner = isPropertyOwner;
            return this;
        }
        public Boolean getIsPropertyOwner() {
            return this.isPropertyOwner;
        }

        public GetResidentMembersInfoResponseBodyResidenceList setName(String name) {
            this.name = name;
            return this;
        }
        public String getName() {
            return this.name;
        }

        public GetResidentMembersInfoResponseBodyResidenceList setRelateType(String relateType) {
            this.relateType = relateType;
            return this;
        }
        public String getRelateType() {
            return this.relateType;
        }

    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy