com.larksuite.oapi.service.im.v1.model.ChatAnnouncementGetResult Maven / Gradle / Ivy
// Code generated by lark suite oapi sdk gen
package com.larksuite.oapi.service.im.v1.model;
import com.google.gson.annotations.SerializedName;
public class ChatAnnouncementGetResult {
@SerializedName("content")
private String content;
@SerializedName("revision")
private String revision;
@SerializedName("create_time")
private String createTime;
@SerializedName("update_time")
private String updateTime;
@SerializedName("owner_id_type")
private String ownerIdType;
@SerializedName("owner_id")
private String ownerId;
@SerializedName("modifier_id_type")
private String modifierIdType;
@SerializedName("modifier_id")
private String modifierId;
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
public String getRevision() {
return this.revision;
}
public void setRevision(String revision) {
this.revision = revision;
}
public String getCreateTime() {
return this.createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getUpdateTime() {
return this.updateTime;
}
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
public String getOwnerIdType() {
return this.ownerIdType;
}
public void setOwnerIdType(String ownerIdType) {
this.ownerIdType = ownerIdType;
}
public String getOwnerId() {
return this.ownerId;
}
public void setOwnerId(String ownerId) {
this.ownerId = ownerId;
}
public String getModifierIdType() {
return this.modifierIdType;
}
public void setModifierIdType(String modifierIdType) {
this.modifierIdType = modifierIdType;
}
public String getModifierId() {
return this.modifierId;
}
public void setModifierId(String modifierId) {
this.modifierId = modifierId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy