com.qcloud.cos.model.ciModel.persistence.FacePlateMosaicObject Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cos_api-bundle Show documentation
Show all versions of cos_api-bundle Show documentation
A single bundled dependency that includes all service and dependent JARs with third-party libraries
relocated to different namespaces.
package com.qcloud.cos.model.ciModel.persistence;
import com.fasterxml.jackson.annotation.JsonProperty;
import java.util.ArrayList;
import java.util.List;
public class FacePlateMosaicObject {
@JsonProperty("is_pic_info")
private int isPicInfo = 1;
private List rules;
public int getIsPicInfo() {
return isPicInfo;
}
public void setIsPicInfo(int isPicInfo) {
this.isPicInfo = isPicInfo;
}
public List getRules() {
if (rules == null) {
rules = new ArrayList<>();
}
return rules;
}
public void setRules(List rules) {
this.rules = rules;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy