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

com.larksuite.oapi.service.admin.v1.model.AuditContext 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 AuditContext {
    @SerializedName("terminal_type")
    private Integer terminalType;
    @SerializedName("ios_context")
    private AuditIosContext iosContext;
    @SerializedName("pc_context")
    private AuditPcContext pcContext;
    @SerializedName("web_context")
    private AuditWebContext webContext;
    @SerializedName("android_context")
    private AuditAndroidContext androidContext;

    public Integer getTerminalType() {
        return this.terminalType;
    }

    public void setTerminalType(Integer terminalType) {
        this.terminalType = terminalType;
    }

    public AuditIosContext getIosContext() {
        return this.iosContext;
    }

    public void setIosContext(AuditIosContext iosContext) {
        this.iosContext = iosContext;
    }

    public AuditPcContext getPcContext() {
        return this.pcContext;
    }

    public void setPcContext(AuditPcContext pcContext) {
        this.pcContext = pcContext;
    }

    public AuditWebContext getWebContext() {
        return this.webContext;
    }

    public void setWebContext(AuditWebContext webContext) {
        this.webContext = webContext;
    }

    public AuditAndroidContext getAndroidContext() {
        return this.androidContext;
    }

    public void setAndroidContext(AuditAndroidContext androidContext) {
        this.androidContext = androidContext;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy