com.byteplus.model.live.v20200801.DescribeLivePullToPushLogResResultLogListItem Maven / Gradle / Ivy
package com.byteplus.model.live.v20200801;
import com.alibaba.fastjson.JSON;
/**
* DescribeLivePullToPushLogResResultLogListItem
*/
@lombok.Data
public final class DescribeLivePullToPushLogResResultLogListItem {
/**
* 日志文件名称
*/
@com.alibaba.fastjson.annotation.JSONField(name = "LogName")
private String logName;
/**
* 日志文件大小,单位为 byte
*/
@com.alibaba.fastjson.annotation.JSONField(name = "LogSize")
private Integer logSize;
/**
* 日志记录的数据时间
*/
@com.alibaba.fastjson.annotation.JSONField(name = "DateTime")
private String dateTime;
/**
* 日志下载链接
*/
@com.alibaba.fastjson.annotation.JSONField(name = "DownloadUrl")
private String downloadUrl;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}