com.volcengine.model.imagex.v2.DescribeImageXCdnDurationDetailByTimeResResultDurationDataItem Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.model.imagex.v2;
import com.alibaba.fastjson.JSON;
import java.util.List;
/**
* DescribeImageXCdnDurationDetailByTimeResResultDurationDataItem
*/
@lombok.Data
public final class DescribeImageXCdnDurationDetailByTimeResResultDurationDataItem {
/**
* 数据类型。
*
* - 当`GroupBy`取值为空时,取值为:Total
*
* - 当`GroupBy`取值为`Duration`时,取值为:pct25、pct50、pct90、pct99、avg
*
* - 当`GroupBy`取值为`Phase`时,取值为:dns、ssl、connect、send、wait、receive、proxy
*
* - 除上述外取值为指定拆分维度的各个值
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Type")
private String type;
/**
* 数据上报总量。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Count")
private Integer count;
/**
* 对应的网络耗时数据列表。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Data")
private List data;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy