
com.larksuite.oapi.service.meeting_room.v1.model.BuildingUpdateReqBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of larksuite-oapi Show documentation
Show all versions of larksuite-oapi Show documentation
Larksuite open platform facilitates the integration of enterprise applications and larksuite, making
collaboration and management more efficient
// 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 BuildingUpdateReqBody {
@SerializedName("building_id")
private String buildingId;
@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 getBuildingId() {
return this.buildingId;
}
public void setBuildingId(String buildingId) {
this.buildingId = buildingId;
}
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 - 2025 Weber Informatics LLC | Privacy Policy