com.volcengine.model.response.FetchImageUrlResponse 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.response;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
@Data
public class FetchImageUrlResponse {
@JSONField(name = "ResponseMetadata")
ResponseMetadata responseMetadata;
@JSONField(name = "Result")
FetchImageUrlResponseBean result;
@Data
public static class FetchImageUrlResponseBean {
@JSONField(name = "Url")
private String url;
@JSONField(name = "StoreUri")
private String storeUri;
@JSONField(name = "FSize")
private Integer fSize;
@JSONField(name = "ImageWidth")
private Integer imageWidth;
@JSONField(name = "ImageHeight")
private Integer imageHeight;
@JSONField(name = "FrameCnt")
private Integer frameCnt;
@JSONField(name = "Duration")
private Integer duration;
@JSONField(name = "ImageFormat")
private String imageFormat;
@JSONField(name = "TaskId")
private String taskId;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy