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

com.byteplus.model.beans.ImageInfo Maven / Gradle / Ivy

There is a newer version: 1.1.23
Show newest version
package com.byteplus.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