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

com.byteplus.model.live.response.DescribeLiveDomainLogResponse Maven / Gradle / Ivy

There is a newer version: 1.1.23
Show newest version
package com.byteplus.model.live.response;

import com.alibaba.fastjson.annotation.JSONField;
import com.byteplus.model.response.ResponseMetadata;
import lombok.Data;

import java.util.List;

@Data
public class DescribeLiveDomainLogResponse {
    @JSONField(name = "ResponseMetadata")
    ResponseMetadata responseMetadata;

    @JSONField(name = "Result")
    DescribeLiveDomainLogOutput Result;

    @Data
    public static class DescribeLiveDomainLogOutput {
        @JSONField(name = "List")
        private List List;
        @JSONField(name = "Pagination")
        private Pagination Pagination;
    }

    @Data
    public static class Pagination {
        @JSONField(name = "PageCur")
        private int PageCur;
        @JSONField(name = "PageSize")
        private int PageSize;
        @JSONField(name = "TotalCount")
        private int TotalCount;
    }

    @Data
    public static class LiveDomainLogList {
        @JSONField(name = "Domain")
        private String Domain;
        @JSONField(name = "LogName")
        private String LogName;
        @JSONField(name = "LogSize")
        private int LogSize;
        @JSONField(name = "DateTime")
        private String DateTime;
        @JSONField(name = "CreatedAt")
        private String CreatedAt;
        @JSONField(name = "UpdatedAt")
        private String UpdatedAt;
        @JSONField(name = "DownloadUrl")
        private String DownloadUrl;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy