com.volcengine.model.imagex.v2.GetSegmentImageBodyContour 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;
/**
* GetSegmentImageBodyContour
*/
@lombok.Data
public final class GetSegmentImageBodyContour {
/**
* 描边颜色,支持以 HEX、HSL、RGP 表示。例如`HEX`中白色为`#FFFFFF`。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Color")
private String color;
/**
* 描边宽度,单位为 px。取值范围为 0 到正整数,默认 10px。
*/
@com.alibaba.fastjson.annotation.JSONField(name = "Size")
private Integer size;
@Override
public String toString() {
return JSON.toJSONString(this);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy