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

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

public class AuditObjectEntity {
    @SerializedName("object_type")
    private String objectType;
    @SerializedName("object_value")
    private String objectValue;
    @SerializedName("object_name")
    private String objectName;
    @SerializedName("object_owner")
    private String objectOwner;
    @SerializedName("object_detail")
    private AuditObjectDetail objectDetail;

    public String getObjectType() {
        return this.objectType;
    }

    public void setObjectType(String objectType) {
        this.objectType = objectType;
    }

    public String getObjectValue() {
        return this.objectValue;
    }

    public void setObjectValue(String objectValue) {
        this.objectValue = objectValue;
    }

    public String getObjectName() {
        return this.objectName;
    }

    public void setObjectName(String objectName) {
        this.objectName = objectName;
    }

    public String getObjectOwner() {
        return this.objectOwner;
    }

    public void setObjectOwner(String objectOwner) {
        this.objectOwner = objectOwner;
    }

    public AuditObjectDetail getObjectDetail() {
        return this.objectDetail;
    }

    public void setObjectDetail(AuditObjectDetail objectDetail) {
        this.objectDetail = objectDetail;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy