com.volcengine.model.beans.ImageInfo 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.beans;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
@Data
public class ImageInfo {
@JSONField(name = "ImageUri")
String uri;
@JSONField(name = "FileName")
String fileName;
@JSONField(name = "ImageWidth")
int width;
@JSONField(name = "ImageHeight")
int height;
@JSONField(name = "ImageMd5")
String md5;
@JSONField(name = "ImageFormat")
String format;
@JSONField(name = "ImageSize")
int size;
@JSONField(name = "FrameCnt")
int frameCnt;
@JSONField(name = "Duration")
int duration;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy