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

com.umeng.uapp.param.UmengUappRetentionInfo Maven / Gradle / Ivy

There is a newer version: 1.1.0
Show newest version
package com.umeng.uapp.param;

import java.util.*;
import java.math.BigDecimal;
import java.math.BigInteger;

public class UmengUappRetentionInfo {

    private String date;

    /**
     * @return 统计日期
     */
    public String getDate() {
        return date;
    }

    /**
     * 设置统计日期     *
     * 参数示例:
     
     * 此参数必填
     */
    public void setDate(String date) {
        this.date = date;
    }

    private Integer totalInstallUser;

    /**
     * @return 当日安装用户数
     */
    public Integer getTotalInstallUser() {
        return totalInstallUser;
    }

    /**
     * 设置当日安装用户数     *
     * 参数示例:
     
     * 此参数必填
     */
    public void setTotalInstallUser(Integer totalInstallUser) {
        this.totalInstallUser = totalInstallUser;
    }

    private double[] retentionRate;

    /**
     * @return 相对之后几日的留存用户数,安装日期到今日之间7天(每天),14天后,30天后留存用户占比(不包含今日)
     */
    public double[] getRetentionRate() {
        return retentionRate;
    }

    /**
     * 设置相对之后几日的留存用户数,安装日期到今日之间7天(每天),14天后,30天后留存用户占比(不包含今日)     *
     * 参数示例:
     
     * 此参数必填
     */
    public void setRetentionRate(double[] retentionRate) {
        this.retentionRate = retentionRate;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy