Skip to content

Commit baee7f9

Browse files
committed
Add Condition builder for faces
1 parent d7b8bd2 commit baee7f9

File tree

1 file changed

+4
-0
lines changed
  • cloudinary-core/src/main/java/com/cloudinary/transformation

1 file changed

+4
-0
lines changed

cloudinary-core/src/main/java/com/cloudinary/transformation/Condition.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,10 @@ public Condition aspectRatio(String operator, Object value) {
100100
return this;
101101
}
102102

103+
public Condition faces(String operator, Object value) {
104+
predicateList.add("faces_"+ operator + "_" + value);
105+
return this;
106+
}
103107

104108
public Condition pages(String operator, Object value) {
105109
predicateList.add("pg_"+ operator + "_" + value);

0 commit comments

Comments
 (0)