Skip to content

Commit

Permalink
Supported FlashSms apis.
Browse files Browse the repository at this point in the history
  • Loading branch information
sdk-team committed Dec 2, 2024
1 parent 6851043 commit ce6cdef
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 1 deletion.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-outboundbot/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-12-02 Version: 1.6.4
- Supported FlashSms apis.

2024-08-29 Version: 1.6.3
- Supported FlashSms apis.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-outboundbot/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-outboundbot</artifactId>
<packaging>jar</packaging>
<version>1.6.3</version>
<version>1.6.4</version>
<name>aliyun-java-sdk-outboundbot</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 @@ -124,6 +124,8 @@ public static class ExecutingInfo {

private Integer callFailedNum;

private Integer noInteractionNum;

private JobsProgress jobsProgress;

public Long getEndTime() {
Expand Down Expand Up @@ -198,6 +200,14 @@ public void setCallFailedNum(Integer callFailedNum) {
this.callFailedNum = callFailedNum;
}

public Integer getNoInteractionNum() {
return this.noInteractionNum;
}

public void setNoInteractionNum(Integer noInteractionNum) {
this.noInteractionNum = noInteractionNum;
}

public JobsProgress getJobsProgress() {
return this.jobsProgress;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,16 @@ public class QueryJobsWithResultRequest extends RpcAcsRequest<QueryJobsWithResul

private Boolean hasReachedEndOfFlowFilter;

private Long endActualTimeFilter;

private Integer pageNumber;

private Boolean hasHangUpByRejectionFilter;

private Integer pageSize;

private Long startActualTimeFilter;

private Boolean hasAnsweredFilter;

private String taskStatusFilter;
Expand Down Expand Up @@ -66,6 +70,17 @@ public void setHasReachedEndOfFlowFilter(Boolean hasReachedEndOfFlowFilter) {
}
}

public Long getEndActualTimeFilter() {
return this.endActualTimeFilter;
}

public void setEndActualTimeFilter(Long endActualTimeFilter) {
this.endActualTimeFilter = endActualTimeFilter;
if(endActualTimeFilter != null){
putQueryParameter("EndActualTimeFilter", endActualTimeFilter.toString());
}
}

public Integer getPageNumber() {
return this.pageNumber;
}
Expand Down Expand Up @@ -99,6 +114,17 @@ public void setPageSize(Integer pageSize) {
}
}

public Long getStartActualTimeFilter() {
return this.startActualTimeFilter;
}

public void setStartActualTimeFilter(Long startActualTimeFilter) {
this.startActualTimeFilter = startActualTimeFilter;
if(startActualTimeFilter != null){
putQueryParameter("StartActualTimeFilter", startActualTimeFilter.toString());
}
}

public Boolean getHasAnsweredFilter() {
return this.hasAnsweredFilter;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public static DescribeGroupExecutingInfoResponse unmarshall(DescribeGroupExecuti
executingInfo.setTransferByIntentNum(_ctx.integerValue("DescribeGroupExecutingInfoResponse.ExecutingInfo.TransferByIntentNum"));
executingInfo.setCallNum(_ctx.integerValue("DescribeGroupExecutingInfoResponse.ExecutingInfo.CallNum"));
executingInfo.setCallFailedNum(_ctx.integerValue("DescribeGroupExecutingInfoResponse.ExecutingInfo.CallFailedNum"));
executingInfo.setNoInteractionNum(_ctx.integerValue("DescribeGroupExecutingInfoResponse.ExecutingInfo.NoInteractionNum"));

JobsProgress jobsProgress = new JobsProgress();
jobsProgress.setSchedulingNum(_ctx.integerValue("DescribeGroupExecutingInfoResponse.ExecutingInfo.JobsProgress.SchedulingNum"));
Expand Down

0 comments on commit ce6cdef

Please sign in to comment.