Skip to content

Commit

Permalink
Generated 2019-01-15 for Qualitycheck.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Jul 30, 2024
1 parent 99ac893 commit f0545d2
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 1 deletion.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-qualitycheck/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-07-30 Version: 4.7.12
- Generated 2019-01-15 for `Qualitycheck`.

2024-07-23 Version: 4.7.11
- Generated 2019-01-15 for `Qualitycheck`.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-qualitycheck/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-qualitycheck</artifactId>
<packaging>jar</packaging>
<version>4.7.11</version>
<version>4.7.12</version>
<name>aliyun-java-sdk-qualitycheck</name>
<url>http://www.aliyun.com</url>
<description>Aliyun Open API SDK for Java
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -391,6 +391,8 @@ public static class AsrResultItem {

private String role;

private String identity;

public String getWords() {
return this.words;
}
Expand Down Expand Up @@ -438,6 +440,14 @@ public String getRole() {
public void setRole(String role) {
this.role = role;
}

public String getIdentity() {
return this.identity;
}

public void setIdentity(String identity) {
this.identity = identity;
}
}

public static class HitResultItem {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,7 @@ public static GetResultResponse unmarshall(GetResultResponse getResultResponse,
asrResultItem.setEnd(_ctx.longValue("GetResultResponse.Data["+ i +"].AsrResult["+ j +"].End"));
asrResultItem.setSpeechRate(_ctx.integerValue("GetResultResponse.Data["+ i +"].AsrResult["+ j +"].SpeechRate"));
asrResultItem.setRole(_ctx.stringValue("GetResultResponse.Data["+ i +"].AsrResult["+ j +"].Role"));
asrResultItem.setIdentity(_ctx.stringValue("GetResultResponse.Data["+ i +"].AsrResult["+ j +"].Identity"));

asrResult.add(asrResultItem);
}
Expand Down

0 comments on commit f0545d2

Please sign in to comment.