index
int64 | repo_id
string | file_path
string | content
string |
|---|---|---|---|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/GetQualityRuleTagListResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.GetQualityRuleTagListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetQualityRuleTagListResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private Boolean success;
private List<DataItem> data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public List<DataItem> getData() {
return this.data;
}
public void setData(List<DataItem> data) {
this.data = data;
}
public static class DataItem {
private String ruleTagName;
private Long ruleTagId;
public String getRuleTagName() {
return this.ruleTagName;
}
public void setRuleTagName(String ruleTagName) {
this.ruleTagName = ruleTagName;
}
public Long getRuleTagId() {
return this.ruleTagId;
}
public void setRuleTagId(Long ruleTagId) {
this.ruleTagId = ruleTagId;
}
}
@Override
public GetQualityRuleTagListResponse getInstance(UnmarshallerContext context) {
return GetQualityRuleTagListResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/GetQueueInformationRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class GetQueueInformationRequest extends RpcAcsRequest<GetQueueInformationResponse> {
private List<Long> depIds;
private Integer currentPage;
private Long startDate;
private String instanceId;
private Long endDate;
private Boolean existDepartmentGrouping;
private List<Long> groupIds;
private Integer pageSize;
private Boolean existSkillGroupGrouping;
public GetQueueInformationRequest() {
super("aiccs", "2019-10-15", "GetQueueInformation");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public List<Long> getDepIds() {
return this.depIds;
}
public void setDepIds(List<Long> depIds) {
this.depIds = depIds;
if (depIds != null) {
for (int depth1 = 0; depth1 < depIds.size(); depth1++) {
putQueryParameter("DepIds." + (depth1 + 1) , depIds.get(depth1));
}
}
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage.toString());
}
}
public Long getStartDate() {
return this.startDate;
}
public void setStartDate(Long startDate) {
this.startDate = startDate;
if(startDate != null){
putQueryParameter("StartDate", startDate.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Long getEndDate() {
return this.endDate;
}
public void setEndDate(Long endDate) {
this.endDate = endDate;
if(endDate != null){
putQueryParameter("EndDate", endDate.toString());
}
}
public Boolean getExistDepartmentGrouping() {
return this.existDepartmentGrouping;
}
public void setExistDepartmentGrouping(Boolean existDepartmentGrouping) {
this.existDepartmentGrouping = existDepartmentGrouping;
if(existDepartmentGrouping != null){
putQueryParameter("ExistDepartmentGrouping", existDepartmentGrouping.toString());
}
}
public List<Long> getGroupIds() {
return this.groupIds;
}
public void setGroupIds(List<Long> groupIds) {
this.groupIds = groupIds;
if (groupIds != null) {
for (int depth1 = 0; depth1 < groupIds.size(); depth1++) {
putQueryParameter("GroupIds." + (depth1 + 1) , groupIds.get(depth1));
}
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public Boolean getExistSkillGroupGrouping() {
return this.existSkillGroupGrouping;
}
public void setExistSkillGroupGrouping(Boolean existSkillGroupGrouping) {
this.existSkillGroupGrouping = existSkillGroupGrouping;
if(existSkillGroupGrouping != null){
putQueryParameter("ExistSkillGroupGrouping", existSkillGroupGrouping.toString());
}
}
@Override
public Class<GetQueueInformationResponse> getResponseClass() {
return GetQueueInformationResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/GetQueueInformationResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.GetQueueInformationResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetQueueInformationResponse extends AcsResponse {
private String message;
private String requestId;
private String code;
private String success;
private Data data;
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getSuccess() {
return this.success;
}
public void setSuccess(String success) {
this.success = success;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Integer totalNum;
private Integer pageSize;
private Integer pageNum;
private String rows;
public Integer getTotalNum() {
return this.totalNum;
}
public void setTotalNum(Integer totalNum) {
this.totalNum = totalNum;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getPageNum() {
return this.pageNum;
}
public void setPageNum(Integer pageNum) {
this.pageNum = pageNum;
}
public String getRows() {
return this.rows;
}
public void setRows(String rows) {
this.rows = rows;
}
}
@Override
public GetQueueInformationResponse getInstance(UnmarshallerContext context) {
return GetQueueInformationResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/GetRecordDataRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class GetRecordDataRequest extends RpcAcsRequest<GetRecordDataResponse> {
private String instanceId;
private String acid;
public GetRecordDataRequest() {
super("aiccs", "2019-10-15", "GetRecordData");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getAcid() {
return this.acid;
}
public void setAcid(String acid) {
this.acid = acid;
if(acid != null){
putQueryParameter("Acid", acid);
}
}
@Override
public Class<GetRecordDataResponse> getResponseClass() {
return GetRecordDataResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/GetRecordDataResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.GetRecordDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetRecordDataResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private Boolean success;
private Data data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String acid;
private String ossLink;
public String getAcid() {
return this.acid;
}
public void setAcid(String acid) {
this.acid = acid;
}
public String getOssLink() {
return this.ossLink;
}
public void setOssLink(String ossLink) {
this.ossLink = ossLink;
}
}
@Override
public GetRecordDataResponse getInstance(UnmarshallerContext context) {
return GetRecordDataResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/GetRtcTokenRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class GetRtcTokenRequest extends RpcAcsRequest<GetRtcTokenResponse> {
private String instanceId;
private String accountName;
public GetRtcTokenRequest() {
super("aiccs", "2019-10-15", "GetRtcToken");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getAccountName() {
return this.accountName;
}
public void setAccountName(String accountName) {
this.accountName = accountName;
if(accountName != null){
putQueryParameter("AccountName", accountName);
}
}
@Override
public Class<GetRtcTokenResponse> getResponseClass() {
return GetRtcTokenResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/GetRtcTokenResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.GetRtcTokenResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetRtcTokenResponse extends AcsResponse {
private String message;
private String requestId;
private String code;
private Boolean success;
private Data data;
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String rtcId;
private String token;
private String accountName;
public String getRtcId() {
return this.rtcId;
}
public void setRtcId(String rtcId) {
this.rtcId = rtcId;
}
public String getToken() {
return this.token;
}
public void setToken(String token) {
this.token = token;
}
public String getAccountName() {
return this.accountName;
}
public void setAccountName(String accountName) {
this.accountName = accountName;
}
}
@Override
public GetRtcTokenResponse getInstance(UnmarshallerContext context) {
return GetRtcTokenResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/GetSeatInformationRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class GetSeatInformationRequest extends RpcAcsRequest<GetSeatInformationResponse> {
private List<Long> depIds;
private String instanceId;
private Long endDate;
private Boolean existDepartmentGrouping;
private Integer pageSize;
private Integer currentPage;
private Long startDate;
public GetSeatInformationRequest() {
super("aiccs", "2019-10-15", "GetSeatInformation");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public List<Long> getDepIds() {
return this.depIds;
}
public void setDepIds(List<Long> depIds) {
this.depIds = depIds;
if (depIds != null) {
for (int depth1 = 0; depth1 < depIds.size(); depth1++) {
putQueryParameter("depIds." + (depth1 + 1) , depIds.get(depth1));
}
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Long getEndDate() {
return this.endDate;
}
public void setEndDate(Long endDate) {
this.endDate = endDate;
if(endDate != null){
putQueryParameter("endDate", endDate.toString());
}
}
public Boolean getExistDepartmentGrouping() {
return this.existDepartmentGrouping;
}
public void setExistDepartmentGrouping(Boolean existDepartmentGrouping) {
this.existDepartmentGrouping = existDepartmentGrouping;
if(existDepartmentGrouping != null){
putQueryParameter("existDepartmentGrouping", existDepartmentGrouping.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("pageSize", pageSize.toString());
}
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("currentPage", currentPage.toString());
}
}
public Long getStartDate() {
return this.startDate;
}
public void setStartDate(Long startDate) {
this.startDate = startDate;
if(startDate != null){
putQueryParameter("startDate", startDate.toString());
}
}
@Override
public Class<GetSeatInformationResponse> getResponseClass() {
return GetSeatInformationResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/GetSeatInformationResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.GetSeatInformationResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetSeatInformationResponse extends AcsResponse {
private String message;
private String requestId;
private String code;
private String success;
private Data data;
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getSuccess() {
return this.success;
}
public void setSuccess(String success) {
this.success = success;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Integer totalNum;
private Integer pageSize;
private Integer pageNum;
private String rowr;
public Integer getTotalNum() {
return this.totalNum;
}
public void setTotalNum(Integer totalNum) {
this.totalNum = totalNum;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getPageNum() {
return this.pageNum;
}
public void setPageNum(Integer pageNum) {
this.pageNum = pageNum;
}
public String getRowr() {
return this.rowr;
}
public void setRowr(String rowr) {
this.rowr = rowr;
}
}
@Override
public GetSeatInformationResponse getInstance(UnmarshallerContext context) {
return GetSeatInformationResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/GetSkillGroupAgentStatusDetailsRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class GetSkillGroupAgentStatusDetailsRequest extends RpcAcsRequest<GetSkillGroupAgentStatusDetailsResponse> {
private List<Long> depIds;
private Integer currentPage;
private Long startDate;
private String instanceId;
private Long endDate;
private Boolean existDepartmentGrouping;
private List<Long> groupIds;
private Integer pageSize;
private Boolean existSkillGroupGrouping;
public GetSkillGroupAgentStatusDetailsRequest() {
super("aiccs", "2019-10-15", "GetSkillGroupAgentStatusDetails");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public List<Long> getDepIds() {
return this.depIds;
}
public void setDepIds(List<Long> depIds) {
this.depIds = depIds;
if (depIds != null) {
for (int depth1 = 0; depth1 < depIds.size(); depth1++) {
putQueryParameter("DepIds." + (depth1 + 1) , depIds.get(depth1));
}
}
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage.toString());
}
}
public Long getStartDate() {
return this.startDate;
}
public void setStartDate(Long startDate) {
this.startDate = startDate;
if(startDate != null){
putQueryParameter("StartDate", startDate.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Long getEndDate() {
return this.endDate;
}
public void setEndDate(Long endDate) {
this.endDate = endDate;
if(endDate != null){
putQueryParameter("EndDate", endDate.toString());
}
}
public Boolean getExistDepartmentGrouping() {
return this.existDepartmentGrouping;
}
public void setExistDepartmentGrouping(Boolean existDepartmentGrouping) {
this.existDepartmentGrouping = existDepartmentGrouping;
if(existDepartmentGrouping != null){
putQueryParameter("ExistDepartmentGrouping", existDepartmentGrouping.toString());
}
}
public List<Long> getGroupIds() {
return this.groupIds;
}
public void setGroupIds(List<Long> groupIds) {
this.groupIds = groupIds;
if (groupIds != null) {
for (int depth1 = 0; depth1 < groupIds.size(); depth1++) {
putQueryParameter("GroupIds." + (depth1 + 1) , groupIds.get(depth1));
}
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public Boolean getExistSkillGroupGrouping() {
return this.existSkillGroupGrouping;
}
public void setExistSkillGroupGrouping(Boolean existSkillGroupGrouping) {
this.existSkillGroupGrouping = existSkillGroupGrouping;
if(existSkillGroupGrouping != null){
putQueryParameter("ExistSkillGroupGrouping", existSkillGroupGrouping.toString());
}
}
@Override
public Class<GetSkillGroupAgentStatusDetailsResponse> getResponseClass() {
return GetSkillGroupAgentStatusDetailsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/GetSkillGroupAgentStatusDetailsResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.GetSkillGroupAgentStatusDetailsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetSkillGroupAgentStatusDetailsResponse extends AcsResponse {
private String message;
private String requestId;
private String code;
private String success;
private Data data;
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getSuccess() {
return this.success;
}
public void setSuccess(String success) {
this.success = success;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Long totalNum;
private Long pageSize;
private Long pageNum;
private String rows;
public Long getTotalNum() {
return this.totalNum;
}
public void setTotalNum(Long totalNum) {
this.totalNum = totalNum;
}
public Long getPageSize() {
return this.pageSize;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
}
public Long getPageNum() {
return this.pageNum;
}
public void setPageNum(Long pageNum) {
this.pageNum = pageNum;
}
public String getRows() {
return this.rows;
}
public void setRows(String rows) {
this.rows = rows;
}
}
@Override
public GetSkillGroupAgentStatusDetailsResponse getInstance(UnmarshallerContext context) {
return GetSkillGroupAgentStatusDetailsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/GetSkillGroupAndAgentStatusSummaryRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class GetSkillGroupAndAgentStatusSummaryRequest extends RpcAcsRequest<GetSkillGroupAndAgentStatusSummaryResponse> {
private List<Long> depIds;
private Integer currentPage;
private Long startDate;
private String instanceId;
private Long endDate;
private Boolean existDepartmentGrouping;
private List<Long> groupIds;
private Integer pageSize;
private Boolean existSkillGroupGrouping;
public GetSkillGroupAndAgentStatusSummaryRequest() {
super("aiccs", "2019-10-15", "GetSkillGroupAndAgentStatusSummary");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public List<Long> getDepIds() {
return this.depIds;
}
public void setDepIds(List<Long> depIds) {
this.depIds = depIds;
if (depIds != null) {
for (int depth1 = 0; depth1 < depIds.size(); depth1++) {
putQueryParameter("DepIds." + (depth1 + 1) , depIds.get(depth1));
}
}
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage.toString());
}
}
public Long getStartDate() {
return this.startDate;
}
public void setStartDate(Long startDate) {
this.startDate = startDate;
if(startDate != null){
putQueryParameter("StartDate", startDate.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Long getEndDate() {
return this.endDate;
}
public void setEndDate(Long endDate) {
this.endDate = endDate;
if(endDate != null){
putQueryParameter("EndDate", endDate.toString());
}
}
public Boolean getExistDepartmentGrouping() {
return this.existDepartmentGrouping;
}
public void setExistDepartmentGrouping(Boolean existDepartmentGrouping) {
this.existDepartmentGrouping = existDepartmentGrouping;
if(existDepartmentGrouping != null){
putQueryParameter("ExistDepartmentGrouping", existDepartmentGrouping.toString());
}
}
public List<Long> getGroupIds() {
return this.groupIds;
}
public void setGroupIds(List<Long> groupIds) {
this.groupIds = groupIds;
if (groupIds != null) {
for (int depth1 = 0; depth1 < groupIds.size(); depth1++) {
putQueryParameter("GroupIds." + (depth1 + 1) , groupIds.get(depth1));
}
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public Boolean getExistSkillGroupGrouping() {
return this.existSkillGroupGrouping;
}
public void setExistSkillGroupGrouping(Boolean existSkillGroupGrouping) {
this.existSkillGroupGrouping = existSkillGroupGrouping;
if(existSkillGroupGrouping != null){
putQueryParameter("ExistSkillGroupGrouping", existSkillGroupGrouping.toString());
}
}
@Override
public Class<GetSkillGroupAndAgentStatusSummaryResponse> getResponseClass() {
return GetSkillGroupAndAgentStatusSummaryResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/GetSkillGroupAndAgentStatusSummaryResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.GetSkillGroupAndAgentStatusSummaryResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetSkillGroupAndAgentStatusSummaryResponse extends AcsResponse {
private String message;
private String requestId;
private String code;
private String success;
private Data data;
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getSuccess() {
return this.success;
}
public void setSuccess(String success) {
this.success = success;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Integer totalNum;
private Integer pageSize;
private Integer pageNum;
private String rows;
public Integer getTotalNum() {
return this.totalNum;
}
public void setTotalNum(Integer totalNum) {
this.totalNum = totalNum;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getPageNum() {
return this.pageNum;
}
public void setPageNum(Integer pageNum) {
this.pageNum = pageNum;
}
public String getRows() {
return this.rows;
}
public void setRows(String rows) {
this.rows = rows;
}
}
@Override
public GetSkillGroupAndAgentStatusSummaryResponse getInstance(UnmarshallerContext context) {
return GetSkillGroupAndAgentStatusSummaryResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/GetSkillGroupLatitudeStateRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class GetSkillGroupLatitudeStateRequest extends RpcAcsRequest<GetSkillGroupLatitudeStateResponse> {
private List<Long> depIds;
private Integer currentPage;
private Long startDate;
private String instanceId;
private Long endDate;
private Boolean existDepartmentGrouping;
private List<Long> groupIds;
private Integer pageSize;
private Boolean existSkillGroupGrouping;
public GetSkillGroupLatitudeStateRequest() {
super("aiccs", "2019-10-15", "GetSkillGroupLatitudeState");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public List<Long> getDepIds() {
return this.depIds;
}
public void setDepIds(List<Long> depIds) {
this.depIds = depIds;
if (depIds != null) {
for (int depth1 = 0; depth1 < depIds.size(); depth1++) {
putQueryParameter("DepIds." + (depth1 + 1) , depIds.get(depth1));
}
}
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage.toString());
}
}
public Long getStartDate() {
return this.startDate;
}
public void setStartDate(Long startDate) {
this.startDate = startDate;
if(startDate != null){
putQueryParameter("StartDate", startDate.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Long getEndDate() {
return this.endDate;
}
public void setEndDate(Long endDate) {
this.endDate = endDate;
if(endDate != null){
putQueryParameter("EndDate", endDate.toString());
}
}
public Boolean getExistDepartmentGrouping() {
return this.existDepartmentGrouping;
}
public void setExistDepartmentGrouping(Boolean existDepartmentGrouping) {
this.existDepartmentGrouping = existDepartmentGrouping;
if(existDepartmentGrouping != null){
putQueryParameter("ExistDepartmentGrouping", existDepartmentGrouping.toString());
}
}
public List<Long> getGroupIds() {
return this.groupIds;
}
public void setGroupIds(List<Long> groupIds) {
this.groupIds = groupIds;
if (groupIds != null) {
for (int depth1 = 0; depth1 < groupIds.size(); depth1++) {
putQueryParameter("GroupIds." + (depth1 + 1) , groupIds.get(depth1));
}
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public Boolean getExistSkillGroupGrouping() {
return this.existSkillGroupGrouping;
}
public void setExistSkillGroupGrouping(Boolean existSkillGroupGrouping) {
this.existSkillGroupGrouping = existSkillGroupGrouping;
if(existSkillGroupGrouping != null){
putQueryParameter("ExistSkillGroupGrouping", existSkillGroupGrouping.toString());
}
}
@Override
public Class<GetSkillGroupLatitudeStateResponse> getResponseClass() {
return GetSkillGroupLatitudeStateResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/GetSkillGroupLatitudeStateResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.GetSkillGroupLatitudeStateResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetSkillGroupLatitudeStateResponse extends AcsResponse {
private String message;
private String requestId;
private String code;
private String success;
private Data data;
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getSuccess() {
return this.success;
}
public void setSuccess(String success) {
this.success = success;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Integer totalNum;
private Integer pageSize;
private Integer pageNum;
private String rows;
public Integer getTotalNum() {
return this.totalNum;
}
public void setTotalNum(Integer totalNum) {
this.totalNum = totalNum;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getPageNum() {
return this.pageNum;
}
public void setPageNum(Integer pageNum) {
this.pageNum = pageNum;
}
public String getRows() {
return this.rows;
}
public void setRows(String rows) {
this.rows = rows;
}
}
@Override
public GetSkillGroupLatitudeStateResponse getInstance(UnmarshallerContext context) {
return GetSkillGroupLatitudeStateResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/GetSkillGroupServiceCapabilityRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class GetSkillGroupServiceCapabilityRequest extends RpcAcsRequest<GetSkillGroupServiceCapabilityResponse> {
private List<Long> depIds;
private Integer currentPage;
private Long startDate;
private String instanceId;
private Long endDate;
private Boolean existDepartmentGrouping;
private List<Long> groupIds;
private Integer pageSize;
private Boolean existSkillGroupGrouping;
public GetSkillGroupServiceCapabilityRequest() {
super("aiccs", "2019-10-15", "GetSkillGroupServiceCapability");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public List<Long> getDepIds() {
return this.depIds;
}
public void setDepIds(List<Long> depIds) {
this.depIds = depIds;
if (depIds != null) {
for (int depth1 = 0; depth1 < depIds.size(); depth1++) {
putQueryParameter("DepIds." + (depth1 + 1) , depIds.get(depth1));
}
}
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage.toString());
}
}
public Long getStartDate() {
return this.startDate;
}
public void setStartDate(Long startDate) {
this.startDate = startDate;
if(startDate != null){
putQueryParameter("StartDate", startDate.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Long getEndDate() {
return this.endDate;
}
public void setEndDate(Long endDate) {
this.endDate = endDate;
if(endDate != null){
putQueryParameter("EndDate", endDate.toString());
}
}
public Boolean getExistDepartmentGrouping() {
return this.existDepartmentGrouping;
}
public void setExistDepartmentGrouping(Boolean existDepartmentGrouping) {
this.existDepartmentGrouping = existDepartmentGrouping;
if(existDepartmentGrouping != null){
putQueryParameter("ExistDepartmentGrouping", existDepartmentGrouping.toString());
}
}
public List<Long> getGroupIds() {
return this.groupIds;
}
public void setGroupIds(List<Long> groupIds) {
this.groupIds = groupIds;
if (groupIds != null) {
for (int depth1 = 0; depth1 < groupIds.size(); depth1++) {
putQueryParameter("GroupIds." + (depth1 + 1) , groupIds.get(depth1));
}
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public Boolean getExistSkillGroupGrouping() {
return this.existSkillGroupGrouping;
}
public void setExistSkillGroupGrouping(Boolean existSkillGroupGrouping) {
this.existSkillGroupGrouping = existSkillGroupGrouping;
if(existSkillGroupGrouping != null){
putQueryParameter("ExistSkillGroupGrouping", existSkillGroupGrouping.toString());
}
}
@Override
public Class<GetSkillGroupServiceCapabilityResponse> getResponseClass() {
return GetSkillGroupServiceCapabilityResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/GetSkillGroupServiceCapabilityResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.GetSkillGroupServiceCapabilityResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetSkillGroupServiceCapabilityResponse extends AcsResponse {
private String message;
private String requestId;
private String code;
private String success;
private Data data;
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getSuccess() {
return this.success;
}
public void setSuccess(String success) {
this.success = success;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Long totalNum;
private Integer pageSize;
private Integer pageNum;
private String rows;
public Long getTotalNum() {
return this.totalNum;
}
public void setTotalNum(Long totalNum) {
this.totalNum = totalNum;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getPageNum() {
return this.pageNum;
}
public void setPageNum(Integer pageNum) {
this.pageNum = pageNum;
}
public String getRows() {
return this.rows;
}
public void setRows(String rows) {
this.rows = rows;
}
}
@Override
public GetSkillGroupServiceCapabilityResponse getInstance(UnmarshallerContext context) {
return GetSkillGroupServiceCapabilityResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/GetSkillGroupServiceStatusRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class GetSkillGroupServiceStatusRequest extends RpcAcsRequest<GetSkillGroupServiceStatusResponse> {
private List<Long> depIds;
private List<Long> agentIds;
private Boolean existRobotInstanceGrouping;
private String timeLatitudeType;
private Integer currentPage;
private Long startDate;
private String instanceId;
private Long endDate;
private Boolean existChannelInstanceGrouping;
private Boolean existDepartmentGrouping;
private List<Long> groupIds;
private Integer pageSize;
private Boolean existSkillGroupGrouping;
private Boolean existAgentGrouping;
public GetSkillGroupServiceStatusRequest() {
super("aiccs", "2019-10-15", "GetSkillGroupServiceStatus");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public List<Long> getDepIds() {
return this.depIds;
}
public void setDepIds(List<Long> depIds) {
this.depIds = depIds;
if (depIds != null) {
for (int depth1 = 0; depth1 < depIds.size(); depth1++) {
putQueryParameter("DepIds." + (depth1 + 1) , depIds.get(depth1));
}
}
}
public List<Long> getAgentIds() {
return this.agentIds;
}
public void setAgentIds(List<Long> agentIds) {
this.agentIds = agentIds;
if (agentIds != null) {
for (int depth1 = 0; depth1 < agentIds.size(); depth1++) {
putQueryParameter("AgentIds." + (depth1 + 1) , agentIds.get(depth1));
}
}
}
public Boolean getExistRobotInstanceGrouping() {
return this.existRobotInstanceGrouping;
}
public void setExistRobotInstanceGrouping(Boolean existRobotInstanceGrouping) {
this.existRobotInstanceGrouping = existRobotInstanceGrouping;
if(existRobotInstanceGrouping != null){
putQueryParameter("ExistRobotInstanceGrouping", existRobotInstanceGrouping.toString());
}
}
public String getTimeLatitudeType() {
return this.timeLatitudeType;
}
public void setTimeLatitudeType(String timeLatitudeType) {
this.timeLatitudeType = timeLatitudeType;
if(timeLatitudeType != null){
putQueryParameter("TimeLatitudeType", timeLatitudeType);
}
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage.toString());
}
}
public Long getStartDate() {
return this.startDate;
}
public void setStartDate(Long startDate) {
this.startDate = startDate;
if(startDate != null){
putQueryParameter("StartDate", startDate.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Long getEndDate() {
return this.endDate;
}
public void setEndDate(Long endDate) {
this.endDate = endDate;
if(endDate != null){
putQueryParameter("EndDate", endDate.toString());
}
}
public Boolean getExistChannelInstanceGrouping() {
return this.existChannelInstanceGrouping;
}
public void setExistChannelInstanceGrouping(Boolean existChannelInstanceGrouping) {
this.existChannelInstanceGrouping = existChannelInstanceGrouping;
if(existChannelInstanceGrouping != null){
putQueryParameter("ExistChannelInstanceGrouping", existChannelInstanceGrouping.toString());
}
}
public Boolean getExistDepartmentGrouping() {
return this.existDepartmentGrouping;
}
public void setExistDepartmentGrouping(Boolean existDepartmentGrouping) {
this.existDepartmentGrouping = existDepartmentGrouping;
if(existDepartmentGrouping != null){
putQueryParameter("ExistDepartmentGrouping", existDepartmentGrouping.toString());
}
}
public List<Long> getGroupIds() {
return this.groupIds;
}
public void setGroupIds(List<Long> groupIds) {
this.groupIds = groupIds;
if (groupIds != null) {
for (int depth1 = 0; depth1 < groupIds.size(); depth1++) {
putQueryParameter("GroupIds." + (depth1 + 1) , groupIds.get(depth1));
}
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public Boolean getExistSkillGroupGrouping() {
return this.existSkillGroupGrouping;
}
public void setExistSkillGroupGrouping(Boolean existSkillGroupGrouping) {
this.existSkillGroupGrouping = existSkillGroupGrouping;
if(existSkillGroupGrouping != null){
putQueryParameter("ExistSkillGroupGrouping", existSkillGroupGrouping.toString());
}
}
public Boolean getExistAgentGrouping() {
return this.existAgentGrouping;
}
public void setExistAgentGrouping(Boolean existAgentGrouping) {
this.existAgentGrouping = existAgentGrouping;
if(existAgentGrouping != null){
putQueryParameter("ExistAgentGrouping", existAgentGrouping.toString());
}
}
@Override
public Class<GetSkillGroupServiceStatusResponse> getResponseClass() {
return GetSkillGroupServiceStatusResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/GetSkillGroupServiceStatusResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.GetSkillGroupServiceStatusResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetSkillGroupServiceStatusResponse extends AcsResponse {
private String message;
private String requestId;
private String code;
private String success;
private Data data;
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getSuccess() {
return this.success;
}
public void setSuccess(String success) {
this.success = success;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Integer totalNum;
private Integer pageNum;
private Integer pageSize;
private String rows;
public Integer getTotalNum() {
return this.totalNum;
}
public void setTotalNum(Integer totalNum) {
this.totalNum = totalNum;
}
public Integer getPageNum() {
return this.pageNum;
}
public void setPageNum(Integer pageNum) {
this.pageNum = pageNum;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public String getRows() {
return this.rows;
}
public void setRows(String rows) {
this.rows = rows;
}
}
@Override
public GetSkillGroupServiceStatusResponse getInstance(UnmarshallerContext context) {
return GetSkillGroupServiceStatusResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/GetSkillGroupStatusTotalRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class GetSkillGroupStatusTotalRequest extends RpcAcsRequest<GetSkillGroupStatusTotalResponse> {
private List<Long> depIds;
private List<Long> agentIds;
private String timeLatitudeType;
private Integer currentPage;
private Long startDate;
private String instanceId;
private Long endDate;
private Boolean existDepartmentGrouping;
private List<Long> groupIds;
private Integer pageSize;
private Boolean existSkillGroupGrouping;
private Boolean existAgentGrouping;
public GetSkillGroupStatusTotalRequest() {
super("aiccs", "2019-10-15", "GetSkillGroupStatusTotal");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public List<Long> getDepIds() {
return this.depIds;
}
public void setDepIds(List<Long> depIds) {
this.depIds = depIds;
if (depIds != null) {
for (int depth1 = 0; depth1 < depIds.size(); depth1++) {
putQueryParameter("DepIds." + (depth1 + 1) , depIds.get(depth1));
}
}
}
public List<Long> getAgentIds() {
return this.agentIds;
}
public void setAgentIds(List<Long> agentIds) {
this.agentIds = agentIds;
if (agentIds != null) {
for (int depth1 = 0; depth1 < agentIds.size(); depth1++) {
putQueryParameter("AgentIds." + (depth1 + 1) , agentIds.get(depth1));
}
}
}
public String getTimeLatitudeType() {
return this.timeLatitudeType;
}
public void setTimeLatitudeType(String timeLatitudeType) {
this.timeLatitudeType = timeLatitudeType;
if(timeLatitudeType != null){
putQueryParameter("TimeLatitudeType", timeLatitudeType);
}
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage.toString());
}
}
public Long getStartDate() {
return this.startDate;
}
public void setStartDate(Long startDate) {
this.startDate = startDate;
if(startDate != null){
putQueryParameter("StartDate", startDate.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Long getEndDate() {
return this.endDate;
}
public void setEndDate(Long endDate) {
this.endDate = endDate;
if(endDate != null){
putQueryParameter("EndDate", endDate.toString());
}
}
public Boolean getExistDepartmentGrouping() {
return this.existDepartmentGrouping;
}
public void setExistDepartmentGrouping(Boolean existDepartmentGrouping) {
this.existDepartmentGrouping = existDepartmentGrouping;
if(existDepartmentGrouping != null){
putQueryParameter("ExistDepartmentGrouping", existDepartmentGrouping.toString());
}
}
public List<Long> getGroupIds() {
return this.groupIds;
}
public void setGroupIds(List<Long> groupIds) {
this.groupIds = groupIds;
if (groupIds != null) {
for (int depth1 = 0; depth1 < groupIds.size(); depth1++) {
putQueryParameter("GroupIds." + (depth1 + 1) , groupIds.get(depth1));
}
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public Boolean getExistSkillGroupGrouping() {
return this.existSkillGroupGrouping;
}
public void setExistSkillGroupGrouping(Boolean existSkillGroupGrouping) {
this.existSkillGroupGrouping = existSkillGroupGrouping;
if(existSkillGroupGrouping != null){
putQueryParameter("ExistSkillGroupGrouping", existSkillGroupGrouping.toString());
}
}
public Boolean getExistAgentGrouping() {
return this.existAgentGrouping;
}
public void setExistAgentGrouping(Boolean existAgentGrouping) {
this.existAgentGrouping = existAgentGrouping;
if(existAgentGrouping != null){
putQueryParameter("ExistAgentGrouping", existAgentGrouping.toString());
}
}
@Override
public Class<GetSkillGroupStatusTotalResponse> getResponseClass() {
return GetSkillGroupStatusTotalResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/GetSkillGroupStatusTotalResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.GetSkillGroupStatusTotalResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetSkillGroupStatusTotalResponse extends AcsResponse {
private String message;
private String requestId;
private String code;
private String success;
private Data data;
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getSuccess() {
return this.success;
}
public void setSuccess(String success) {
this.success = success;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Long totalNum;
private Long pageSize;
private Long pageNum;
private String rows;
public Long getTotalNum() {
return this.totalNum;
}
public void setTotalNum(Long totalNum) {
this.totalNum = totalNum;
}
public Long getPageSize() {
return this.pageSize;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
}
public Long getPageNum() {
return this.pageNum;
}
public void setPageNum(Long pageNum) {
this.pageNum = pageNum;
}
public String getRows() {
return this.rows;
}
public void setRows(String rows) {
this.rows = rows;
}
}
@Override
public GetSkillGroupStatusTotalResponse getInstance(UnmarshallerContext context) {
return GetSkillGroupStatusTotalResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/HangUpDoubleCallRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class HangUpDoubleCallRequest extends RpcAcsRequest<HangUpDoubleCallResponse> {
private String instanceId;
private String acid;
public HangUpDoubleCallRequest() {
super("aiccs", "2019-10-15", "HangUpDoubleCall");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getAcid() {
return this.acid;
}
public void setAcid(String acid) {
this.acid = acid;
if(acid != null){
putQueryParameter("Acid", acid);
}
}
@Override
public Class<HangUpDoubleCallResponse> getResponseClass() {
return HangUpDoubleCallResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/HangUpDoubleCallResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.HangUpDoubleCallResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class HangUpDoubleCallResponse extends AcsResponse {
private String message;
private String requestId;
private String code;
private Boolean success;
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public HangUpDoubleCallResponse getInstance(UnmarshallerContext context) {
return HangUpDoubleCallResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/HangupCallRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class HangupCallRequest extends RpcAcsRequest<HangupCallResponse> {
private String clientToken;
private String instanceId;
private String accountName;
private String callId;
private String jobId;
private String connectionId;
public HangupCallRequest() {
super("aiccs", "2019-10-15", "HangupCall");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putBodyParameter("ClientToken", clientToken);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public String getAccountName() {
return this.accountName;
}
public void setAccountName(String accountName) {
this.accountName = accountName;
if(accountName != null){
putBodyParameter("AccountName", accountName);
}
}
public String getCallId() {
return this.callId;
}
public void setCallId(String callId) {
this.callId = callId;
if(callId != null){
putBodyParameter("CallId", callId);
}
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
if(jobId != null){
putBodyParameter("JobId", jobId);
}
}
public String getConnectionId() {
return this.connectionId;
}
public void setConnectionId(String connectionId) {
this.connectionId = connectionId;
if(connectionId != null){
putBodyParameter("ConnectionId", connectionId);
}
}
@Override
public Class<HangupCallResponse> getResponseClass() {
return HangupCallResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/HangupCallResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.HangupCallResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class HangupCallResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private Boolean success;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public HangupCallResponse getInstance(UnmarshallerContext context) {
return HangupCallResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/HangupThirdCallRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class HangupThirdCallRequest extends RpcAcsRequest<HangupThirdCallResponse> {
private String clientToken;
private String instanceId;
private String accountName;
private String callId;
private String jobId;
private String connectionId;
public HangupThirdCallRequest() {
super("aiccs", "2019-10-15", "HangupThirdCall");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putBodyParameter("ClientToken", clientToken);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public String getAccountName() {
return this.accountName;
}
public void setAccountName(String accountName) {
this.accountName = accountName;
if(accountName != null){
putBodyParameter("AccountName", accountName);
}
}
public String getCallId() {
return this.callId;
}
public void setCallId(String callId) {
this.callId = callId;
if(callId != null){
putBodyParameter("CallId", callId);
}
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
if(jobId != null){
putBodyParameter("JobId", jobId);
}
}
public String getConnectionId() {
return this.connectionId;
}
public void setConnectionId(String connectionId) {
this.connectionId = connectionId;
if(connectionId != null){
putBodyParameter("ConnectionId", connectionId);
}
}
@Override
public Class<HangupThirdCallResponse> getResponseClass() {
return HangupThirdCallResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/HangupThirdCallResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.HangupThirdCallResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class HangupThirdCallResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private Boolean success;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public HangupThirdCallResponse getInstance(UnmarshallerContext context) {
return HangupThirdCallResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/HoldCallRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class HoldCallRequest extends RpcAcsRequest<HoldCallResponse> {
private String clientToken;
private String instanceId;
private String accountName;
private String callId;
private String jobId;
private String connectionId;
public HoldCallRequest() {
super("aiccs", "2019-10-15", "HoldCall");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putBodyParameter("ClientToken", clientToken);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public String getAccountName() {
return this.accountName;
}
public void setAccountName(String accountName) {
this.accountName = accountName;
if(accountName != null){
putBodyParameter("AccountName", accountName);
}
}
public String getCallId() {
return this.callId;
}
public void setCallId(String callId) {
this.callId = callId;
if(callId != null){
putBodyParameter("CallId", callId);
}
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
if(jobId != null){
putBodyParameter("JobId", jobId);
}
}
public String getConnectionId() {
return this.connectionId;
}
public void setConnectionId(String connectionId) {
this.connectionId = connectionId;
if(connectionId != null){
putBodyParameter("ConnectionId", connectionId);
}
}
@Override
public Class<HoldCallResponse> getResponseClass() {
return HoldCallResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/HoldCallResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.HoldCallResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class HoldCallResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private Boolean success;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public HoldCallResponse getInstance(UnmarshallerContext context) {
return HoldCallResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/HotlineSessionQueryRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class HotlineSessionQueryRequest extends RpcAcsRequest<HotlineSessionQueryResponse> {
private List<String> memberIdLists;
private List<Integer> callTypeLists;
private String servicerId;
private String acid;
private List<Long> groupIdLists;
private String calledNumber;
private List<String> callResultLists;
private String servicerName;
private Integer pageSize;
private String id;
private Integer callType;
private List<String> calledNumberLists;
private List<String> acidLists;
private Long groupId;
private String params;
private String groupName;
private String callingNumber;
private Long queryEndTime;
private List<String> callingNumberLists;
private String instanceId;
private String requestId;
private Integer pageNo;
private Long queryStartTime;
private String callResult;
private List<String> servicerIdLists;
private String memberName;
private String memberId;
public HotlineSessionQueryRequest() {
super("aiccs", "2019-10-15", "HotlineSessionQuery");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public List<String> getMemberIdLists() {
return this.memberIdLists;
}
public void setMemberIdLists(List<String> memberIdLists) {
this.memberIdLists = memberIdLists;
if (memberIdLists != null) {
for (int i = 0; i < memberIdLists.size(); i++) {
putQueryParameter("MemberIdList." + (i + 1) , memberIdLists.get(i));
}
}
}
public List<Integer> getCallTypeLists() {
return this.callTypeLists;
}
public void setCallTypeLists(List<Integer> callTypeLists) {
this.callTypeLists = callTypeLists;
if (callTypeLists != null) {
for (int i = 0; i < callTypeLists.size(); i++) {
putQueryParameter("CallTypeList." + (i + 1) , callTypeLists.get(i));
}
}
}
public String getServicerId() {
return this.servicerId;
}
public void setServicerId(String servicerId) {
this.servicerId = servicerId;
if(servicerId != null){
putQueryParameter("ServicerId", servicerId);
}
}
public String getAcid() {
return this.acid;
}
public void setAcid(String acid) {
this.acid = acid;
if(acid != null){
putQueryParameter("Acid", acid);
}
}
public List<Long> getGroupIdLists() {
return this.groupIdLists;
}
public void setGroupIdLists(List<Long> groupIdLists) {
this.groupIdLists = groupIdLists;
if (groupIdLists != null) {
for (int i = 0; i < groupIdLists.size(); i++) {
putQueryParameter("GroupIdList." + (i + 1) , groupIdLists.get(i));
}
}
}
public String getCalledNumber() {
return this.calledNumber;
}
public void setCalledNumber(String calledNumber) {
this.calledNumber = calledNumber;
if(calledNumber != null){
putQueryParameter("CalledNumber", calledNumber);
}
}
public List<String> getCallResultLists() {
return this.callResultLists;
}
public void setCallResultLists(List<String> callResultLists) {
this.callResultLists = callResultLists;
if (callResultLists != null) {
for (int i = 0; i < callResultLists.size(); i++) {
putQueryParameter("CallResultList." + (i + 1) , callResultLists.get(i));
}
}
}
public String getServicerName() {
return this.servicerName;
}
public void setServicerName(String servicerName) {
this.servicerName = servicerName;
if(servicerName != null){
putQueryParameter("ServicerName", servicerName);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
if(id != null){
putQueryParameter("Id", id);
}
}
public Integer getCallType() {
return this.callType;
}
public void setCallType(Integer callType) {
this.callType = callType;
if(callType != null){
putQueryParameter("CallType", callType.toString());
}
}
public List<String> getCalledNumberLists() {
return this.calledNumberLists;
}
public void setCalledNumberLists(List<String> calledNumberLists) {
this.calledNumberLists = calledNumberLists;
if (calledNumberLists != null) {
for (int i = 0; i < calledNumberLists.size(); i++) {
putQueryParameter("CalledNumberList." + (i + 1) , calledNumberLists.get(i));
}
}
}
public List<String> getAcidLists() {
return this.acidLists;
}
public void setAcidLists(List<String> acidLists) {
this.acidLists = acidLists;
if (acidLists != null) {
for (int i = 0; i < acidLists.size(); i++) {
putQueryParameter("AcidList." + (i + 1) , acidLists.get(i));
}
}
}
public Long getGroupId() {
return this.groupId;
}
public void setGroupId(Long groupId) {
this.groupId = groupId;
if(groupId != null){
putQueryParameter("GroupId", groupId.toString());
}
}
public String getParams() {
return this.params;
}
public void setParams(String params) {
this.params = params;
if(params != null){
putQueryParameter("Params", params);
}
}
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
if(groupName != null){
putQueryParameter("GroupName", groupName);
}
}
public String getCallingNumber() {
return this.callingNumber;
}
public void setCallingNumber(String callingNumber) {
this.callingNumber = callingNumber;
if(callingNumber != null){
putQueryParameter("CallingNumber", callingNumber);
}
}
public Long getQueryEndTime() {
return this.queryEndTime;
}
public void setQueryEndTime(Long queryEndTime) {
this.queryEndTime = queryEndTime;
if(queryEndTime != null){
putQueryParameter("QueryEndTime", queryEndTime.toString());
}
}
public List<String> getCallingNumberLists() {
return this.callingNumberLists;
}
public void setCallingNumberLists(List<String> callingNumberLists) {
this.callingNumberLists = callingNumberLists;
if (callingNumberLists != null) {
for (int i = 0; i < callingNumberLists.size(); i++) {
putQueryParameter("CallingNumberList." + (i + 1) , callingNumberLists.get(i));
}
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
if(requestId != null){
putQueryParameter("RequestId", requestId);
}
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
if(pageNo != null){
putQueryParameter("PageNo", pageNo.toString());
}
}
public Long getQueryStartTime() {
return this.queryStartTime;
}
public void setQueryStartTime(Long queryStartTime) {
this.queryStartTime = queryStartTime;
if(queryStartTime != null){
putQueryParameter("QueryStartTime", queryStartTime.toString());
}
}
public String getCallResult() {
return this.callResult;
}
public void setCallResult(String callResult) {
this.callResult = callResult;
if(callResult != null){
putQueryParameter("CallResult", callResult);
}
}
public List<String> getServicerIdLists() {
return this.servicerIdLists;
}
public void setServicerIdLists(List<String> servicerIdLists) {
this.servicerIdLists = servicerIdLists;
if (servicerIdLists != null) {
for (int i = 0; i < servicerIdLists.size(); i++) {
putQueryParameter("ServicerIdList." + (i + 1) , servicerIdLists.get(i));
}
}
}
public String getMemberName() {
return this.memberName;
}
public void setMemberName(String memberName) {
this.memberName = memberName;
if(memberName != null){
putQueryParameter("MemberName", memberName);
}
}
public String getMemberId() {
return this.memberId;
}
public void setMemberId(String memberId) {
this.memberId = memberId;
if(memberId != null){
putQueryParameter("MemberId", memberId);
}
}
@Override
public Class<HotlineSessionQueryResponse> getResponseClass() {
return HotlineSessionQueryResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/HotlineSessionQueryResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.HotlineSessionQueryResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class HotlineSessionQueryResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private Boolean success;
private Data data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Integer totalCount;
private Integer pageSize;
private Integer pageNumber;
private List<CallDetailRecordItem> callDetailRecord;
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public List<CallDetailRecordItem> getCallDetailRecord() {
return this.callDetailRecord;
}
public void setCallDetailRecord(List<CallDetailRecordItem> callDetailRecord) {
this.callDetailRecord = callDetailRecord;
}
public static class CallDetailRecordItem {
private String groupName;
private String acid;
private String calledNumber;
private String callResult;
private Integer callType;
private Integer queueUpContinueTime;
private String callingNumber;
private String passiveTransferId;
private String memberId;
private String outQueueTime;
private String servicerName;
private String ringEndTime;
private String pickUpTime;
private Integer evaluationLevel;
private String passiveTransferIdType;
private Integer ringContinueTime;
private Integer evaluationScore;
private String createTime;
private String hangUpTime;
private Long groupId;
private String inQueueTime;
private String ringStartTime;
private String hangUpRole;
private String activeTransferId;
private Integer callContinueTime;
private String id;
private String memberName;
private String servicerId;
private String trunkCall;
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
public String getAcid() {
return this.acid;
}
public void setAcid(String acid) {
this.acid = acid;
}
public String getCalledNumber() {
return this.calledNumber;
}
public void setCalledNumber(String calledNumber) {
this.calledNumber = calledNumber;
}
public String getCallResult() {
return this.callResult;
}
public void setCallResult(String callResult) {
this.callResult = callResult;
}
public Integer getCallType() {
return this.callType;
}
public void setCallType(Integer callType) {
this.callType = callType;
}
public Integer getQueueUpContinueTime() {
return this.queueUpContinueTime;
}
public void setQueueUpContinueTime(Integer queueUpContinueTime) {
this.queueUpContinueTime = queueUpContinueTime;
}
public String getCallingNumber() {
return this.callingNumber;
}
public void setCallingNumber(String callingNumber) {
this.callingNumber = callingNumber;
}
public String getPassiveTransferId() {
return this.passiveTransferId;
}
public void setPassiveTransferId(String passiveTransferId) {
this.passiveTransferId = passiveTransferId;
}
public String getMemberId() {
return this.memberId;
}
public void setMemberId(String memberId) {
this.memberId = memberId;
}
public String getOutQueueTime() {
return this.outQueueTime;
}
public void setOutQueueTime(String outQueueTime) {
this.outQueueTime = outQueueTime;
}
public String getServicerName() {
return this.servicerName;
}
public void setServicerName(String servicerName) {
this.servicerName = servicerName;
}
public String getRingEndTime() {
return this.ringEndTime;
}
public void setRingEndTime(String ringEndTime) {
this.ringEndTime = ringEndTime;
}
public String getPickUpTime() {
return this.pickUpTime;
}
public void setPickUpTime(String pickUpTime) {
this.pickUpTime = pickUpTime;
}
public Integer getEvaluationLevel() {
return this.evaluationLevel;
}
public void setEvaluationLevel(Integer evaluationLevel) {
this.evaluationLevel = evaluationLevel;
}
public String getPassiveTransferIdType() {
return this.passiveTransferIdType;
}
public void setPassiveTransferIdType(String passiveTransferIdType) {
this.passiveTransferIdType = passiveTransferIdType;
}
public Integer getRingContinueTime() {
return this.ringContinueTime;
}
public void setRingContinueTime(Integer ringContinueTime) {
this.ringContinueTime = ringContinueTime;
}
public Integer getEvaluationScore() {
return this.evaluationScore;
}
public void setEvaluationScore(Integer evaluationScore) {
this.evaluationScore = evaluationScore;
}
public String getCreateTime() {
return this.createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getHangUpTime() {
return this.hangUpTime;
}
public void setHangUpTime(String hangUpTime) {
this.hangUpTime = hangUpTime;
}
public Long getGroupId() {
return this.groupId;
}
public void setGroupId(Long groupId) {
this.groupId = groupId;
}
public String getInQueueTime() {
return this.inQueueTime;
}
public void setInQueueTime(String inQueueTime) {
this.inQueueTime = inQueueTime;
}
public String getRingStartTime() {
return this.ringStartTime;
}
public void setRingStartTime(String ringStartTime) {
this.ringStartTime = ringStartTime;
}
public String getHangUpRole() {
return this.hangUpRole;
}
public void setHangUpRole(String hangUpRole) {
this.hangUpRole = hangUpRole;
}
public String getActiveTransferId() {
return this.activeTransferId;
}
public void setActiveTransferId(String activeTransferId) {
this.activeTransferId = activeTransferId;
}
public Integer getCallContinueTime() {
return this.callContinueTime;
}
public void setCallContinueTime(Integer callContinueTime) {
this.callContinueTime = callContinueTime;
}
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public String getMemberName() {
return this.memberName;
}
public void setMemberName(String memberName) {
this.memberName = memberName;
}
public String getServicerId() {
return this.servicerId;
}
public void setServicerId(String servicerId) {
this.servicerId = servicerId;
}
public String getTrunkCall() {
return this.trunkCall;
}
public void setTrunkCall(String trunkCall) {
this.trunkCall = trunkCall;
}
}
}
@Override
public HotlineSessionQueryResponse getInstance(UnmarshallerContext context) {
return HotlineSessionQueryResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/InsertTaskDetailRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class InsertTaskDetailRequest extends RpcAcsRequest<InsertTaskDetailResponse> {
private String instanceId;
private Long outboundTaskId;
private String callInfos;
public InsertTaskDetailRequest() {
super("aiccs", "2019-10-15", "InsertTaskDetail");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Long getOutboundTaskId() {
return this.outboundTaskId;
}
public void setOutboundTaskId(Long outboundTaskId) {
this.outboundTaskId = outboundTaskId;
if(outboundTaskId != null){
putQueryParameter("OutboundTaskId", outboundTaskId.toString());
}
}
public String getCallInfos() {
return this.callInfos;
}
public void setCallInfos(String callInfos) {
this.callInfos = callInfos;
if(callInfos != null){
putQueryParameter("CallInfos", callInfos);
}
}
@Override
public Class<InsertTaskDetailResponse> getResponseClass() {
return InsertTaskDetailResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/InsertTaskDetailResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.InsertTaskDetailResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class InsertTaskDetailResponse extends AcsResponse {
private String requestId;
private String message;
private String data;
private String code;
private Boolean success;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public InsertTaskDetailResponse getInstance(UnmarshallerContext context) {
return InsertTaskDetailResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/JoinThirdCallRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class JoinThirdCallRequest extends RpcAcsRequest<JoinThirdCallResponse> {
private String clientToken;
private String instanceId;
private String accountName;
private String callId;
private String jobId;
private String connectionId;
private String holdConnectionId;
public JoinThirdCallRequest() {
super("aiccs", "2019-10-15", "JoinThirdCall");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putBodyParameter("ClientToken", clientToken);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public String getAccountName() {
return this.accountName;
}
public void setAccountName(String accountName) {
this.accountName = accountName;
if(accountName != null){
putBodyParameter("AccountName", accountName);
}
}
public String getCallId() {
return this.callId;
}
public void setCallId(String callId) {
this.callId = callId;
if(callId != null){
putBodyParameter("CallId", callId);
}
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
if(jobId != null){
putBodyParameter("JobId", jobId);
}
}
public String getConnectionId() {
return this.connectionId;
}
public void setConnectionId(String connectionId) {
this.connectionId = connectionId;
if(connectionId != null){
putBodyParameter("ConnectionId", connectionId);
}
}
public String getHoldConnectionId() {
return this.holdConnectionId;
}
public void setHoldConnectionId(String holdConnectionId) {
this.holdConnectionId = holdConnectionId;
if(holdConnectionId != null){
putBodyParameter("HoldConnectionId", holdConnectionId);
}
}
@Override
public Class<JoinThirdCallResponse> getResponseClass() {
return JoinThirdCallResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/JoinThirdCallResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.JoinThirdCallResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class JoinThirdCallResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private Boolean success;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public JoinThirdCallResponse getInstance(UnmarshallerContext context) {
return JoinThirdCallResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/ListAgentBySkillGroupIdRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class ListAgentBySkillGroupIdRequest extends RpcAcsRequest<ListAgentBySkillGroupIdResponse> {
private String clientToken;
private String instanceId;
private Long skillGroupId;
public ListAgentBySkillGroupIdRequest() {
super("aiccs", "2019-10-15", "ListAgentBySkillGroupId");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putQueryParameter("ClientToken", clientToken);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Long getSkillGroupId() {
return this.skillGroupId;
}
public void setSkillGroupId(Long skillGroupId) {
this.skillGroupId = skillGroupId;
if(skillGroupId != null){
putQueryParameter("SkillGroupId", skillGroupId.toString());
}
}
@Override
public Class<ListAgentBySkillGroupIdResponse> getResponseClass() {
return ListAgentBySkillGroupIdResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/ListAgentBySkillGroupIdResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.ListAgentBySkillGroupIdResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListAgentBySkillGroupIdResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private Boolean success;
private List<Agents> data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public List<Agents> getData() {
return this.data;
}
public void setData(List<Agents> data) {
this.data = data;
}
public static class Agents {
private Integer status;
private Long tenantId;
private String displayName;
private Long agentId;
private String accountName;
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Long getTenantId() {
return this.tenantId;
}
public void setTenantId(Long tenantId) {
this.tenantId = tenantId;
}
public String getDisplayName() {
return this.displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
public Long getAgentId() {
return this.agentId;
}
public void setAgentId(Long agentId) {
this.agentId = agentId;
}
public String getAccountName() {
return this.accountName;
}
public void setAccountName(String accountName) {
this.accountName = accountName;
}
}
@Override
public ListAgentBySkillGroupIdResponse getInstance(UnmarshallerContext context) {
return ListAgentBySkillGroupIdResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/ListChatRecordDetailRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class ListChatRecordDetailRequest extends RpcAcsRequest<ListChatRecordDetailResponse> {
private String clientToken;
private Integer pageSize;
private Integer currentPage;
private Long closeTimeEnd;
private Long closeTimeStart;
private String instanceId;
public ListChatRecordDetailRequest() {
super("aiccs", "2019-10-15", "ListChatRecordDetail");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putQueryParameter("ClientToken", clientToken);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage.toString());
}
}
public Long getCloseTimeEnd() {
return this.closeTimeEnd;
}
public void setCloseTimeEnd(Long closeTimeEnd) {
this.closeTimeEnd = closeTimeEnd;
if(closeTimeEnd != null){
putQueryParameter("CloseTimeEnd", closeTimeEnd.toString());
}
}
public Long getCloseTimeStart() {
return this.closeTimeStart;
}
public void setCloseTimeStart(Long closeTimeStart) {
this.closeTimeStart = closeTimeStart;
if(closeTimeStart != null){
putQueryParameter("CloseTimeStart", closeTimeStart.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<ListChatRecordDetailResponse> getResponseClass() {
return ListChatRecordDetailResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/ListChatRecordDetailResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.ListChatRecordDetailResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListChatRecordDetailResponse extends AcsResponse {
private String requestId;
private String message;
private Integer httpStatusCode;
private String code;
private Boolean success;
private ResultData resultData;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public ResultData getResultData() {
return this.resultData;
}
public void setResultData(ResultData resultData) {
this.resultData = resultData;
}
public static class ResultData {
private Long onePageSize;
private Long totalPage;
private Long currentPage;
private Long totalResults;
private List<DataItem> data;
public Long getOnePageSize() {
return this.onePageSize;
}
public void setOnePageSize(Long onePageSize) {
this.onePageSize = onePageSize;
}
public Long getTotalPage() {
return this.totalPage;
}
public void setTotalPage(Long totalPage) {
this.totalPage = totalPage;
}
public Long getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Long currentPage) {
this.currentPage = currentPage;
}
public Long getTotalResults() {
return this.totalResults;
}
public void setTotalResults(Long totalResults) {
this.totalResults = totalResults;
}
public List<DataItem> getData() {
return this.data;
}
public void setData(List<DataItem> data) {
this.data = data;
}
public static class DataItem {
private String servicerName;
private Long endTime;
private Long startTime;
private List<MessageListItem> messageList;
public String getServicerName() {
return this.servicerName;
}
public void setServicerName(String servicerName) {
this.servicerName = servicerName;
}
public Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
}
public List<MessageListItem> getMessageList() {
return this.messageList;
}
public void setMessageList(List<MessageListItem> messageList) {
this.messageList = messageList;
}
public static class MessageListItem {
private String senderName;
private String content;
private Long createTime;
private Long senderType;
private String msgType;
public String getSenderName() {
return this.senderName;
}
public void setSenderName(String senderName) {
this.senderName = senderName;
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
public Long getSenderType() {
return this.senderType;
}
public void setSenderType(Long senderType) {
this.senderType = senderType;
}
public String getMsgType() {
return this.msgType;
}
public void setMsgType(String msgType) {
this.msgType = msgType;
}
}
}
}
@Override
public ListChatRecordDetailResponse getInstance(UnmarshallerContext context) {
return ListChatRecordDetailResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/ListHotlineRecordDetailRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class ListHotlineRecordDetailRequest extends RpcAcsRequest<ListHotlineRecordDetailResponse> {
private String clientToken;
private Integer pageSize;
private Integer currentPage;
private Long closeTimeEnd;
private Long closeTimeStart;
private String instanceId;
public ListHotlineRecordDetailRequest() {
super("aiccs", "2019-10-15", "ListHotlineRecordDetail");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putQueryParameter("ClientToken", clientToken);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage.toString());
}
}
public Long getCloseTimeEnd() {
return this.closeTimeEnd;
}
public void setCloseTimeEnd(Long closeTimeEnd) {
this.closeTimeEnd = closeTimeEnd;
if(closeTimeEnd != null){
putQueryParameter("CloseTimeEnd", closeTimeEnd.toString());
}
}
public Long getCloseTimeStart() {
return this.closeTimeStart;
}
public void setCloseTimeStart(Long closeTimeStart) {
this.closeTimeStart = closeTimeStart;
if(closeTimeStart != null){
putQueryParameter("CloseTimeStart", closeTimeStart.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<ListHotlineRecordDetailResponse> getResponseClass() {
return ListHotlineRecordDetailResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/ListHotlineRecordDetailResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.ListHotlineRecordDetailResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListHotlineRecordDetailResponse extends AcsResponse {
private String requestId;
private String message;
private Integer httpStatusCode;
private String code;
private Boolean success;
private ResultData resultData;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public ResultData getResultData() {
return this.resultData;
}
public void setResultData(ResultData resultData) {
this.resultData = resultData;
}
public static class ResultData {
private Long onePageSize;
private Long totalPage;
private Long currentPage;
private Long totalResults;
private List<DataItem> data;
public Long getOnePageSize() {
return this.onePageSize;
}
public void setOnePageSize(Long onePageSize) {
this.onePageSize = onePageSize;
}
public Long getTotalPage() {
return this.totalPage;
}
public void setTotalPage(Long totalPage) {
this.totalPage = totalPage;
}
public Long getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Long currentPage) {
this.currentPage = currentPage;
}
public Long getTotalResults() {
return this.totalResults;
}
public void setTotalResults(Long totalResults) {
this.totalResults = totalResults;
}
public List<DataItem> getData() {
return this.data;
}
public void setData(List<DataItem> data) {
this.data = data;
}
public static class DataItem {
private String servicerName;
private Long endTime;
private String ossUrl;
private Long startTime;
public String getServicerName() {
return this.servicerName;
}
public void setServicerName(String servicerName) {
this.servicerName = servicerName;
}
public Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
}
public String getOssUrl() {
return this.ossUrl;
}
public void setOssUrl(String ossUrl) {
this.ossUrl = ossUrl;
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
}
}
}
@Override
public ListHotlineRecordDetailResponse getInstance(UnmarshallerContext context) {
return ListHotlineRecordDetailResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/ListHotlineRecordRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class ListHotlineRecordRequest extends RpcAcsRequest<ListHotlineRecordResponse> {
private String clientToken;
private String instanceId;
private String callId;
public ListHotlineRecordRequest() {
super("aiccs", "2019-10-15", "ListHotlineRecord");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putQueryParameter("ClientToken", clientToken);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getCallId() {
return this.callId;
}
public void setCallId(String callId) {
this.callId = callId;
if(callId != null){
putQueryParameter("CallId", callId);
}
}
@Override
public Class<ListHotlineRecordResponse> getResponseClass() {
return ListHotlineRecordResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/ListHotlineRecordResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.ListHotlineRecordResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListHotlineRecordResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private Boolean success;
private List<DataItem> data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public List<DataItem> getData() {
return this.data;
}
public void setData(List<DataItem> data) {
this.data = data;
}
public static class DataItem {
private String connectionId;
private Long endTime;
private String callId;
private Long startTime;
private String url;
public String getConnectionId() {
return this.connectionId;
}
public void setConnectionId(String connectionId) {
this.connectionId = connectionId;
}
public Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
}
public String getCallId() {
return this.callId;
}
public void setCallId(String callId) {
this.callId = callId;
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
}
public String getUrl() {
return this.url;
}
public void setUrl(String url) {
this.url = url;
}
}
@Override
public ListHotlineRecordResponse getInstance(UnmarshallerContext context) {
return ListHotlineRecordResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/ListOutboundPhoneNumberRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class ListOutboundPhoneNumberRequest extends RpcAcsRequest<ListOutboundPhoneNumberResponse> {
private String clientToken;
private String instanceId;
private String accountName;
public ListOutboundPhoneNumberRequest() {
super("aiccs", "2019-10-15", "ListOutboundPhoneNumber");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putQueryParameter("ClientToken", clientToken);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getAccountName() {
return this.accountName;
}
public void setAccountName(String accountName) {
this.accountName = accountName;
if(accountName != null){
putQueryParameter("AccountName", accountName);
}
}
@Override
public Class<ListOutboundPhoneNumberResponse> getResponseClass() {
return ListOutboundPhoneNumberResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/ListOutboundPhoneNumberResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.ListOutboundPhoneNumberResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListOutboundPhoneNumberResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private Boolean success;
private List<String> data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public List<String> getData() {
return this.data;
}
public void setData(List<String> data) {
this.data = data;
}
@Override
public ListOutboundPhoneNumberResponse getInstance(UnmarshallerContext context) {
return ListOutboundPhoneNumberResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/ListOutboundStrategiesRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class ListOutboundStrategiesRequest extends RpcAcsRequest<ListOutboundStrategiesResponse> {
private Long buId;
private Long resourceOwnerId;
private String keyword;
private String resourceOwnerAccount;
private String prodCode;
private Long ownerId;
public ListOutboundStrategiesRequest() {
super("aiccs", "2019-10-15", "ListOutboundStrategies");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getBuId() {
return this.buId;
}
public void setBuId(Long buId) {
this.buId = buId;
if(buId != null){
putQueryParameter("BuId", buId.toString());
}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getKeyword() {
return this.keyword;
}
public void setKeyword(String keyword) {
this.keyword = keyword;
if(keyword != null){
putQueryParameter("Keyword", keyword);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getProdCode() {
return this.prodCode;
}
public void setProdCode(String prodCode) {
this.prodCode = prodCode;
if(prodCode != null){
putQueryParameter("ProdCode", prodCode);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
@Override
public Class<ListOutboundStrategiesResponse> getResponseClass() {
return ListOutboundStrategiesResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/ListOutboundStrategiesResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.ListOutboundStrategiesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListOutboundStrategiesResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private List<OutboundStrategy> outboundStrategies;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public List<OutboundStrategy> getOutboundStrategies() {
return this.outboundStrategies;
}
public void setOutboundStrategies(List<OutboundStrategy> outboundStrategies) {
this.outboundStrategies = outboundStrategies;
}
public static class OutboundStrategy {
private Integer status;
private Integer robotType;
private Long outboundStrategyId;
private Long creatorId;
private String outboundNum;
private String robotId;
private String extAttr;
private String modifierName;
private Integer process;
private Integer successRate;
private Integer resourceAllocation;
private String gmtCreateStr;
private String outboundStrategyName;
private String gmtModifiedStr;
private Long buId;
private String sceneName;
private Integer numType;
private String robotName;
private Long departmentId;
private Long ruleCode;
private String creatorName;
private Long modifierId;
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Integer getRobotType() {
return this.robotType;
}
public void setRobotType(Integer robotType) {
this.robotType = robotType;
}
public Long getOutboundStrategyId() {
return this.outboundStrategyId;
}
public void setOutboundStrategyId(Long outboundStrategyId) {
this.outboundStrategyId = outboundStrategyId;
}
public Long getCreatorId() {
return this.creatorId;
}
public void setCreatorId(Long creatorId) {
this.creatorId = creatorId;
}
public String getOutboundNum() {
return this.outboundNum;
}
public void setOutboundNum(String outboundNum) {
this.outboundNum = outboundNum;
}
public String getRobotId() {
return this.robotId;
}
public void setRobotId(String robotId) {
this.robotId = robotId;
}
public String getExtAttr() {
return this.extAttr;
}
public void setExtAttr(String extAttr) {
this.extAttr = extAttr;
}
public String getModifierName() {
return this.modifierName;
}
public void setModifierName(String modifierName) {
this.modifierName = modifierName;
}
public Integer getProcess() {
return this.process;
}
public void setProcess(Integer process) {
this.process = process;
}
public Integer getSuccessRate() {
return this.successRate;
}
public void setSuccessRate(Integer successRate) {
this.successRate = successRate;
}
public Integer getResourceAllocation() {
return this.resourceAllocation;
}
public void setResourceAllocation(Integer resourceAllocation) {
this.resourceAllocation = resourceAllocation;
}
public String getGmtCreateStr() {
return this.gmtCreateStr;
}
public void setGmtCreateStr(String gmtCreateStr) {
this.gmtCreateStr = gmtCreateStr;
}
public String getOutboundStrategyName() {
return this.outboundStrategyName;
}
public void setOutboundStrategyName(String outboundStrategyName) {
this.outboundStrategyName = outboundStrategyName;
}
public String getGmtModifiedStr() {
return this.gmtModifiedStr;
}
public void setGmtModifiedStr(String gmtModifiedStr) {
this.gmtModifiedStr = gmtModifiedStr;
}
public Long getBuId() {
return this.buId;
}
public void setBuId(Long buId) {
this.buId = buId;
}
public String getSceneName() {
return this.sceneName;
}
public void setSceneName(String sceneName) {
this.sceneName = sceneName;
}
public Integer getNumType() {
return this.numType;
}
public void setNumType(Integer numType) {
this.numType = numType;
}
public String getRobotName() {
return this.robotName;
}
public void setRobotName(String robotName) {
this.robotName = robotName;
}
public Long getDepartmentId() {
return this.departmentId;
}
public void setDepartmentId(Long departmentId) {
this.departmentId = departmentId;
}
public Long getRuleCode() {
return this.ruleCode;
}
public void setRuleCode(Long ruleCode) {
this.ruleCode = ruleCode;
}
public String getCreatorName() {
return this.creatorName;
}
public void setCreatorName(String creatorName) {
this.creatorName = creatorName;
}
public Long getModifierId() {
return this.modifierId;
}
public void setModifierId(Long modifierId) {
this.modifierId = modifierId;
}
}
@Override
public ListOutboundStrategiesResponse getInstance(UnmarshallerContext context) {
return ListOutboundStrategiesResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/ListOuterOrderedNumbersRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class ListOuterOrderedNumbersRequest extends RpcAcsRequest<ListOuterOrderedNumbersResponse> {
private Long resourceOwnerId;
private String resourceOwnerAccount;
private String prodCode;
private Long ownerId;
public ListOuterOrderedNumbersRequest() {
super("aiccs", "2019-10-15", "ListOuterOrderedNumbers");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getProdCode() {
return this.prodCode;
}
public void setProdCode(String prodCode) {
this.prodCode = prodCode;
if(prodCode != null){
putQueryParameter("ProdCode", prodCode);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
@Override
public Class<ListOuterOrderedNumbersResponse> getResponseClass() {
return ListOuterOrderedNumbersResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/ListOuterOrderedNumbersResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.ListOuterOrderedNumbersResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListOuterOrderedNumbersResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private List<String> numbers;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public List<String> getNumbers() {
return this.numbers;
}
public void setNumbers(List<String> numbers) {
this.numbers = numbers;
}
@Override
public ListOuterOrderedNumbersResponse getInstance(UnmarshallerContext context) {
return ListOuterOrderedNumbersResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/ListRolesRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class ListRolesRequest extends RpcAcsRequest<ListRolesResponse> {
private String clientToken;
private String instanceId;
public ListRolesRequest() {
super("aiccs", "2019-10-15", "ListRoles");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putQueryParameter("ClientToken", clientToken);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<ListRolesResponse> getResponseClass() {
return ListRolesResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/ListRolesResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.ListRolesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListRolesResponse extends AcsResponse {
private String requestId;
private String message;
private Integer httpStatusCode;
private Boolean success;
private List<DataItem> data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public List<DataItem> getData() {
return this.data;
}
public void setData(List<DataItem> data) {
this.data = data;
}
public static class DataItem {
private Long roleGroupId;
private Long buId;
private String description;
private String createTime;
private String title;
private String roleGroupName;
private String code;
private Long roleId;
public Long getRoleGroupId() {
return this.roleGroupId;
}
public void setRoleGroupId(Long roleGroupId) {
this.roleGroupId = roleGroupId;
}
public Long getBuId() {
return this.buId;
}
public void setBuId(Long buId) {
this.buId = buId;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getCreateTime() {
return this.createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
public String getRoleGroupName() {
return this.roleGroupName;
}
public void setRoleGroupName(String roleGroupName) {
this.roleGroupName = roleGroupName;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Long getRoleId() {
return this.roleId;
}
public void setRoleId(Long roleId) {
this.roleId = roleId;
}
}
@Override
public ListRolesResponse getInstance(UnmarshallerContext context) {
return ListRolesResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/ListSkillGroupRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class ListSkillGroupRequest extends RpcAcsRequest<ListSkillGroupResponse> {
private String clientToken;
private String instanceId;
private Integer channelType;
public ListSkillGroupRequest() {
super("aiccs", "2019-10-15", "ListSkillGroup");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putQueryParameter("ClientToken", clientToken);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Integer getChannelType() {
return this.channelType;
}
public void setChannelType(Integer channelType) {
this.channelType = channelType;
if(channelType != null){
putQueryParameter("ChannelType", channelType.toString());
}
}
@Override
public Class<ListSkillGroupResponse> getResponseClass() {
return ListSkillGroupResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/ListSkillGroupResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.ListSkillGroupResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListSkillGroupResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private Boolean success;
private List<SkillGroups> data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public List<SkillGroups> getData() {
return this.data;
}
public void setData(List<SkillGroups> data) {
this.data = data;
}
public static class SkillGroups {
private String description;
private String displayName;
private Long skillGroupId;
private Integer channelType;
private String name;
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getDisplayName() {
return this.displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
public Long getSkillGroupId() {
return this.skillGroupId;
}
public void setSkillGroupId(Long skillGroupId) {
this.skillGroupId = skillGroupId;
}
public Integer getChannelType() {
return this.channelType;
}
public void setChannelType(Integer channelType) {
this.channelType = channelType;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
}
@Override
public ListSkillGroupResponse getInstance(UnmarshallerContext context) {
return ListSkillGroupResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/MakeCallRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class MakeCallRequest extends RpcAcsRequest<MakeCallResponse> {
private String extInfo;
private String callingNumber;
private String commandCode;
private String calledNumber;
private String outerAccountId;
private String outerAccountType;
public MakeCallRequest() {
super("aiccs", "2019-10-15", "MakeCall");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getExtInfo() {
return this.extInfo;
}
public void setExtInfo(String extInfo) {
this.extInfo = extInfo;
if(extInfo != null){
putQueryParameter("ExtInfo", extInfo);
}
}
public String getCallingNumber() {
return this.callingNumber;
}
public void setCallingNumber(String callingNumber) {
this.callingNumber = callingNumber;
if(callingNumber != null){
putQueryParameter("CallingNumber", callingNumber);
}
}
public String getCommandCode() {
return this.commandCode;
}
public void setCommandCode(String commandCode) {
this.commandCode = commandCode;
if(commandCode != null){
putQueryParameter("CommandCode", commandCode);
}
}
public String getCalledNumber() {
return this.calledNumber;
}
public void setCalledNumber(String calledNumber) {
this.calledNumber = calledNumber;
if(calledNumber != null){
putQueryParameter("CalledNumber", calledNumber);
}
}
public String getOuterAccountId() {
return this.outerAccountId;
}
public void setOuterAccountId(String outerAccountId) {
this.outerAccountId = outerAccountId;
if(outerAccountId != null){
putQueryParameter("OuterAccountId", outerAccountId);
}
}
public String getOuterAccountType() {
return this.outerAccountType;
}
public void setOuterAccountType(String outerAccountType) {
this.outerAccountType = outerAccountType;
if(outerAccountType != null){
putQueryParameter("OuterAccountType", outerAccountType);
}
}
@Override
public Class<MakeCallResponse> getResponseClass() {
return MakeCallResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/MakeCallResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.MakeCallResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class MakeCallResponse extends AcsResponse {
private String requestId;
private String message;
private String data;
private String code;
private Boolean success;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public MakeCallResponse getInstance(UnmarshallerContext context) {
return MakeCallResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/MakeDoubleCallRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class MakeDoubleCallRequest extends RpcAcsRequest<MakeDoubleCallResponse> {
private String instanceId;
private String servicerPhone;
private String accountName;
private String outboundCallNumber;
private String bizData;
private String memberPhone;
public MakeDoubleCallRequest() {
super("aiccs", "2019-10-15", "MakeDoubleCall");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getServicerPhone() {
return this.servicerPhone;
}
public void setServicerPhone(String servicerPhone) {
this.servicerPhone = servicerPhone;
if(servicerPhone != null){
putQueryParameter("ServicerPhone", servicerPhone);
}
}
public String getAccountName() {
return this.accountName;
}
public void setAccountName(String accountName) {
this.accountName = accountName;
if(accountName != null){
putQueryParameter("AccountName", accountName);
}
}
public String getOutboundCallNumber() {
return this.outboundCallNumber;
}
public void setOutboundCallNumber(String outboundCallNumber) {
this.outboundCallNumber = outboundCallNumber;
if(outboundCallNumber != null){
putQueryParameter("OutboundCallNumber", outboundCallNumber);
}
}
public String getBizData() {
return this.bizData;
}
public void setBizData(String bizData) {
this.bizData = bizData;
if(bizData != null){
putQueryParameter("BizData", bizData);
}
}
public String getMemberPhone() {
return this.memberPhone;
}
public void setMemberPhone(String memberPhone) {
this.memberPhone = memberPhone;
if(memberPhone != null){
putQueryParameter("MemberPhone", memberPhone);
}
}
@Override
public Class<MakeDoubleCallResponse> getResponseClass() {
return MakeDoubleCallResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/MakeDoubleCallResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.MakeDoubleCallResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class MakeDoubleCallResponse extends AcsResponse {
private String message;
private String requestId;
private String code;
private Boolean success;
private Data data;
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String acid;
public String getAcid() {
return this.acid;
}
public void setAcid(String acid) {
this.acid = acid;
}
}
@Override
public MakeDoubleCallResponse getInstance(UnmarshallerContext context) {
return MakeDoubleCallResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/QueryHotlineInQueueRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class QueryHotlineInQueueRequest extends RpcAcsRequest<QueryHotlineInQueueResponse> {
private String outerGroupId;
private String outerGroupType;
public QueryHotlineInQueueRequest() {
super("aiccs", "2019-10-15", "QueryHotlineInQueue");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getOuterGroupId() {
return this.outerGroupId;
}
public void setOuterGroupId(String outerGroupId) {
this.outerGroupId = outerGroupId;
if(outerGroupId != null){
putQueryParameter("OuterGroupId", outerGroupId);
}
}
public String getOuterGroupType() {
return this.outerGroupType;
}
public void setOuterGroupType(String outerGroupType) {
this.outerGroupType = outerGroupType;
if(outerGroupType != null){
putQueryParameter("OuterGroupType", outerGroupType);
}
}
@Override
public Class<QueryHotlineInQueueResponse> getResponseClass() {
return QueryHotlineInQueueResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/QueryHotlineInQueueResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.QueryHotlineInQueueResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryHotlineInQueueResponse extends AcsResponse {
private String requestId;
private String message;
private String data;
private String code;
private Boolean success;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public QueryHotlineInQueueResponse getInstance(UnmarshallerContext context) {
return QueryHotlineInQueueResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/QueryOutboundTaskRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class QueryOutboundTaskRequest extends RpcAcsRequest<QueryOutboundTaskResponse> {
private Integer taskType;
private String departmentId;
private String taskName;
private String endTime;
private Integer currentPage;
private String startTime;
private String startDate;
private String groupName;
private Long skillGroup;
private String endDate;
private String instanceId;
private Integer pageSize;
private String ani;
private Long taskId;
private String status;
public QueryOutboundTaskRequest() {
super("aiccs", "2019-10-15", "QueryOutboundTask");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Integer getTaskType() {
return this.taskType;
}
public void setTaskType(Integer taskType) {
this.taskType = taskType;
if(taskType != null){
putQueryParameter("TaskType", taskType.toString());
}
}
public String getDepartmentId() {
return this.departmentId;
}
public void setDepartmentId(String departmentId) {
this.departmentId = departmentId;
if(departmentId != null){
putQueryParameter("DepartmentId", departmentId);
}
}
public String getTaskName() {
return this.taskName;
}
public void setTaskName(String taskName) {
this.taskName = taskName;
if(taskName != null){
putQueryParameter("TaskName", taskName);
}
}
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
if(endTime != null){
putQueryParameter("EndTime", endTime);
}
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage.toString());
}
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime);
}
}
public String getStartDate() {
return this.startDate;
}
public void setStartDate(String startDate) {
this.startDate = startDate;
if(startDate != null){
putQueryParameter("StartDate", startDate);
}
}
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
if(groupName != null){
putQueryParameter("GroupName", groupName);
}
}
public Long getSkillGroup() {
return this.skillGroup;
}
public void setSkillGroup(Long skillGroup) {
this.skillGroup = skillGroup;
if(skillGroup != null){
putQueryParameter("SkillGroup", skillGroup.toString());
}
}
public String getEndDate() {
return this.endDate;
}
public void setEndDate(String endDate) {
this.endDate = endDate;
if(endDate != null){
putQueryParameter("EndDate", endDate);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getAni() {
return this.ani;
}
public void setAni(String ani) {
this.ani = ani;
if(ani != null){
putQueryParameter("Ani", ani);
}
}
public Long getTaskId() {
return this.taskId;
}
public void setTaskId(Long taskId) {
this.taskId = taskId;
if(taskId != null){
putQueryParameter("TaskId", taskId.toString());
}
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
if(status != null){
putQueryParameter("Status", status);
}
}
@Override
public Class<QueryOutboundTaskResponse> getResponseClass() {
return QueryOutboundTaskResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/QueryOutboundTaskResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.QueryOutboundTaskResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryOutboundTaskResponse extends AcsResponse {
private String requestId;
private String message;
private String httpStatusCode;
private String code;
private String success;
private Data data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(String httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getSuccess() {
return this.success;
}
public void setSuccess(String success) {
this.success = success;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String pageSize;
private String currentPage;
private String totalResults;
private List<ListItem> list;
public String getPageSize() {
return this.pageSize;
}
public void setPageSize(String pageSize) {
this.pageSize = pageSize;
}
public String getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(String currentPage) {
this.currentPage = currentPage;
}
public String getTotalResults() {
return this.totalResults;
}
public void setTotalResults(String totalResults) {
this.totalResults = totalResults;
}
public List<ListItem> getList() {
return this.list;
}
public void setList(List<ListItem> list) {
this.list = list;
}
public static class ListItem {
private String groupName;
private Integer status;
private Long skillGroup;
private String description;
private String endTime;
private String startTime;
private Long gmtModified;
private String creator;
private String endDate;
private String name;
private String callerNum;
private String startDate;
private Long buId;
private Long gmtCreate;
private Integer type;
private String extAttrs;
private Integer model;
private Long id;
private Long departmentId;
private Integer retryInterval;
private Integer retryTime;
private String modifier;
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Long getSkillGroup() {
return this.skillGroup;
}
public void setSkillGroup(Long skillGroup) {
this.skillGroup = skillGroup;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
}
public String getStartTime() {
return this.startTime;
}
public void setStartTime(String startTime) {
this.startTime = startTime;
}
public Long getGmtModified() {
return this.gmtModified;
}
public void setGmtModified(Long gmtModified) {
this.gmtModified = gmtModified;
}
public String getCreator() {
return this.creator;
}
public void setCreator(String creator) {
this.creator = creator;
}
public String getEndDate() {
return this.endDate;
}
public void setEndDate(String endDate) {
this.endDate = endDate;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getCallerNum() {
return this.callerNum;
}
public void setCallerNum(String callerNum) {
this.callerNum = callerNum;
}
public String getStartDate() {
return this.startDate;
}
public void setStartDate(String startDate) {
this.startDate = startDate;
}
public Long getBuId() {
return this.buId;
}
public void setBuId(Long buId) {
this.buId = buId;
}
public Long getGmtCreate() {
return this.gmtCreate;
}
public void setGmtCreate(Long gmtCreate) {
this.gmtCreate = gmtCreate;
}
public Integer getType() {
return this.type;
}
public void setType(Integer type) {
this.type = type;
}
public String getExtAttrs() {
return this.extAttrs;
}
public void setExtAttrs(String extAttrs) {
this.extAttrs = extAttrs;
}
public Integer getModel() {
return this.model;
}
public void setModel(Integer model) {
this.model = model;
}
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
public Long getDepartmentId() {
return this.departmentId;
}
public void setDepartmentId(Long departmentId) {
this.departmentId = departmentId;
}
public Integer getRetryInterval() {
return this.retryInterval;
}
public void setRetryInterval(Integer retryInterval) {
this.retryInterval = retryInterval;
}
public Integer getRetryTime() {
return this.retryTime;
}
public void setRetryTime(Integer retryTime) {
this.retryTime = retryTime;
}
public String getModifier() {
return this.modifier;
}
public void setModifier(String modifier) {
this.modifier = modifier;
}
}
}
@Override
public QueryOutboundTaskResponse getInstance(UnmarshallerContext context) {
return QueryOutboundTaskResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/QuerySkillGroupsRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class QuerySkillGroupsRequest extends RpcAcsRequest<QuerySkillGroupsResponse> {
private String instanceId;
private String clientToken;
private Integer pageNo;
private Integer pageSize;
public QuerySkillGroupsRequest() {
super("aiccs", "2019-10-15", "QuerySkillGroups");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putQueryParameter("ClientToken", clientToken);
}
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
if(pageNo != null){
putQueryParameter("PageNo", pageNo.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
@Override
public Class<QuerySkillGroupsResponse> getResponseClass() {
return QuerySkillGroupsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/QuerySkillGroupsResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.QuerySkillGroupsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QuerySkillGroupsResponse extends AcsResponse {
private Integer onePageSize;
private String requestId;
private Integer totalPage;
private Integer currentPage;
private Integer totalResults;
private List<DataItem> data;
public Integer getOnePageSize() {
return this.onePageSize;
}
public void setOnePageSize(Integer onePageSize) {
this.onePageSize = onePageSize;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getTotalPage() {
return this.totalPage;
}
public void setTotalPage(Integer totalPage) {
this.totalPage = totalPage;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
}
public Integer getTotalResults() {
return this.totalResults;
}
public void setTotalResults(Integer totalResults) {
this.totalResults = totalResults;
}
public List<DataItem> getData() {
return this.data;
}
public void setData(List<DataItem> data) {
this.data = data;
}
public static class DataItem {
private String skillGroupName;
private String description;
private String displayName;
private Long skillGroupId;
private Integer channelType;
public String getSkillGroupName() {
return this.skillGroupName;
}
public void setSkillGroupName(String skillGroupName) {
this.skillGroupName = skillGroupName;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getDisplayName() {
return this.displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
public Long getSkillGroupId() {
return this.skillGroupId;
}
public void setSkillGroupId(Long skillGroupId) {
this.skillGroupId = skillGroupId;
}
public Integer getChannelType() {
return this.channelType;
}
public void setChannelType(Integer channelType) {
this.channelType = channelType;
}
}
@Override
public QuerySkillGroupsResponse getInstance(UnmarshallerContext context) {
return QuerySkillGroupsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/QueryTaskDetailRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class QueryTaskDetailRequest extends RpcAcsRequest<QueryTaskDetailResponse> {
private String statusList;
private String endReasonList;
private String departmentIdList;
private String servicerId;
private Integer currentPage;
private String skillGroup;
private String sid;
private String instanceId;
private String outboundTaskId;
private String servicerName;
private Integer pageSize;
private String dnis;
private String ani;
private Long taskId;
private String priorityList;
public QueryTaskDetailRequest() {
super("aiccs", "2019-10-15", "QueryTaskDetail");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getStatusList() {
return this.statusList;
}
public void setStatusList(String statusList) {
this.statusList = statusList;
if(statusList != null){
putQueryParameter("StatusList", statusList);
}
}
public String getEndReasonList() {
return this.endReasonList;
}
public void setEndReasonList(String endReasonList) {
this.endReasonList = endReasonList;
if(endReasonList != null){
putQueryParameter("EndReasonList", endReasonList);
}
}
public String getDepartmentIdList() {
return this.departmentIdList;
}
public void setDepartmentIdList(String departmentIdList) {
this.departmentIdList = departmentIdList;
if(departmentIdList != null){
putQueryParameter("DepartmentIdList", departmentIdList);
}
}
public String getServicerId() {
return this.servicerId;
}
public void setServicerId(String servicerId) {
this.servicerId = servicerId;
if(servicerId != null){
putQueryParameter("ServicerId", servicerId);
}
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putQueryParameter("CurrentPage", currentPage.toString());
}
}
public String getSkillGroup() {
return this.skillGroup;
}
public void setSkillGroup(String skillGroup) {
this.skillGroup = skillGroup;
if(skillGroup != null){
putQueryParameter("SkillGroup", skillGroup);
}
}
public String getSid() {
return this.sid;
}
public void setSid(String sid) {
this.sid = sid;
if(sid != null){
putQueryParameter("Sid", sid);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getOutboundTaskId() {
return this.outboundTaskId;
}
public void setOutboundTaskId(String outboundTaskId) {
this.outboundTaskId = outboundTaskId;
if(outboundTaskId != null){
putQueryParameter("OutboundTaskId", outboundTaskId);
}
}
public String getServicerName() {
return this.servicerName;
}
public void setServicerName(String servicerName) {
this.servicerName = servicerName;
if(servicerName != null){
putQueryParameter("ServicerName", servicerName);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getDnis() {
return this.dnis;
}
public void setDnis(String dnis) {
this.dnis = dnis;
if(dnis != null){
putQueryParameter("Dnis", dnis);
}
}
public String getAni() {
return this.ani;
}
public void setAni(String ani) {
this.ani = ani;
if(ani != null){
putQueryParameter("Ani", ani);
}
}
public Long getTaskId() {
return this.taskId;
}
public void setTaskId(Long taskId) {
this.taskId = taskId;
if(taskId != null){
putQueryParameter("TaskId", taskId.toString());
}
}
public String getPriorityList() {
return this.priorityList;
}
public void setPriorityList(String priorityList) {
this.priorityList = priorityList;
if(priorityList != null){
putQueryParameter("PriorityList", priorityList);
}
}
@Override
public Class<QueryTaskDetailResponse> getResponseClass() {
return QueryTaskDetailResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/QueryTaskDetailResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.QueryTaskDetailResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryTaskDetailResponse extends AcsResponse {
private String requestId;
private String message;
private String httpStatusCode;
private String code;
private String success;
private Data data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(String httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getSuccess() {
return this.success;
}
public void setSuccess(String success) {
this.success = success;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String pageSize;
private String currentPage;
private String totalResults;
private List<ListItem> list;
public String getPageSize() {
return this.pageSize;
}
public void setPageSize(String pageSize) {
this.pageSize = pageSize;
}
public String getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(String currentPage) {
this.currentPage = currentPage;
}
public String getTotalResults() {
return this.totalResults;
}
public void setTotalResults(String totalResults) {
this.totalResults = totalResults;
}
public List<ListItem> getList() {
return this.list;
}
public void setList(List<ListItem> list) {
this.list = list;
}
public static class ListItem {
private Integer status;
private Integer skillGroup;
private Long outboundTaskId;
private Integer priority;
private Integer outboundNum;
private Long gmtModified;
private Long memberId;
private Long buId;
private Long gmtCreate;
private Integer endReason;
private String servicerName;
private String dnis;
private String extAttrs;
private Integer id;
private Long departmentId;
private String retryTime;
private String memberName;
private Long servicerId;
private String ani;
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Integer getSkillGroup() {
return this.skillGroup;
}
public void setSkillGroup(Integer skillGroup) {
this.skillGroup = skillGroup;
}
public Long getOutboundTaskId() {
return this.outboundTaskId;
}
public void setOutboundTaskId(Long outboundTaskId) {
this.outboundTaskId = outboundTaskId;
}
public Integer getPriority() {
return this.priority;
}
public void setPriority(Integer priority) {
this.priority = priority;
}
public Integer getOutboundNum() {
return this.outboundNum;
}
public void setOutboundNum(Integer outboundNum) {
this.outboundNum = outboundNum;
}
public Long getGmtModified() {
return this.gmtModified;
}
public void setGmtModified(Long gmtModified) {
this.gmtModified = gmtModified;
}
public Long getMemberId() {
return this.memberId;
}
public void setMemberId(Long memberId) {
this.memberId = memberId;
}
public Long getBuId() {
return this.buId;
}
public void setBuId(Long buId) {
this.buId = buId;
}
public Long getGmtCreate() {
return this.gmtCreate;
}
public void setGmtCreate(Long gmtCreate) {
this.gmtCreate = gmtCreate;
}
public Integer getEndReason() {
return this.endReason;
}
public void setEndReason(Integer endReason) {
this.endReason = endReason;
}
public String getServicerName() {
return this.servicerName;
}
public void setServicerName(String servicerName) {
this.servicerName = servicerName;
}
public String getDnis() {
return this.dnis;
}
public void setDnis(String dnis) {
this.dnis = dnis;
}
public String getExtAttrs() {
return this.extAttrs;
}
public void setExtAttrs(String extAttrs) {
this.extAttrs = extAttrs;
}
public Integer getId() {
return this.id;
}
public void setId(Integer id) {
this.id = id;
}
public Long getDepartmentId() {
return this.departmentId;
}
public void setDepartmentId(Long departmentId) {
this.departmentId = departmentId;
}
public String getRetryTime() {
return this.retryTime;
}
public void setRetryTime(String retryTime) {
this.retryTime = retryTime;
}
public String getMemberName() {
return this.memberName;
}
public void setMemberName(String memberName) {
this.memberName = memberName;
}
public Long getServicerId() {
return this.servicerId;
}
public void setServicerId(Long servicerId) {
this.servicerId = servicerId;
}
public String getAni() {
return this.ani;
}
public void setAni(String ani) {
this.ani = ani;
}
}
}
@Override
public QueryTaskDetailResponse getInstance(UnmarshallerContext context) {
return QueryTaskDetailResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/QueryTicketsRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class QueryTicketsRequest extends RpcAcsRequest<QueryTicketsResponse> {
private Long srType;
private Long touchId;
private Long dealId;
private Integer currentPage;
private Integer taskStatus;
private String instanceId;
private Long caseId;
private String extra;
private Integer channelType;
private Integer pageSize;
private Integer caseType;
private Integer caseStatus;
private String channelId;
public QueryTicketsRequest() {
super("aiccs", "2019-10-15", "QueryTickets");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getSrType() {
return this.srType;
}
public void setSrType(Long srType) {
this.srType = srType;
if(srType != null){
putBodyParameter("SrType", srType.toString());
}
}
public Long getTouchId() {
return this.touchId;
}
public void setTouchId(Long touchId) {
this.touchId = touchId;
if(touchId != null){
putBodyParameter("TouchId", touchId.toString());
}
}
public Long getDealId() {
return this.dealId;
}
public void setDealId(Long dealId) {
this.dealId = dealId;
if(dealId != null){
putBodyParameter("DealId", dealId.toString());
}
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putBodyParameter("CurrentPage", currentPage.toString());
}
}
public Integer getTaskStatus() {
return this.taskStatus;
}
public void setTaskStatus(Integer taskStatus) {
this.taskStatus = taskStatus;
if(taskStatus != null){
putBodyParameter("TaskStatus", taskStatus.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public Long getCaseId() {
return this.caseId;
}
public void setCaseId(Long caseId) {
this.caseId = caseId;
if(caseId != null){
putBodyParameter("CaseId", caseId.toString());
}
}
public String getExtra() {
return this.extra;
}
public void setExtra(String extra) {
this.extra = extra;
if(extra != null){
putBodyParameter("Extra", extra);
}
}
public Integer getChannelType() {
return this.channelType;
}
public void setChannelType(Integer channelType) {
this.channelType = channelType;
if(channelType != null){
putBodyParameter("ChannelType", channelType.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putBodyParameter("PageSize", pageSize.toString());
}
}
public Integer getCaseType() {
return this.caseType;
}
public void setCaseType(Integer caseType) {
this.caseType = caseType;
if(caseType != null){
putBodyParameter("CaseType", caseType.toString());
}
}
public Integer getCaseStatus() {
return this.caseStatus;
}
public void setCaseStatus(Integer caseStatus) {
this.caseStatus = caseStatus;
if(caseStatus != null){
putBodyParameter("CaseStatus", caseStatus.toString());
}
}
public String getChannelId() {
return this.channelId;
}
public void setChannelId(String channelId) {
this.channelId = channelId;
if(channelId != null){
putBodyParameter("ChannelId", channelId);
}
}
@Override
public Class<QueryTicketsResponse> getResponseClass() {
return QueryTicketsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/QueryTicketsResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.QueryTicketsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryTicketsResponse extends AcsResponse {
private String requestId;
private String message;
private String data;
private String code;
private Boolean success;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public QueryTicketsResponse getInstance(UnmarshallerContext context) {
return QueryTicketsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/QueryTouchListRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class QueryTouchListRequest extends RpcAcsRequest<QueryTouchListResponse> {
private Long firstTimeEnd;
private List<Integer> evaluationStatuss;
private Long firstTimeStart;
private List<Long> queueIds;
private List<Integer> touchTypes;
private List<Long> touchIds;
private List<Long> servicerIds;
private Integer currentPage;
private Long closeTimeStart;
private List<Integer> evaluationLevels;
private List<Integer> evaluationScores;
private String instanceId;
private List<String> servicerNames;
private List<Integer> channelTypes;
private Integer pageSize;
private Long closeTimeEnd;
private List<String> channelIds;
private List<String> memberNames;
private List<Long> memberIds;
public QueryTouchListRequest() {
super("aiccs", "2019-10-15", "QueryTouchList");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getFirstTimeEnd() {
return this.firstTimeEnd;
}
public void setFirstTimeEnd(Long firstTimeEnd) {
this.firstTimeEnd = firstTimeEnd;
if(firstTimeEnd != null){
putBodyParameter("FirstTimeEnd", firstTimeEnd.toString());
}
}
public List<Integer> getEvaluationStatuss() {
return this.evaluationStatuss;
}
public void setEvaluationStatuss(List<Integer> evaluationStatuss) {
this.evaluationStatuss = evaluationStatuss;
if (evaluationStatuss != null) {
for (int i = 0; i < evaluationStatuss.size(); i++) {
putBodyParameter("EvaluationStatus." + (i + 1) , evaluationStatuss.get(i));
}
}
}
public Long getFirstTimeStart() {
return this.firstTimeStart;
}
public void setFirstTimeStart(Long firstTimeStart) {
this.firstTimeStart = firstTimeStart;
if(firstTimeStart != null){
putBodyParameter("FirstTimeStart", firstTimeStart.toString());
}
}
public List<Long> getQueueIds() {
return this.queueIds;
}
public void setQueueIds(List<Long> queueIds) {
this.queueIds = queueIds;
if (queueIds != null) {
for (int i = 0; i < queueIds.size(); i++) {
putBodyParameter("QueueId." + (i + 1) , queueIds.get(i));
}
}
}
public List<Integer> getTouchTypes() {
return this.touchTypes;
}
public void setTouchTypes(List<Integer> touchTypes) {
this.touchTypes = touchTypes;
if (touchTypes != null) {
for (int i = 0; i < touchTypes.size(); i++) {
putBodyParameter("TouchType." + (i + 1) , touchTypes.get(i));
}
}
}
public List<Long> getTouchIds() {
return this.touchIds;
}
public void setTouchIds(List<Long> touchIds) {
this.touchIds = touchIds;
if (touchIds != null) {
for (int i = 0; i < touchIds.size(); i++) {
putBodyParameter("TouchId." + (i + 1) , touchIds.get(i));
}
}
}
public List<Long> getServicerIds() {
return this.servicerIds;
}
public void setServicerIds(List<Long> servicerIds) {
this.servicerIds = servicerIds;
if (servicerIds != null) {
for (int i = 0; i < servicerIds.size(); i++) {
putBodyParameter("ServicerId." + (i + 1) , servicerIds.get(i));
}
}
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
if(currentPage != null){
putBodyParameter("CurrentPage", currentPage.toString());
}
}
public Long getCloseTimeStart() {
return this.closeTimeStart;
}
public void setCloseTimeStart(Long closeTimeStart) {
this.closeTimeStart = closeTimeStart;
if(closeTimeStart != null){
putBodyParameter("CloseTimeStart", closeTimeStart.toString());
}
}
public List<Integer> getEvaluationLevels() {
return this.evaluationLevels;
}
public void setEvaluationLevels(List<Integer> evaluationLevels) {
this.evaluationLevels = evaluationLevels;
if (evaluationLevels != null) {
for (int i = 0; i < evaluationLevels.size(); i++) {
putBodyParameter("EvaluationLevel." + (i + 1) , evaluationLevels.get(i));
}
}
}
public List<Integer> getEvaluationScores() {
return this.evaluationScores;
}
public void setEvaluationScores(List<Integer> evaluationScores) {
this.evaluationScores = evaluationScores;
if (evaluationScores != null) {
for (int i = 0; i < evaluationScores.size(); i++) {
putBodyParameter("EvaluationScore." + (i + 1) , evaluationScores.get(i));
}
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public List<String> getServicerNames() {
return this.servicerNames;
}
public void setServicerNames(List<String> servicerNames) {
this.servicerNames = servicerNames;
if (servicerNames != null) {
for (int i = 0; i < servicerNames.size(); i++) {
putBodyParameter("ServicerName." + (i + 1) , servicerNames.get(i));
}
}
}
public List<Integer> getChannelTypes() {
return this.channelTypes;
}
public void setChannelTypes(List<Integer> channelTypes) {
this.channelTypes = channelTypes;
if (channelTypes != null) {
for (int i = 0; i < channelTypes.size(); i++) {
putBodyParameter("ChannelType." + (i + 1) , channelTypes.get(i));
}
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putBodyParameter("PageSize", pageSize.toString());
}
}
public Long getCloseTimeEnd() {
return this.closeTimeEnd;
}
public void setCloseTimeEnd(Long closeTimeEnd) {
this.closeTimeEnd = closeTimeEnd;
if(closeTimeEnd != null){
putBodyParameter("CloseTimeEnd", closeTimeEnd.toString());
}
}
public List<String> getChannelIds() {
return this.channelIds;
}
public void setChannelIds(List<String> channelIds) {
this.channelIds = channelIds;
if (channelIds != null) {
for (int i = 0; i < channelIds.size(); i++) {
putBodyParameter("ChannelId." + (i + 1) , channelIds.get(i));
}
}
}
public List<String> getMemberNames() {
return this.memberNames;
}
public void setMemberNames(List<String> memberNames) {
this.memberNames = memberNames;
if (memberNames != null) {
for (int i = 0; i < memberNames.size(); i++) {
putBodyParameter("MemberName." + (i + 1) , memberNames.get(i));
}
}
}
public List<Long> getMemberIds() {
return this.memberIds;
}
public void setMemberIds(List<Long> memberIds) {
this.memberIds = memberIds;
if (memberIds != null) {
for (int i = 0; i < memberIds.size(); i++) {
putBodyParameter("MemberId." + (i + 1) , memberIds.get(i));
}
}
}
@Override
public Class<QueryTouchListResponse> getResponseClass() {
return QueryTouchListResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/QueryTouchListResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.QueryTouchListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class QueryTouchListResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private Boolean success;
private ResultData resultData;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public ResultData getResultData() {
return this.resultData;
}
public void setResultData(ResultData resultData) {
this.resultData = resultData;
}
public static class ResultData {
private Boolean empty;
private Integer onePageSize;
private Integer totalPage;
private Integer currentPage;
private Integer previousPage;
private Integer totalResults;
private Integer nextPage;
private List<DataItem> data;
public Boolean getEmpty() {
return this.empty;
}
public void setEmpty(Boolean empty) {
this.empty = empty;
}
public Integer getOnePageSize() {
return this.onePageSize;
}
public void setOnePageSize(Integer onePageSize) {
this.onePageSize = onePageSize;
}
public Integer getTotalPage() {
return this.totalPage;
}
public void setTotalPage(Integer totalPage) {
this.totalPage = totalPage;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
}
public Integer getPreviousPage() {
return this.previousPage;
}
public void setPreviousPage(Integer previousPage) {
this.previousPage = previousPage;
}
public Integer getTotalResults() {
return this.totalResults;
}
public void setTotalResults(Integer totalResults) {
this.totalResults = totalResults;
}
public Integer getNextPage() {
return this.nextPage;
}
public void setNextPage(Integer nextPage) {
this.nextPage = nextPage;
}
public List<DataItem> getData() {
return this.data;
}
public void setData(List<DataItem> data) {
this.data = data;
}
public static class DataItem {
private Long depId;
private Long parentTouchId;
private Long userTouchId;
private Long gmtModified;
private String channelId;
private String commonQueueName;
private String touchId;
private Long memberId;
private String servicerName;
private String feedback;
private Integer touchType;
private String switchUser;
private Integer status;
private Long firstTime;
private Long fromId;
private Long queueId;
private String touchTime;
private Long buId;
private Long toId;
private Long gmtCreate;
private Long closeTime;
private Integer touchEndReason;
private String memberName;
private Long servicerId;
private Integer channelType;
private String touchContent;
private ExtAttrs extAttrs;
public Long getDepId() {
return this.depId;
}
public void setDepId(Long depId) {
this.depId = depId;
}
public Long getParentTouchId() {
return this.parentTouchId;
}
public void setParentTouchId(Long parentTouchId) {
this.parentTouchId = parentTouchId;
}
public Long getUserTouchId() {
return this.userTouchId;
}
public void setUserTouchId(Long userTouchId) {
this.userTouchId = userTouchId;
}
public Long getGmtModified() {
return this.gmtModified;
}
public void setGmtModified(Long gmtModified) {
this.gmtModified = gmtModified;
}
public String getChannelId() {
return this.channelId;
}
public void setChannelId(String channelId) {
this.channelId = channelId;
}
public String getCommonQueueName() {
return this.commonQueueName;
}
public void setCommonQueueName(String commonQueueName) {
this.commonQueueName = commonQueueName;
}
public String getTouchId() {
return this.touchId;
}
public void setTouchId(String touchId) {
this.touchId = touchId;
}
public Long getMemberId() {
return this.memberId;
}
public void setMemberId(Long memberId) {
this.memberId = memberId;
}
public String getServicerName() {
return this.servicerName;
}
public void setServicerName(String servicerName) {
this.servicerName = servicerName;
}
public String getFeedback() {
return this.feedback;
}
public void setFeedback(String feedback) {
this.feedback = feedback;
}
public Integer getTouchType() {
return this.touchType;
}
public void setTouchType(Integer touchType) {
this.touchType = touchType;
}
public String getSwitchUser() {
return this.switchUser;
}
public void setSwitchUser(String switchUser) {
this.switchUser = switchUser;
}
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
public Long getFirstTime() {
return this.firstTime;
}
public void setFirstTime(Long firstTime) {
this.firstTime = firstTime;
}
public Long getFromId() {
return this.fromId;
}
public void setFromId(Long fromId) {
this.fromId = fromId;
}
public Long getQueueId() {
return this.queueId;
}
public void setQueueId(Long queueId) {
this.queueId = queueId;
}
public String getTouchTime() {
return this.touchTime;
}
public void setTouchTime(String touchTime) {
this.touchTime = touchTime;
}
public Long getBuId() {
return this.buId;
}
public void setBuId(Long buId) {
this.buId = buId;
}
public Long getToId() {
return this.toId;
}
public void setToId(Long toId) {
this.toId = toId;
}
public Long getGmtCreate() {
return this.gmtCreate;
}
public void setGmtCreate(Long gmtCreate) {
this.gmtCreate = gmtCreate;
}
public Long getCloseTime() {
return this.closeTime;
}
public void setCloseTime(Long closeTime) {
this.closeTime = closeTime;
}
public Integer getTouchEndReason() {
return this.touchEndReason;
}
public void setTouchEndReason(Integer touchEndReason) {
this.touchEndReason = touchEndReason;
}
public String getMemberName() {
return this.memberName;
}
public void setMemberName(String memberName) {
this.memberName = memberName;
}
public Long getServicerId() {
return this.servicerId;
}
public void setServicerId(Long servicerId) {
this.servicerId = servicerId;
}
public Integer getChannelType() {
return this.channelType;
}
public void setChannelType(Integer channelType) {
this.channelType = channelType;
}
public String getTouchContent() {
return this.touchContent;
}
public void setTouchContent(String touchContent) {
this.touchContent = touchContent;
}
public ExtAttrs getExtAttrs() {
return this.extAttrs;
}
public void setExtAttrs(ExtAttrs extAttrs) {
this.extAttrs = extAttrs;
}
public static class ExtAttrs {
private Integer evaluationScore;
private Integer onlineJoinRespInterval;
private Integer onlineSessionSource;
private Integer evaluationStatus;
private Integer evaluationLevel;
private Integer evaluationSolution;
public Integer getEvaluationScore() {
return this.evaluationScore;
}
public void setEvaluationScore(Integer evaluationScore) {
this.evaluationScore = evaluationScore;
}
public Integer getOnlineJoinRespInterval() {
return this.onlineJoinRespInterval;
}
public void setOnlineJoinRespInterval(Integer onlineJoinRespInterval) {
this.onlineJoinRespInterval = onlineJoinRespInterval;
}
public Integer getOnlineSessionSource() {
return this.onlineSessionSource;
}
public void setOnlineSessionSource(Integer onlineSessionSource) {
this.onlineSessionSource = onlineSessionSource;
}
public Integer getEvaluationStatus() {
return this.evaluationStatus;
}
public void setEvaluationStatus(Integer evaluationStatus) {
this.evaluationStatus = evaluationStatus;
}
public Integer getEvaluationLevel() {
return this.evaluationLevel;
}
public void setEvaluationLevel(Integer evaluationLevel) {
this.evaluationLevel = evaluationLevel;
}
public Integer getEvaluationSolution() {
return this.evaluationSolution;
}
public void setEvaluationSolution(Integer evaluationSolution) {
this.evaluationSolution = evaluationSolution;
}
}
}
}
@Override
public QueryTouchListResponse getInstance(UnmarshallerContext context) {
return QueryTouchListResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/RemoveSkillGroupRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class RemoveSkillGroupRequest extends RpcAcsRequest<RemoveSkillGroupResponse> {
private String instanceId;
private String clientToken;
private String skillGroupId;
public RemoveSkillGroupRequest() {
super("aiccs", "2019-10-15", "RemoveSkillGroup");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putBodyParameter("ClientToken", clientToken);
}
}
public String getSkillGroupId() {
return this.skillGroupId;
}
public void setSkillGroupId(String skillGroupId) {
this.skillGroupId = skillGroupId;
if(skillGroupId != null){
putBodyParameter("SkillGroupId", skillGroupId);
}
}
@Override
public Class<RemoveSkillGroupResponse> getResponseClass() {
return RemoveSkillGroupResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/RemoveSkillGroupResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.RemoveSkillGroupResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class RemoveSkillGroupResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private Boolean success;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public RemoveSkillGroupResponse getInstance(UnmarshallerContext context) {
return RemoveSkillGroupResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/RestartOutboundTaskRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class RestartOutboundTaskRequest extends RpcAcsRequest<RestartOutboundTaskResponse> {
private String instanceId;
private Long outboundTaskId;
public RestartOutboundTaskRequest() {
super("aiccs", "2019-10-15", "RestartOutboundTask");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Long getOutboundTaskId() {
return this.outboundTaskId;
}
public void setOutboundTaskId(Long outboundTaskId) {
this.outboundTaskId = outboundTaskId;
if(outboundTaskId != null){
putQueryParameter("OutboundTaskId", outboundTaskId.toString());
}
}
@Override
public Class<RestartOutboundTaskResponse> getResponseClass() {
return RestartOutboundTaskResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/RestartOutboundTaskResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.RestartOutboundTaskResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class RestartOutboundTaskResponse extends AcsResponse {
private String requestId;
private String message;
private String data;
private String code;
private Boolean success;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public RestartOutboundTaskResponse getInstance(UnmarshallerContext context) {
return RestartOutboundTaskResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/SendCcoSmartCallOperateRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class SendCcoSmartCallOperateRequest extends RpcAcsRequest<SendCcoSmartCallOperateResponse> {
private String callId;
private Long resourceOwnerId;
private String param;
private String resourceOwnerAccount;
private String prodCode;
private Long ownerId;
private String command;
public SendCcoSmartCallOperateRequest() {
super("aiccs", "2019-10-15", "SendCcoSmartCallOperate");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getCallId() {
return this.callId;
}
public void setCallId(String callId) {
this.callId = callId;
if(callId != null){
putQueryParameter("CallId", callId);
}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getParam() {
return this.param;
}
public void setParam(String param) {
this.param = param;
if(param != null){
putQueryParameter("Param", param);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getProdCode() {
return this.prodCode;
}
public void setProdCode(String prodCode) {
this.prodCode = prodCode;
if(prodCode != null){
putQueryParameter("ProdCode", prodCode);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getCommand() {
return this.command;
}
public void setCommand(String command) {
this.command = command;
if(command != null){
putQueryParameter("Command", command);
}
}
@Override
public Class<SendCcoSmartCallOperateResponse> getResponseClass() {
return SendCcoSmartCallOperateResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/SendCcoSmartCallOperateResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.SendCcoSmartCallOperateResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class SendCcoSmartCallOperateResponse extends AcsResponse {
private String requestId;
private String message;
private String data;
private String code;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
@Override
public SendCcoSmartCallOperateResponse getInstance(UnmarshallerContext context) {
return SendCcoSmartCallOperateResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/SendCcoSmartCallRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class SendCcoSmartCallRequest extends RpcAcsRequest<SendCcoSmartCallResponse> {
private Long resourceOwnerId;
private String voiceCodeParam;
private String asrVocabularyId;
private Boolean earlyMediaAsr;
private Integer speed;
private String asrAlsAmId;
private String asrBaseId;
private Integer sessionTimeout;
private String dynamicId;
private String calledNumber;
private Integer ttsSpeed;
private String voiceCode;
private String calledShowNumber;
private Integer actionCodeTimeBreak;
private Boolean ttsConf;
private Boolean actionCodeBreak;
private String resourceOwnerAccount;
private String prodCode;
private Integer playTimes;
private Boolean recordFlag;
private Long ownerId;
private Integer ttsVolume;
private Integer volume;
private Integer muteTime;
private String outId;
private String asrModelId;
private Integer pauseTime;
private String ttsStyle;
public SendCcoSmartCallRequest() {
super("aiccs", "2019-10-15", "SendCcoSmartCall");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getVoiceCodeParam() {
return this.voiceCodeParam;
}
public void setVoiceCodeParam(String voiceCodeParam) {
this.voiceCodeParam = voiceCodeParam;
if(voiceCodeParam != null){
putQueryParameter("VoiceCodeParam", voiceCodeParam);
}
}
public String getAsrVocabularyId() {
return this.asrVocabularyId;
}
public void setAsrVocabularyId(String asrVocabularyId) {
this.asrVocabularyId = asrVocabularyId;
if(asrVocabularyId != null){
putQueryParameter("AsrVocabularyId", asrVocabularyId);
}
}
public Boolean getEarlyMediaAsr() {
return this.earlyMediaAsr;
}
public void setEarlyMediaAsr(Boolean earlyMediaAsr) {
this.earlyMediaAsr = earlyMediaAsr;
if(earlyMediaAsr != null){
putQueryParameter("EarlyMediaAsr", earlyMediaAsr.toString());
}
}
public Integer getSpeed() {
return this.speed;
}
public void setSpeed(Integer speed) {
this.speed = speed;
if(speed != null){
putQueryParameter("Speed", speed.toString());
}
}
public String getAsrAlsAmId() {
return this.asrAlsAmId;
}
public void setAsrAlsAmId(String asrAlsAmId) {
this.asrAlsAmId = asrAlsAmId;
if(asrAlsAmId != null){
putQueryParameter("AsrAlsAmId", asrAlsAmId);
}
}
public String getAsrBaseId() {
return this.asrBaseId;
}
public void setAsrBaseId(String asrBaseId) {
this.asrBaseId = asrBaseId;
if(asrBaseId != null){
putQueryParameter("AsrBaseId", asrBaseId);
}
}
public Integer getSessionTimeout() {
return this.sessionTimeout;
}
public void setSessionTimeout(Integer sessionTimeout) {
this.sessionTimeout = sessionTimeout;
if(sessionTimeout != null){
putQueryParameter("SessionTimeout", sessionTimeout.toString());
}
}
public String getDynamicId() {
return this.dynamicId;
}
public void setDynamicId(String dynamicId) {
this.dynamicId = dynamicId;
if(dynamicId != null){
putQueryParameter("DynamicId", dynamicId);
}
}
public String getCalledNumber() {
return this.calledNumber;
}
public void setCalledNumber(String calledNumber) {
this.calledNumber = calledNumber;
if(calledNumber != null){
putQueryParameter("CalledNumber", calledNumber);
}
}
public Integer getTtsSpeed() {
return this.ttsSpeed;
}
public void setTtsSpeed(Integer ttsSpeed) {
this.ttsSpeed = ttsSpeed;
if(ttsSpeed != null){
putQueryParameter("TtsSpeed", ttsSpeed.toString());
}
}
public String getVoiceCode() {
return this.voiceCode;
}
public void setVoiceCode(String voiceCode) {
this.voiceCode = voiceCode;
if(voiceCode != null){
putQueryParameter("VoiceCode", voiceCode);
}
}
public String getCalledShowNumber() {
return this.calledShowNumber;
}
public void setCalledShowNumber(String calledShowNumber) {
this.calledShowNumber = calledShowNumber;
if(calledShowNumber != null){
putQueryParameter("CalledShowNumber", calledShowNumber);
}
}
public Integer getActionCodeTimeBreak() {
return this.actionCodeTimeBreak;
}
public void setActionCodeTimeBreak(Integer actionCodeTimeBreak) {
this.actionCodeTimeBreak = actionCodeTimeBreak;
if(actionCodeTimeBreak != null){
putQueryParameter("ActionCodeTimeBreak", actionCodeTimeBreak.toString());
}
}
public Boolean getTtsConf() {
return this.ttsConf;
}
public void setTtsConf(Boolean ttsConf) {
this.ttsConf = ttsConf;
if(ttsConf != null){
putQueryParameter("TtsConf", ttsConf.toString());
}
}
public Boolean getActionCodeBreak() {
return this.actionCodeBreak;
}
public void setActionCodeBreak(Boolean actionCodeBreak) {
this.actionCodeBreak = actionCodeBreak;
if(actionCodeBreak != null){
putQueryParameter("ActionCodeBreak", actionCodeBreak.toString());
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getProdCode() {
return this.prodCode;
}
public void setProdCode(String prodCode) {
this.prodCode = prodCode;
if(prodCode != null){
putQueryParameter("ProdCode", prodCode);
}
}
public Integer getPlayTimes() {
return this.playTimes;
}
public void setPlayTimes(Integer playTimes) {
this.playTimes = playTimes;
if(playTimes != null){
putQueryParameter("PlayTimes", playTimes.toString());
}
}
public Boolean getRecordFlag() {
return this.recordFlag;
}
public void setRecordFlag(Boolean recordFlag) {
this.recordFlag = recordFlag;
if(recordFlag != null){
putQueryParameter("RecordFlag", recordFlag.toString());
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public Integer getTtsVolume() {
return this.ttsVolume;
}
public void setTtsVolume(Integer ttsVolume) {
this.ttsVolume = ttsVolume;
if(ttsVolume != null){
putQueryParameter("TtsVolume", ttsVolume.toString());
}
}
public Integer getVolume() {
return this.volume;
}
public void setVolume(Integer volume) {
this.volume = volume;
if(volume != null){
putQueryParameter("Volume", volume.toString());
}
}
public Integer getMuteTime() {
return this.muteTime;
}
public void setMuteTime(Integer muteTime) {
this.muteTime = muteTime;
if(muteTime != null){
putQueryParameter("MuteTime", muteTime.toString());
}
}
public String getOutId() {
return this.outId;
}
public void setOutId(String outId) {
this.outId = outId;
if(outId != null){
putQueryParameter("OutId", outId);
}
}
public String getAsrModelId() {
return this.asrModelId;
}
public void setAsrModelId(String asrModelId) {
this.asrModelId = asrModelId;
if(asrModelId != null){
putQueryParameter("AsrModelId", asrModelId);
}
}
public Integer getPauseTime() {
return this.pauseTime;
}
public void setPauseTime(Integer pauseTime) {
this.pauseTime = pauseTime;
if(pauseTime != null){
putQueryParameter("PauseTime", pauseTime.toString());
}
}
public String getTtsStyle() {
return this.ttsStyle;
}
public void setTtsStyle(String ttsStyle) {
this.ttsStyle = ttsStyle;
if(ttsStyle != null){
putQueryParameter("TtsStyle", ttsStyle);
}
}
@Override
public Class<SendCcoSmartCallResponse> getResponseClass() {
return SendCcoSmartCallResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/SendCcoSmartCallResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.SendCcoSmartCallResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class SendCcoSmartCallResponse extends AcsResponse {
private String requestId;
private String message;
private String data;
private String code;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
@Override
public SendCcoSmartCallResponse getInstance(UnmarshallerContext context) {
return SendCcoSmartCallResponseUnmarshaller.unmarshall(this, context);
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/SendHotlineHeartBeatRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class SendHotlineHeartBeatRequest extends RpcAcsRequest<SendHotlineHeartBeatResponse> {
private String clientToken;
private String instanceId;
private String accountName;
private String token;
public SendHotlineHeartBeatRequest() {
super("aiccs", "2019-10-15", "SendHotlineHeartBeat");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putBodyParameter("ClientToken", clientToken);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public String getAccountName() {
return this.accountName;
}
public void setAccountName(String accountName) {
this.accountName = accountName;
if(accountName != null){
putBodyParameter("AccountName", accountName);
}
}
public String getToken() {
return this.token;
}
public void setToken(String token) {
this.token = token;
if(token != null){
putBodyParameter("Token", token);
}
}
@Override
public Class<SendHotlineHeartBeatResponse> getResponseClass() {
return SendHotlineHeartBeatResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/SendHotlineHeartBeatResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.SendHotlineHeartBeatResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class SendHotlineHeartBeatResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private Boolean success;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public SendHotlineHeartBeatResponse getInstance(UnmarshallerContext context) {
return SendHotlineHeartBeatResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/StartCallRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class StartCallRequest extends RpcAcsRequest<StartCallResponse> {
private String clientToken;
private String instanceId;
private String accountName;
private String caller;
private String callee;
public StartCallRequest() {
super("aiccs", "2019-10-15", "StartCall");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putBodyParameter("ClientToken", clientToken);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public String getAccountName() {
return this.accountName;
}
public void setAccountName(String accountName) {
this.accountName = accountName;
if(accountName != null){
putBodyParameter("AccountName", accountName);
}
}
public String getCaller() {
return this.caller;
}
public void setCaller(String caller) {
this.caller = caller;
if(caller != null){
putBodyParameter("Caller", caller);
}
}
public String getCallee() {
return this.callee;
}
public void setCallee(String callee) {
this.callee = callee;
if(callee != null){
putBodyParameter("Callee", callee);
}
}
@Override
public Class<StartCallResponse> getResponseClass() {
return StartCallResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/StartCallResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.StartCallResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class StartCallResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private Boolean success;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public StartCallResponse getInstance(UnmarshallerContext context) {
return StartCallResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/StartCallV2Request.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class StartCallV2Request extends RpcAcsRequest<StartCallV2Response> {
private String clientToken;
private String instanceId;
private String accountName;
private String caller;
private String callee;
public StartCallV2Request() {
super("aiccs", "2019-10-15", "StartCallV2");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putBodyParameter("ClientToken", clientToken);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public String getAccountName() {
return this.accountName;
}
public void setAccountName(String accountName) {
this.accountName = accountName;
if(accountName != null){
putBodyParameter("AccountName", accountName);
}
}
public String getCaller() {
return this.caller;
}
public void setCaller(String caller) {
this.caller = caller;
if(caller != null){
putBodyParameter("Caller", caller);
}
}
public String getCallee() {
return this.callee;
}
public void setCallee(String callee) {
this.callee = callee;
if(callee != null){
putBodyParameter("Callee", callee);
}
}
@Override
public Class<StartCallV2Response> getResponseClass() {
return StartCallV2Response.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/StartCallV2Response.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.StartCallV2ResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class StartCallV2Response extends AcsResponse {
private String requestId;
private String message;
private String code;
private Boolean success;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public StartCallV2Response getInstance(UnmarshallerContext context) {
return StartCallV2ResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/StartChatWorkRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class StartChatWorkRequest extends RpcAcsRequest<StartChatWorkResponse> {
private String instanceId;
private String accountName;
public StartChatWorkRequest() {
super("aiccs", "2019-10-15", "StartChatWork");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public String getAccountName() {
return this.accountName;
}
public void setAccountName(String accountName) {
this.accountName = accountName;
if(accountName != null){
putBodyParameter("AccountName", accountName);
}
}
@Override
public Class<StartChatWorkResponse> getResponseClass() {
return StartChatWorkResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/StartChatWorkResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.StartChatWorkResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class StartChatWorkResponse extends AcsResponse {
private String requestId;
private String message;
private Integer httpStatusCode;
private String data;
private String code;
private Boolean success;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public StartChatWorkResponse getInstance(UnmarshallerContext context) {
return StartChatWorkResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/StartHotlineServiceRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class StartHotlineServiceRequest extends RpcAcsRequest<StartHotlineServiceResponse> {
private String clientToken;
private String instanceId;
private String accountName;
public StartHotlineServiceRequest() {
super("aiccs", "2019-10-15", "StartHotlineService");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putBodyParameter("ClientToken", clientToken);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public String getAccountName() {
return this.accountName;
}
public void setAccountName(String accountName) {
this.accountName = accountName;
if(accountName != null){
putBodyParameter("AccountName", accountName);
}
}
@Override
public Class<StartHotlineServiceResponse> getResponseClass() {
return StartHotlineServiceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/StartHotlineServiceResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.StartHotlineServiceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class StartHotlineServiceResponse extends AcsResponse {
private String requestId;
private String message;
private String data;
private String code;
private Boolean success;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public StartHotlineServiceResponse getInstance(UnmarshallerContext context) {
return StartHotlineServiceResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/StartMicroOutboundRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class StartMicroOutboundRequest extends RpcAcsRequest<StartMicroOutboundResponse> {
private Long resourceOwnerId;
private String accountType;
private String accountId;
private String appName;
private String commandCode;
private String calledNumber;
private String extInfo;
private String resourceOwnerAccount;
private String prodCode;
private Long ownerId;
private String callingNumber;
public StartMicroOutboundRequest() {
super("aiccs", "2019-10-15", "StartMicroOutbound");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public Long getResourceOwnerId() {
return this.resourceOwnerId;
}
public void setResourceOwnerId(Long resourceOwnerId) {
this.resourceOwnerId = resourceOwnerId;
if(resourceOwnerId != null){
putQueryParameter("ResourceOwnerId", resourceOwnerId.toString());
}
}
public String getAccountType() {
return this.accountType;
}
public void setAccountType(String accountType) {
this.accountType = accountType;
if(accountType != null){
putQueryParameter("AccountType", accountType);
}
}
public String getAccountId() {
return this.accountId;
}
public void setAccountId(String accountId) {
this.accountId = accountId;
if(accountId != null){
putQueryParameter("AccountId", accountId);
}
}
public String getAppName() {
return this.appName;
}
public void setAppName(String appName) {
this.appName = appName;
if(appName != null){
putQueryParameter("AppName", appName);
}
}
public String getCommandCode() {
return this.commandCode;
}
public void setCommandCode(String commandCode) {
this.commandCode = commandCode;
if(commandCode != null){
putQueryParameter("CommandCode", commandCode);
}
}
public String getCalledNumber() {
return this.calledNumber;
}
public void setCalledNumber(String calledNumber) {
this.calledNumber = calledNumber;
if(calledNumber != null){
putQueryParameter("CalledNumber", calledNumber);
}
}
public String getExtInfo() {
return this.extInfo;
}
public void setExtInfo(String extInfo) {
this.extInfo = extInfo;
if(extInfo != null){
putQueryParameter("ExtInfo", extInfo);
}
}
public String getResourceOwnerAccount() {
return this.resourceOwnerAccount;
}
public void setResourceOwnerAccount(String resourceOwnerAccount) {
this.resourceOwnerAccount = resourceOwnerAccount;
if(resourceOwnerAccount != null){
putQueryParameter("ResourceOwnerAccount", resourceOwnerAccount);
}
}
public String getProdCode() {
return this.prodCode;
}
public void setProdCode(String prodCode) {
this.prodCode = prodCode;
if(prodCode != null){
putQueryParameter("ProdCode", prodCode);
}
}
public Long getOwnerId() {
return this.ownerId;
}
public void setOwnerId(Long ownerId) {
this.ownerId = ownerId;
if(ownerId != null){
putQueryParameter("OwnerId", ownerId.toString());
}
}
public String getCallingNumber() {
return this.callingNumber;
}
public void setCallingNumber(String callingNumber) {
this.callingNumber = callingNumber;
if(callingNumber != null){
putQueryParameter("CallingNumber", callingNumber);
}
}
@Override
public Class<StartMicroOutboundResponse> getResponseClass() {
return StartMicroOutboundResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/StartMicroOutboundResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.StartMicroOutboundResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class StartMicroOutboundResponse extends AcsResponse {
private String invokeCreateTime;
private String message;
private String requestId;
private String invokeCmdId;
private String customerInfo;
private String code;
public String getInvokeCreateTime() {
return this.invokeCreateTime;
}
public void setInvokeCreateTime(String invokeCreateTime) {
this.invokeCreateTime = invokeCreateTime;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getInvokeCmdId() {
return this.invokeCmdId;
}
public void setInvokeCmdId(String invokeCmdId) {
this.invokeCmdId = invokeCmdId;
}
public String getCustomerInfo() {
return this.customerInfo;
}
public void setCustomerInfo(String customerInfo) {
this.customerInfo = customerInfo;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
@Override
public StartMicroOutboundResponse getInstance(UnmarshallerContext context) {
return StartMicroOutboundResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/SuspendHotlineServiceRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class SuspendHotlineServiceRequest extends RpcAcsRequest<SuspendHotlineServiceResponse> {
private String clientToken;
private String instanceId;
private String accountName;
private Integer type;
public SuspendHotlineServiceRequest() {
super("aiccs", "2019-10-15", "SuspendHotlineService");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putBodyParameter("ClientToken", clientToken);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public String getAccountName() {
return this.accountName;
}
public void setAccountName(String accountName) {
this.accountName = accountName;
if(accountName != null){
putBodyParameter("AccountName", accountName);
}
}
public Integer getType() {
return this.type;
}
public void setType(Integer type) {
this.type = type;
if(type != null){
putBodyParameter("Type", type.toString());
}
}
@Override
public Class<SuspendHotlineServiceResponse> getResponseClass() {
return SuspendHotlineServiceResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/SuspendHotlineServiceResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.SuspendHotlineServiceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class SuspendHotlineServiceResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private Boolean success;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public SuspendHotlineServiceResponse getInstance(UnmarshallerContext context) {
return SuspendHotlineServiceResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/SuspendOutboundTaskRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class SuspendOutboundTaskRequest extends RpcAcsRequest<SuspendOutboundTaskResponse> {
private String instanceId;
private Long outboundTaskId;
public SuspendOutboundTaskRequest() {
super("aiccs", "2019-10-15", "SuspendOutboundTask");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Long getOutboundTaskId() {
return this.outboundTaskId;
}
public void setOutboundTaskId(Long outboundTaskId) {
this.outboundTaskId = outboundTaskId;
if(outboundTaskId != null){
putQueryParameter("OutboundTaskId", outboundTaskId.toString());
}
}
@Override
public Class<SuspendOutboundTaskResponse> getResponseClass() {
return SuspendOutboundTaskResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/SuspendOutboundTaskResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.SuspendOutboundTaskResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class SuspendOutboundTaskResponse extends AcsResponse {
private String requestId;
private String message;
private String data;
private String code;
private Boolean success;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public SuspendOutboundTaskResponse getInstance(UnmarshallerContext context) {
return SuspendOutboundTaskResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/TransferCallToSkillGroupRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class TransferCallToSkillGroupRequest extends RpcAcsRequest<TransferCallToSkillGroupResponse> {
private String clientToken;
private String instanceId;
private String accountName;
private Long skillGroupId;
private String callId;
private String jobId;
private String connectionId;
private String holdConnectionId;
private Integer type;
private Boolean isSingleTransfer;
public TransferCallToSkillGroupRequest() {
super("aiccs", "2019-10-15", "TransferCallToSkillGroup");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putBodyParameter("ClientToken", clientToken);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public String getAccountName() {
return this.accountName;
}
public void setAccountName(String accountName) {
this.accountName = accountName;
if(accountName != null){
putBodyParameter("AccountName", accountName);
}
}
public Long getSkillGroupId() {
return this.skillGroupId;
}
public void setSkillGroupId(Long skillGroupId) {
this.skillGroupId = skillGroupId;
if(skillGroupId != null){
putBodyParameter("SkillGroupId", skillGroupId.toString());
}
}
public String getCallId() {
return this.callId;
}
public void setCallId(String callId) {
this.callId = callId;
if(callId != null){
putBodyParameter("CallId", callId);
}
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
if(jobId != null){
putBodyParameter("JobId", jobId);
}
}
public String getConnectionId() {
return this.connectionId;
}
public void setConnectionId(String connectionId) {
this.connectionId = connectionId;
if(connectionId != null){
putBodyParameter("ConnectionId", connectionId);
}
}
public String getHoldConnectionId() {
return this.holdConnectionId;
}
public void setHoldConnectionId(String holdConnectionId) {
this.holdConnectionId = holdConnectionId;
if(holdConnectionId != null){
putBodyParameter("HoldConnectionId", holdConnectionId);
}
}
public Integer getType() {
return this.type;
}
public void setType(Integer type) {
this.type = type;
if(type != null){
putBodyParameter("Type", type.toString());
}
}
public Boolean getIsSingleTransfer() {
return this.isSingleTransfer;
}
public void setIsSingleTransfer(Boolean isSingleTransfer) {
this.isSingleTransfer = isSingleTransfer;
if(isSingleTransfer != null){
putBodyParameter("IsSingleTransfer", isSingleTransfer.toString());
}
}
@Override
public Class<TransferCallToSkillGroupResponse> getResponseClass() {
return TransferCallToSkillGroupResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/TransferCallToSkillGroupResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.TransferCallToSkillGroupResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class TransferCallToSkillGroupResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private Boolean success;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public TransferCallToSkillGroupResponse getInstance(UnmarshallerContext context) {
return TransferCallToSkillGroupResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/UpdateAgentRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateAgentRequest extends RpcAcsRequest<UpdateAgentResponse> {
private String clientToken;
private String instanceId;
private String accountName;
private String displayName;
private List<Long> skillGroupIds;
private List<Long> skillGroupIdLists;
public UpdateAgentRequest() {
super("aiccs", "2019-10-15", "UpdateAgent");
setMethod(MethodType.PUT);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putBodyParameter("ClientToken", clientToken);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public String getAccountName() {
return this.accountName;
}
public void setAccountName(String accountName) {
this.accountName = accountName;
if(accountName != null){
putBodyParameter("AccountName", accountName);
}
}
public String getDisplayName() {
return this.displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
if(displayName != null){
putBodyParameter("DisplayName", displayName);
}
}
public List<Long> getSkillGroupIds() {
return this.skillGroupIds;
}
public void setSkillGroupIds(List<Long> skillGroupIds) {
this.skillGroupIds = skillGroupIds;
if (skillGroupIds != null) {
for (int i = 0; i < skillGroupIds.size(); i++) {
putBodyParameter("SkillGroupId." + (i + 1) , skillGroupIds.get(i));
}
}
}
public List<Long> getSkillGroupIdLists() {
return this.skillGroupIdLists;
}
public void setSkillGroupIdLists(List<Long> skillGroupIdLists) {
this.skillGroupIdLists = skillGroupIdLists;
if (skillGroupIdLists != null) {
for (int i = 0; i < skillGroupIdLists.size(); i++) {
putBodyParameter("SkillGroupIdList." + (i + 1) , skillGroupIdLists.get(i));
}
}
}
@Override
public Class<UpdateAgentResponse> getResponseClass() {
return UpdateAgentResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/UpdateAgentResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.UpdateAgentResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateAgentResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private Boolean success;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public UpdateAgentResponse getInstance(UnmarshallerContext context) {
return UpdateAgentResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/UpdateOuterAccountRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateOuterAccountRequest extends RpcAcsRequest<UpdateOuterAccountResponse> {
private String ext;
private String outerAccountName;
private String outerDepartmentId;
private String avatar;
private String outerAccountType;
private String realName;
private String outerDepartmentType;
private String outerGroupIds;
private String outerGroupType;
private String outerAccountId;
public UpdateOuterAccountRequest() {
super("aiccs", "2019-10-15", "UpdateOuterAccount");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getExt() {
return this.ext;
}
public void setExt(String ext) {
this.ext = ext;
if(ext != null){
putQueryParameter("Ext", ext);
}
}
public String getOuterAccountName() {
return this.outerAccountName;
}
public void setOuterAccountName(String outerAccountName) {
this.outerAccountName = outerAccountName;
if(outerAccountName != null){
putQueryParameter("OuterAccountName", outerAccountName);
}
}
public String getOuterDepartmentId() {
return this.outerDepartmentId;
}
public void setOuterDepartmentId(String outerDepartmentId) {
this.outerDepartmentId = outerDepartmentId;
if(outerDepartmentId != null){
putQueryParameter("OuterDepartmentId", outerDepartmentId);
}
}
public String getAvatar() {
return this.avatar;
}
public void setAvatar(String avatar) {
this.avatar = avatar;
if(avatar != null){
putQueryParameter("Avatar", avatar);
}
}
public String getOuterAccountType() {
return this.outerAccountType;
}
public void setOuterAccountType(String outerAccountType) {
this.outerAccountType = outerAccountType;
if(outerAccountType != null){
putQueryParameter("OuterAccountType", outerAccountType);
}
}
public String getRealName() {
return this.realName;
}
public void setRealName(String realName) {
this.realName = realName;
if(realName != null){
putQueryParameter("RealName", realName);
}
}
public String getOuterDepartmentType() {
return this.outerDepartmentType;
}
public void setOuterDepartmentType(String outerDepartmentType) {
this.outerDepartmentType = outerDepartmentType;
if(outerDepartmentType != null){
putQueryParameter("OuterDepartmentType", outerDepartmentType);
}
}
public String getOuterGroupIds() {
return this.outerGroupIds;
}
public void setOuterGroupIds(String outerGroupIds) {
this.outerGroupIds = outerGroupIds;
if(outerGroupIds != null){
putQueryParameter("OuterGroupIds", outerGroupIds);
}
}
public String getOuterGroupType() {
return this.outerGroupType;
}
public void setOuterGroupType(String outerGroupType) {
this.outerGroupType = outerGroupType;
if(outerGroupType != null){
putQueryParameter("OuterGroupType", outerGroupType);
}
}
public String getOuterAccountId() {
return this.outerAccountId;
}
public void setOuterAccountId(String outerAccountId) {
this.outerAccountId = outerAccountId;
if(outerAccountId != null){
putQueryParameter("OuterAccountId", outerAccountId);
}
}
@Override
public Class<UpdateOuterAccountResponse> getResponseClass() {
return UpdateOuterAccountResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/UpdateOuterAccountResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.UpdateOuterAccountResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class UpdateOuterAccountResponse extends AcsResponse {
private String requestId;
private String message;
private String data;
private String code;
private Boolean success;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
@Override
public UpdateOuterAccountResponse getInstance(UnmarshallerContext context) {
return UpdateOuterAccountResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model
|
java-sources/com/aliyun/aliyun-java-sdk-aiccs/1.2.1/com/aliyuncs/aiccs/model/v20191015/UpdateSkillGroupRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.aiccs.model.v20191015;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.aiccs.Endpoint;
/**
* @author auto create
* @version
*/
public class UpdateSkillGroupRequest extends RpcAcsRequest<UpdateSkillGroupResponse> {
private String instanceId;
private String clientToken;
private Long skillGroupId;
private String displayName;
private String skillGroupName;
private String description;
public UpdateSkillGroupRequest() {
super("aiccs", "2019-10-15", "UpdateSkillGroup");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getClientToken() {
return this.clientToken;
}
public void setClientToken(String clientToken) {
this.clientToken = clientToken;
if(clientToken != null){
putQueryParameter("ClientToken", clientToken);
}
}
public Long getSkillGroupId() {
return this.skillGroupId;
}
public void setSkillGroupId(Long skillGroupId) {
this.skillGroupId = skillGroupId;
if(skillGroupId != null){
putQueryParameter("SkillGroupId", skillGroupId.toString());
}
}
public String getDisplayName() {
return this.displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
if(displayName != null){
putQueryParameter("DisplayName", displayName);
}
}
public String getSkillGroupName() {
return this.skillGroupName;
}
public void setSkillGroupName(String skillGroupName) {
this.skillGroupName = skillGroupName;
if(skillGroupName != null){
putQueryParameter("SkillGroupName", skillGroupName);
}
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
if(description != null){
putQueryParameter("Description", description);
}
}
@Override
public Class<UpdateSkillGroupResponse> getResponseClass() {
return UpdateSkillGroupResponse.class;
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.