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

com.larksuite.oapi.service.im.v1.model.AnnouncementGetResult 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.im.v1.model;
import com.google.gson.annotations.SerializedName;

public class AnnouncementGetResult {
    @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 - 2024 Weber Informatics LLC | Privacy Policy