Skip to content

Commit f83472c

Browse files
fix: add error getter and setter for ListContentGenerationTasksResponse
1 parent 6d29cd5 commit f83472c

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

volcengine-java-sdk-ark-runtime/src/main/java/com/volcengine/ark/runtime/model/content/generation/ListContentGenerationTasksResponse.java

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,12 @@ public void setStatus(String status) {
8282
this.status = status;
8383
}
8484

85+
public ContentGenerationError getError() {
86+
return error;
87+
}
88+
89+
public void setError(ContentGenerationError error) { this.error = error; }
90+
8591
public Content getContent() {
8692
return content;
8793
}

0 commit comments

Comments
 (0)