com.volcengine.model.imagex.v2.DescribeImageXSensibleTopSizeURLBodyExtraDimsItem 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;
import java.util.List;
/**
* DescribeImageXSensibleTopSizeURLBodyExtraDimsItem
*/
@lombok.Data
public final class DescribeImageXSensibleTopSizeURLBodyExtraDimsItem {
/**
* 自定义维度名称。
*
* :::tip
*
* 您可以通过调用[获取自定义维度列表](https://www.volcengine.com/docs/508/1213048)来获取。
*
* :::
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Dim")
private String dim;
/**
* 需要匹配的对应维度值。
*
* :::tip
*
* 您可以通过调用[获取自定义维度值](https://www.volcengine.com/docs/508/1213050)来获取。
*
* :::
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Vals")
private List vals;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy