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

com.volcengine.model.imagex.v2.DescribeImageXClientCountByTimeBody Maven / Gradle / Ivy

There is a newer version: 1.0.192
Show newest version
package com.volcengine.model.imagex.v2;


import com.alibaba.fastjson.JSON;
import java.util.List;

/**
 * DescribeImageXClientCountByTimeBody
 */
@lombok.Data
public final class DescribeImageXClientCountByTimeBody  {

    /**
     * 

应用 ID。默认为空,不传则匹配账号下的所有的 AppID。

* *

:::tip

* *

您可以通过调用[获取应用列表](https://www.volcengine.com/docs/508/1213042)的方式获取所需的 AppID。

* *

:::

*/ @com.alibaba.fastjson.annotation.JSONField(name = "Appid") private String appid; /** *

需要匹配的 App 版本,不传则匹配 App 的所有版本。

*/ @com.alibaba.fastjson.annotation.JSONField(name = "AppVer") private List appVer; /** *

需要匹配的系统类型,不传则匹配非 WEB 端的所有系统。取值如下所示:

* *

- `iOS`

* *

- `Android`

* *

- `WEB`

*/ @com.alibaba.fastjson.annotation.JSONField(name = "OS") private String oS; /** *

需要匹配的 SDK 版本,不传则匹配所有版本.

*/ @com.alibaba.fastjson.annotation.JSONField(name = "SdkVer") private List sdkVer; /** *

需要匹配的国家名称。

* *

* 不传则匹配所有国家。

* *

* 取值为`海外`时,匹配海外所有国家。

*/ @com.alibaba.fastjson.annotation.JSONField(name = "Country") private String country; /** *

需要匹配的省份名称,不传则匹配所有省份。

*/ @com.alibaba.fastjson.annotation.JSONField(name = "Province") private String province; /** *

需要匹配的运营商名称,不传则匹配所有运营商。取值如下所示:

* *

- `电信`

* *

- `联通`

* *

- `移动`

* *

- `铁通`

* *

- `鹏博士`

* *

- `教育网`

* *

- `其他`

*/ @com.alibaba.fastjson.annotation.JSONField(name = "Isp") private List isp; /** *

需要匹配的域名,不传则匹配所有域名。

*/ @com.alibaba.fastjson.annotation.JSONField(name = "Domain") private List domain; /** *

需要匹配的图片类型,不传则匹配所有图片类型。取值如下所示:

* *

- `GIF`

* *

- `PNG`

* *

- `JPEG`

* *

- `HEIF`

* *

- `HEIC`

* *

- `WEBP`

* *

- `AWEBP`

* *

- `VVIC`

* *

- `其他`

*/ @com.alibaba.fastjson.annotation.JSONField(name = "ImageType") private List imageType; /** *

需要匹配的自定义维度项 。

*/ @com.alibaba.fastjson.annotation.JSONField(name = "ExtraDims") private List extraDims; /** *

拆分维度。默认为空,不拆分。支持取值:

* *

- 公共维度:`Appid`、`OS`、`AppVer`、`SdkVer`、`ImageType`、`Country`、`Province`、`Isp`、`Domain`

* *

- 自定义维度:您可以通过调用 [获取自定义维度列表](https://www.volcengine.com/docs/508/1213048)接口获取自定义维度指标

*/ @com.alibaba.fastjson.annotation.JSONField(name = "GroupBy") private String groupBy; /** *

获取数据起始时间点。

* *

日期格式按照`ISO8601`表示法,格式为:`YYYY-MM-DDThh:mm:ss±hh:mm`,比如`2019-06-02T00:00:00+08:00`。

*/ @com.alibaba.fastjson.annotation.JSONField(name = "StartTime") private String startTime; /** *

获取数据结束时间点,需在起始时间点之后。

* *

日期格式按照`ISO8601`表示法,格式为:`YYYY-MM-DDThh:mm:ss±hh:mm`,比如`2019-06-02T00:00:00+08:00`。

*/ @com.alibaba.fastjson.annotation.JSONField(name = "EndTime") private String endTime; /** *

返回数据的时间粒度。取值如下所示:

* *

* `5m`:5 分钟;

* *

* `1h`:1 小时;

* *

* `1d`:1 天。

*/ @com.alibaba.fastjson.annotation.JSONField(name = "Granularity") private String granularity; @Override public String toString() { return JSON.toJSONString(this); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy