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

com.larksuite.oapi.service.meeting_room.v1.model.BuildingCreateReqBody Maven / Gradle / Ivy

Go to download

Larksuite open platform facilitates the integration of enterprise applications and larksuite, making collaboration and management more efficient

There is a newer version: 1.0.18-rc8
Show newest version
// Code generated by lark suite oapi sdk gen
package com.larksuite.oapi.service.meeting_room.v1.model;
import com.google.gson.annotations.SerializedName;

public class BuildingCreateReqBody {
    @SerializedName("name")
    private String name;
    @SerializedName("floors")
    private String[] floors;
    @SerializedName("country_id")
    private String countryId;
    @SerializedName("district_id")
    private String districtId;
    @SerializedName("custom_building_id")
    private String customBuildingId;

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

    public void setName(String name) {
        this.name = name;
    }

    public String[] getFloors() {
        return this.floors;
    }

    public void setFloors(String[] floors) {
        this.floors = floors;
    }

    public String getCountryId() {
        return this.countryId;
    }

    public void setCountryId(String countryId) {
        this.countryId = countryId;
    }

    public String getDistrictId() {
        return this.districtId;
    }

    public void setDistrictId(String districtId) {
        this.districtId = districtId;
    }

    public String getCustomBuildingId() {
        return this.customBuildingId;
    }

    public void setCustomBuildingId(String customBuildingId) {
        this.customBuildingId = customBuildingId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy