com.volcengine.model.imagex.v2.DescribeImageXExceedResolutionRatioAllResResultResolutionRatioDataItem 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.imagex.v2;
import com.alibaba.fastjson.JSON;
/**
* DescribeImageXExceedResolutionRatioAllResResultResolutionRatioDataItem
*/
@lombok.Data
public final class DescribeImageXExceedResolutionRatioAllResResultResolutionRatioDataItem {
/**
* 大图样本量
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Count")
private Long count;
/**
* 宽比,为图片宽/view 宽的整数值。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "WidthRatio")
private Integer widthRatio;
/**
* 高比,为图片高/view 高的整数值。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "HeightRatio")
private Integer heightRatio;
/**
* 比率,格式为:宽比-高比。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Ratio")
private String ratio;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy