com.volcengine.model.imagex.v2.DescribeImageVolcCdnAccessLogResResult 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;
/**
* DescribeImageVolcCdnAccessLogResResult
*/
@lombok.Data
public final class DescribeImageVolcCdnAccessLogResResult {
/**
* 加速域名。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Domain")
private String domain;
/**
* 指定的每页日志包数量。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "PageSize")
private Integer pageSize;
/**
* 指定的页码数。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "PageNum")
private Integer pageNum;
/**
* 日志包总数。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "TotalCount")
private Long totalCount;
/**
* 查询的日志数据。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Logs")
private List logs;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy