com.larksuite.oapi.service.contact.v3.model.DepartmentUnit Maven / Gradle / Ivy
// Code generated by lark suite oapi sdk gen
package com.larksuite.oapi.service.contact.v3.model;
import com.google.gson.annotations.SerializedName;
public class DepartmentUnit {
@SerializedName("unit_id")
private String unitId;
@SerializedName("unit_type")
private String unitType;
@SerializedName("unit_name")
private String unitName;
public String getUnitId() {
return this.unitId;
}
public void setUnitId(String unitId) {
this.unitId = unitId;
}
public String getUnitType() {
return this.unitType;
}
public void setUnitType(String unitType) {
this.unitType = unitType;
}
public String getUnitName() {
return this.unitName;
}
public void setUnitName(String unitName) {
this.unitName = unitName;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy