com.volcengine.model.video_aiot.response.GetLocalMediaDownloadResponse 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.video_aiot.response;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
import java.util.List;
@Data
public class GetLocalMediaDownloadResponse {
@JSONField(name = "ResponseMetadata")
ResponseMetadata responseMetadata;
@JSONField(name = "Result")
LocalMediaDownloadWrapper localMediaDownload;
@Data
public static class LocalMediaDownloadWrapper {
@JSONField(name = "PageNumber")
int pageNumber;
@JSONField(name = "PageSize")
int pageSize;
@JSONField(name = "TotalCount")
int totalCount;
@JSONField(name = "GBMedias")
List gbMedias;
}
@Data
public static class LocalMediaDownload {
@JSONField(name = "ID")
String id;
@JSONField(name = "StartTime")
int startTime;
@JSONField(name = "EndTime")
int endTime;
@JSONField(name = "CallID")
String callID;
@JSONField(name = "Status")
String status;
@JSONField(name = "Url")
String url;
@JSONField(name = "SubtitleUrl")
String subtitleUrl;
@JSONField(name = "FileSize")
int fileSize;
@JSONField(name = "Msg")
String msg;
@JSONField(name = "FileStreamLength")
int fileStreamLength;
@JSONField(name = "FileName")
String fileName;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy