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

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

There is a newer version: 1.1.0
Show 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 UmengUappGetLaunchesByChannelOrVersionParam extends AbstractAPIRequest {

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

    private String appkey;

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

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

    private String startDate;

    /**
     * @return 查询起始日期
     */
    public String getStartDate() {
        return startDate;
    }

    /**
     * 设置查询起始日期     *
     * 参数示例:
2018-01-01
* 此参数必填 */ public void setStartDate(String startDate) { this.startDate = startDate; } private String endDate; /** * @return 查询截止日期 */ 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 channels; /** * @return 渠道名称(App%20Store) */ public String getChannels() { return channels; } /** * 设置渠道名称(App%20Store) * * 参数示例:
App%20Store
* 此参数为可选参数 * 默认值:

     */
    public void setChannels(String channels) {
        this.channels = channels;
    }

    private String versions;

    /**
     * @return 版本名称(1.0.0)
     */
    public String getVersions() {
        return versions;
    }

    /**
     * 设置版本名称(1.0.0)     *
     * 参数示例:
1.0.0
* 此参数为可选参数 * 默认值:

     */
    public void setVersions(String versions) {
        this.versions = versions;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy