com.volcengine.model.live.v20230101.DescribeCDNSnapshotHistoryResResultDataItem 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.live.v20230101;
import com.alibaba.fastjson.JSON;
/**
* DescribeCDNSnapshotHistoryResResultDataItem
*/
@lombok.Data
public final class DescribeCDNSnapshotHistoryResResultDataItem {
/**
* 域名空间。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Vhost")
private String vhost;
/**
* 应用名称。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "App")
private String app;
/**
* 流名称。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Stream")
private String stream;
/**
* 截图文件保存的路径。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Path")
private String path;
/**
* 截图时间戳,精度为毫秒。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "TimeStamp")
private String timeStamp;
/**
* 截图宽度,单位为 px。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Width")
private Integer width;
/**
* 截图高度,单位为 px。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Height")
private Integer height;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy