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

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

The newest version!
package com.umeng.uapp.param;

import com.alibaba.ocean.rawsdk.client.APIId;
import com.alibaba.ocean.rawsdk.common.AbstractAPIRequest;

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

public class UmengUappGetActiveAccountsParam extends AbstractAPIRequest {

    public UmengUappGetActiveAccountsParam() {
        super();
        oceanApiId = new APIId("com.umeng.uapp", "umeng.uapp.getActiveAccounts", 1);
    }

    private String appkey;

    /**
     * @return 应用ID
     */
    public String getAppkey() {
        return appkey;
    }

    /**
     * 设置应用ID     *
     * 参数示例:
     
     * 此参数必填
     */
    public void setAppkey(String appkey) {
        this.appkey = appkey;
    }

    private String startDate;

    /**
     * @return 查询起始日期(例如:2018-01-01)
     */
    public String getStartDate() {
        return startDate;
    }

    /**
     * 设置查询起始日期(例如:2018-01-01)     *
     * 参数示例:
     
     * 此参数必填
     */
    public void setStartDate(String startDate) {
        this.startDate = startDate;
    }

    private String endDate;

    /**
     * @return 查询截止日期(例如:2018-01-01)
     */
    public String getEndDate() {
        return endDate;
    }

    /**
     * 设置查询截止日期(例如:2018-01-01)     *
     * 参数示例:
     
     * 此参数必填
     */
    public void setEndDate(String endDate) {
        this.endDate = endDate;
    }

    private String periodType;

    /**
     * @return 查询类型(按日daily,按周weekly,按月monthly 查询)
     */
    public String getPeriodType() {
        return periodType;
    }

    /**
     * 设置查询类型(按日daily,按周weekly,按月monthly 查询)     *
     * 参数示例:
     
     * 此参数为可选参数
     * 默认值:
daily
*/ public void setPeriodType(String periodType) { this.periodType = periodType; } private String channel; /** * @return 渠道名称(仅限一个例如:App%20Store) */ public String getChannel() { return channel; } /** * 设置渠道名称(仅限一个例如:App%20Store) * * 参数示例:
     
     * 此参数为可选参数
     * 默认值:

     */
    public void setChannel(String channel) {
        this.channel = channel;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy