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

com.aliyun.dingtalkindustry_1_0.models.CampusAddRenterMemberRequest 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.dingtalkindustry_1_0.models;

import com.aliyun.tea.*;

public class CampusAddRenterMemberRequest extends TeaModel {
    // 扩展字段
    @NameInMap("extend")
    public String extend;

    // 手机号
    @NameInMap("mobile")
    public String mobile;

    // 名字
    @NameInMap("name")
    public String name;

    // 租客id
    @NameInMap("renterId")
    public Long renterId;

    // 类型
    @NameInMap("type")
    public String type;

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

    public CampusAddRenterMemberRequest setExtend(String extend) {
        this.extend = extend;
        return this;
    }
    public String getExtend() {
        return this.extend;
    }

    public CampusAddRenterMemberRequest setMobile(String mobile) {
        this.mobile = mobile;
        return this;
    }
    public String getMobile() {
        return this.mobile;
    }

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

    public CampusAddRenterMemberRequest setRenterId(Long renterId) {
        this.renterId = renterId;
        return this;
    }
    public Long getRenterId() {
        return this.renterId;
    }

    public CampusAddRenterMemberRequest setType(String type) {
        this.type = type;
        return this;
    }
    public String getType() {
        return this.type;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy