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

com.larksuite.oapi.service.admin.v1.model.SplashPageStat 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 SplashPageStat {
    @SerializedName("date")
    private String date;
    @SerializedName("splash_id")
    private String splashId;
    @SerializedName("impression_count")
    private Integer impressionCount;
    @SerializedName("click_count")
    private Integer clickCount;
    @SerializedName("skip_count")
    private Integer skipCount;
    @SerializedName("impression_count_accumulate")
    private Integer impressionCountAccumulate;
    @SerializedName("click_count_accumulate")
    private Integer clickCountAccumulate;
    @SerializedName("skip_count_accumulate")
    private Integer skipCountAccumulate;

    public String getDate() {
        return this.date;
    }

    public void setDate(String date) {
        this.date = date;
    }

    public String getSplashId() {
        return this.splashId;
    }

    public void setSplashId(String splashId) {
        this.splashId = splashId;
    }

    public Integer getImpressionCount() {
        return this.impressionCount;
    }

    public void setImpressionCount(Integer impressionCount) {
        this.impressionCount = impressionCount;
    }

    public Integer getClickCount() {
        return this.clickCount;
    }

    public void setClickCount(Integer clickCount) {
        this.clickCount = clickCount;
    }

    public Integer getSkipCount() {
        return this.skipCount;
    }

    public void setSkipCount(Integer skipCount) {
        this.skipCount = skipCount;
    }

    public Integer getImpressionCountAccumulate() {
        return this.impressionCountAccumulate;
    }

    public void setImpressionCountAccumulate(Integer impressionCountAccumulate) {
        this.impressionCountAccumulate = impressionCountAccumulate;
    }

    public Integer getClickCountAccumulate() {
        return this.clickCountAccumulate;
    }

    public void setClickCountAccumulate(Integer clickCountAccumulate) {
        this.clickCountAccumulate = clickCountAccumulate;
    }

    public Integer getSkipCountAccumulate() {
        return this.skipCountAccumulate;
    }

    public void setSkipCountAccumulate(Integer skipCountAccumulate) {
        this.skipCountAccumulate = skipCountAccumulate;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy