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/ChangeChatAgentStatusResponse.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.ChangeChatAgentStatusResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ChangeChatAgentStatusResponse 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 ChangeChatAgentStatusResponse getInstance(UnmarshallerContext context) {
return ChangeChatAgentStatusResponseUnmarshaller.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/ChangeQualityProjectStatusRequest.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 ChangeQualityProjectStatusRequest extends RpcAcsRequest<ChangeQualityProjectStatusResponse> {
private String instanceId;
private Long projectId;
private Integer status;
public ChangeQualityProjectStatusRequest() {
super("aiccs", "2019-10-15", "ChangeQualityProjectStatus");
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 getProjectId() {
return this.projectId;
}
public void setProjectId(Long projectId) {
this.projectId = projectId;
if(projectId != null){
putQueryParameter("ProjectId", projectId.toString());
}
}
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
if(status != null){
putQueryParameter("Status", status.toString());
}
}
@Override
public Class<ChangeQualityProjectStatusResponse> getResponseClass() {
return ChangeQualityProjectStatusResponse.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/ChangeQualityProjectStatusResponse.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.ChangeQualityProjectStatusResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ChangeQualityProjectStatusResponse 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 ChangeQualityProjectStatusResponse getInstance(UnmarshallerContext context) {
return ChangeQualityProjectStatusResponseUnmarshaller.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/CreateAgentRequest.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 CreateAgentRequest extends RpcAcsRequest<CreateAgentResponse> {
private String clientToken;
private String instanceId;
private String accountName;
private String displayName;
private List<Long> skillGroupIds;
private List<Long> skillGroupIdLists;
public CreateAgentRequest() {
super("aiccs", "2019-10-15", "CreateAgent");
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 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<CreateAgentResponse> getResponseClass() {
return CreateAgentResponse.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/CreateAgentResponse.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.CreateAgentResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateAgentResponse extends AcsResponse {
private String requestId;
private String message;
private Long 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 Long getData() {
return this.data;
}
public void setData(Long 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 CreateAgentResponse getInstance(UnmarshallerContext context) {
return CreateAgentResponseUnmarshaller.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/CreateOutboundTaskRequest.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 CreateOutboundTaskRequest extends RpcAcsRequest<CreateOutboundTaskResponse> {
private Integer taskType;
private String extAttrs;
private Long departmentId;
private String taskName;
private String description;
private String endTime;
private String startTime;
private String startDate;
private String groupName;
private Long skillGroup;
private Integer retryInterval;
private String endDate;
private String instanceId;
private String callInfos;
private Integer model;
private String ani;
private Integer retryTime;
public CreateOutboundTaskRequest() {
super("aiccs", "2019-10-15", "CreateOutboundTask");
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 getExtAttrs() {
return this.extAttrs;
}
public void setExtAttrs(String extAttrs) {
this.extAttrs = extAttrs;
if(extAttrs != null){
putQueryParameter("ExtAttrs", extAttrs);
}
}
public Long getDepartmentId() {
return this.departmentId;
}
public void setDepartmentId(Long departmentId) {
this.departmentId = departmentId;
if(departmentId != null){
putQueryParameter("DepartmentId", departmentId.toString());
}
}
public String getTaskName() {
return this.taskName;
}
public void setTaskName(String taskName) {
this.taskName = taskName;
if(taskName != null){
putQueryParameter("TaskName", taskName);
}
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
if(description != null){
putQueryParameter("Description", description);
}
}
public String getEndTime() {
return this.endTime;
}
public void setEndTime(String endTime) {
this.endTime = endTime;
if(endTime != null){
putQueryParameter("EndTime", endTime);
}
}
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 Integer getRetryInterval() {
return this.retryInterval;
}
public void setRetryInterval(Integer retryInterval) {
this.retryInterval = retryInterval;
if(retryInterval != null){
putQueryParameter("RetryInterval", retryInterval.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 String getCallInfos() {
return this.callInfos;
}
public void setCallInfos(String callInfos) {
this.callInfos = callInfos;
if(callInfos != null){
putQueryParameter("CallInfos", callInfos);
}
}
public Integer getModel() {
return this.model;
}
public void setModel(Integer model) {
this.model = model;
if(model != null){
putQueryParameter("Model", model.toString());
}
}
public String getAni() {
return this.ani;
}
public void setAni(String ani) {
this.ani = ani;
if(ani != null){
putQueryParameter("Ani", ani);
}
}
public Integer getRetryTime() {
return this.retryTime;
}
public void setRetryTime(Integer retryTime) {
this.retryTime = retryTime;
if(retryTime != null){
putQueryParameter("RetryTime", retryTime.toString());
}
}
@Override
public Class<CreateOutboundTaskResponse> getResponseClass() {
return CreateOutboundTaskResponse.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/CreateOutboundTaskResponse.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.CreateOutboundTaskResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateOutboundTaskResponse 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 CreateOutboundTaskResponse getInstance(UnmarshallerContext context) {
return CreateOutboundTaskResponseUnmarshaller.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/CreateQualityProjectRequest.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 CreateQualityProjectRequest extends RpcAcsRequest<CreateQualityProjectResponse> {
private String projectName;
private Integer checkFreqType;
private Integer scopeType;
private List<String> servicerLists;
private String timeRangeEnd;
private List<Long> depLists;
private List<Long> analysisIdss;
private String instanceId;
private String timeRangeStart;
private List<Long> groupLists;
private List<Integer> channelTouchTypes;
public CreateQualityProjectRequest() {
super("aiccs", "2019-10-15", "CreateQualityProject");
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 getProjectName() {
return this.projectName;
}
public void setProjectName(String projectName) {
this.projectName = projectName;
if(projectName != null){
putBodyParameter("ProjectName", projectName);
}
}
public Integer getCheckFreqType() {
return this.checkFreqType;
}
public void setCheckFreqType(Integer checkFreqType) {
this.checkFreqType = checkFreqType;
if(checkFreqType != null){
putBodyParameter("CheckFreqType", checkFreqType.toString());
}
}
public Integer getScopeType() {
return this.scopeType;
}
public void setScopeType(Integer scopeType) {
this.scopeType = scopeType;
if(scopeType != null){
putBodyParameter("ScopeType", scopeType.toString());
}
}
public List<String> getServicerLists() {
return this.servicerLists;
}
public void setServicerLists(List<String> servicerLists) {
this.servicerLists = servicerLists;
if (servicerLists != null) {
for (int i = 0; i < servicerLists.size(); i++) {
putBodyParameter("ServicerList." + (i + 1) , servicerLists.get(i));
}
}
}
public String getTimeRangeEnd() {
return this.timeRangeEnd;
}
public void setTimeRangeEnd(String timeRangeEnd) {
this.timeRangeEnd = timeRangeEnd;
if(timeRangeEnd != null){
putBodyParameter("TimeRangeEnd", timeRangeEnd);
}
}
public List<Long> getDepLists() {
return this.depLists;
}
public void setDepLists(List<Long> depLists) {
this.depLists = depLists;
if (depLists != null) {
for (int i = 0; i < depLists.size(); i++) {
putBodyParameter("DepList." + (i + 1) , depLists.get(i));
}
}
}
public List<Long> getAnalysisIdss() {
return this.analysisIdss;
}
public void setAnalysisIdss(List<Long> analysisIdss) {
this.analysisIdss = analysisIdss;
if (analysisIdss != null) {
for (int i = 0; i < analysisIdss.size(); i++) {
putBodyParameter("AnalysisIds." + (i + 1) , analysisIdss.get(i));
}
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public String getTimeRangeStart() {
return this.timeRangeStart;
}
public void setTimeRangeStart(String timeRangeStart) {
this.timeRangeStart = timeRangeStart;
if(timeRangeStart != null){
putBodyParameter("TimeRangeStart", timeRangeStart);
}
}
public List<Long> getGroupLists() {
return this.groupLists;
}
public void setGroupLists(List<Long> groupLists) {
this.groupLists = groupLists;
if (groupLists != null) {
for (int i = 0; i < groupLists.size(); i++) {
putBodyParameter("GroupList." + (i + 1) , groupLists.get(i));
}
}
}
public List<Integer> getChannelTouchTypes() {
return this.channelTouchTypes;
}
public void setChannelTouchTypes(List<Integer> channelTouchTypes) {
this.channelTouchTypes = channelTouchTypes;
if (channelTouchTypes != null) {
for (int i = 0; i < channelTouchTypes.size(); i++) {
putBodyParameter("ChannelTouchType." + (i + 1) , channelTouchTypes.get(i));
}
}
}
@Override
public Class<CreateQualityProjectResponse> getResponseClass() {
return CreateQualityProjectResponse.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/CreateQualityProjectResponse.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.CreateQualityProjectResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateQualityProjectResponse 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 instanceId;
private Integer version;
private Long projectId;
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public Integer getVersion() {
return this.version;
}
public void setVersion(Integer version) {
this.version = version;
}
public Long getProjectId() {
return this.projectId;
}
public void setProjectId(Long projectId) {
this.projectId = projectId;
}
}
@Override
public CreateQualityProjectResponse getInstance(UnmarshallerContext context) {
return CreateQualityProjectResponseUnmarshaller.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/CreateQualityRuleRequest.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 CreateQualityRuleRequest extends RpcAcsRequest<CreateQualityRuleResponse> {
private Integer ruleTag;
private String instanceId;
private List<String> keyWordss;
private String name;
private Integer matchType;
public CreateQualityRuleRequest() {
super("aiccs", "2019-10-15", "CreateQualityRule");
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 getRuleTag() {
return this.ruleTag;
}
public void setRuleTag(Integer ruleTag) {
this.ruleTag = ruleTag;
if(ruleTag != null){
putBodyParameter("RuleTag", ruleTag.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public List<String> getKeyWordss() {
return this.keyWordss;
}
public void setKeyWordss(List<String> keyWordss) {
this.keyWordss = keyWordss;
if (keyWordss != null) {
for (int i = 0; i < keyWordss.size(); i++) {
putBodyParameter("KeyWords." + (i + 1) , keyWordss.get(i));
}
}
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
if(name != null){
putBodyParameter("Name", name);
}
}
public Integer getMatchType() {
return this.matchType;
}
public void setMatchType(Integer matchType) {
this.matchType = matchType;
if(matchType != null){
putBodyParameter("MatchType", matchType.toString());
}
}
@Override
public Class<CreateQualityRuleResponse> getResponseClass() {
return CreateQualityRuleResponse.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/CreateQualityRuleResponse.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.CreateQualityRuleResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateQualityRuleResponse 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 CreateQualityRuleResponse getInstance(UnmarshallerContext context) {
return CreateQualityRuleResponseUnmarshaller.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/CreateSkillGroupRequest.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 CreateSkillGroupRequest extends RpcAcsRequest<CreateSkillGroupResponse> {
private String instanceId;
private String clientToken;
private String displayName;
private Integer channelType;
private String skillGroupName;
private String description;
public CreateSkillGroupRequest() {
super("aiccs", "2019-10-15", "CreateSkillGroup");
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 getDisplayName() {
return this.displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
if(displayName != null){
putBodyParameter("DisplayName", displayName);
}
}
public Integer getChannelType() {
return this.channelType;
}
public void setChannelType(Integer channelType) {
this.channelType = channelType;
if(channelType != null){
putBodyParameter("ChannelType", channelType.toString());
}
}
public String getSkillGroupName() {
return this.skillGroupName;
}
public void setSkillGroupName(String skillGroupName) {
this.skillGroupName = skillGroupName;
if(skillGroupName != null){
putBodyParameter("SkillGroupName", skillGroupName);
}
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
if(description != null){
putBodyParameter("Description", description);
}
}
@Override
public Class<CreateSkillGroupResponse> getResponseClass() {
return CreateSkillGroupResponse.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/CreateSkillGroupResponse.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.CreateSkillGroupResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateSkillGroupResponse extends AcsResponse {
private String requestId;
private String message;
private Long 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 Long getData() {
return this.data;
}
public void setData(Long 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 CreateSkillGroupResponse getInstance(UnmarshallerContext context) {
return CreateSkillGroupResponseUnmarshaller.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/CreateThirdSsoAgentRequest.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 CreateThirdSsoAgentRequest extends RpcAcsRequest<CreateThirdSsoAgentResponse> {
private String clientToken;
private String instanceId;
private String clientId;
private String accountId;
private String accountName;
private String displayName;
private List<Long> skillGroupIds;
private List<Long> roleIds;
public CreateThirdSsoAgentRequest() {
super("aiccs", "2019-10-15", "CreateThirdSsoAgent");
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 getClientId() {
return this.clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
if(clientId != null){
putBodyParameter("ClientId", clientId);
}
}
public String getAccountId() {
return this.accountId;
}
public void setAccountId(String accountId) {
this.accountId = accountId;
if(accountId != null){
putBodyParameter("AccountId", accountId);
}
}
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 depth1 = 0; depth1 < skillGroupIds.size(); depth1++) {
putBodyParameter("SkillGroupIds." + (depth1 + 1) , skillGroupIds.get(depth1));
}
}
}
public List<Long> getRoleIds() {
return this.roleIds;
}
public void setRoleIds(List<Long> roleIds) {
this.roleIds = roleIds;
if (roleIds != null) {
for (int depth1 = 0; depth1 < roleIds.size(); depth1++) {
putBodyParameter("RoleIds." + (depth1 + 1) , roleIds.get(depth1));
}
}
}
@Override
public Class<CreateThirdSsoAgentResponse> getResponseClass() {
return CreateThirdSsoAgentResponse.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/CreateThirdSsoAgentResponse.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.CreateThirdSsoAgentResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateThirdSsoAgentResponse extends AcsResponse {
private String requestId;
private String message;
private Long httpStatusCode;
private Long 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 Long getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Long httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public Long getData() {
return this.data;
}
public void setData(Long 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 CreateThirdSsoAgentResponse getInstance(UnmarshallerContext context) {
return CreateThirdSsoAgentResponseUnmarshaller.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/DeleteAgentRequest.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 DeleteAgentRequest extends RpcAcsRequest<DeleteAgentResponse> {
private String clientToken;
private String instanceId;
private String accountName;
public DeleteAgentRequest() {
super("aiccs", "2019-10-15", "DeleteAgent");
setMethod(MethodType.DELETE);
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<DeleteAgentResponse> getResponseClass() {
return DeleteAgentResponse.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/DeleteAgentResponse.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.DeleteAgentResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteAgentResponse 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 DeleteAgentResponse getInstance(UnmarshallerContext context) {
return DeleteAgentResponseUnmarshaller.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/DeleteOutboundTaskRequest.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 DeleteOutboundTaskRequest extends RpcAcsRequest<DeleteOutboundTaskResponse> {
private String instanceId;
private Long outboundTaskId;
public DeleteOutboundTaskRequest() {
super("aiccs", "2019-10-15", "DeleteOutboundTask");
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<DeleteOutboundTaskResponse> getResponseClass() {
return DeleteOutboundTaskResponse.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/DeleteOutboundTaskResponse.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.DeleteOutboundTaskResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteOutboundTaskResponse 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 DeleteOutboundTaskResponse getInstance(UnmarshallerContext context) {
return DeleteOutboundTaskResponseUnmarshaller.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/DeleteOuterAccountRequest.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 DeleteOuterAccountRequest extends RpcAcsRequest<DeleteOuterAccountResponse> {
private String outerAccountId;
private String outerAccountType;
public DeleteOuterAccountRequest() {
super("aiccs", "2019-10-15", "DeleteOuterAccount");
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 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<DeleteOuterAccountResponse> getResponseClass() {
return DeleteOuterAccountResponse.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/DeleteOuterAccountResponse.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.DeleteOuterAccountResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteOuterAccountResponse extends AcsResponse {
private String requestId;
private String message;
private Boolean 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 Boolean getData() {
return this.data;
}
public void setData(Boolean 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 DeleteOuterAccountResponse getInstance(UnmarshallerContext context) {
return DeleteOuterAccountResponseUnmarshaller.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/DeleteQualityProjectRequest.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 DeleteQualityProjectRequest extends RpcAcsRequest<DeleteQualityProjectResponse> {
private String instanceId;
private Long projectId;
public DeleteQualityProjectRequest() {
super("aiccs", "2019-10-15", "DeleteQualityProject");
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 getProjectId() {
return this.projectId;
}
public void setProjectId(Long projectId) {
this.projectId = projectId;
if(projectId != null){
putQueryParameter("ProjectId", projectId.toString());
}
}
@Override
public Class<DeleteQualityProjectResponse> getResponseClass() {
return DeleteQualityProjectResponse.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/DeleteQualityProjectResponse.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.DeleteQualityProjectResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteQualityProjectResponse 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 DeleteQualityProjectResponse getInstance(UnmarshallerContext context) {
return DeleteQualityProjectResponseUnmarshaller.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/DeleteQualityRuleRequest.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 DeleteQualityRuleRequest extends RpcAcsRequest<DeleteQualityRuleResponse> {
private String instanceId;
private Long id;
public DeleteQualityRuleRequest() {
super("aiccs", "2019-10-15", "DeleteQualityRule");
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 getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
if(id != null){
putQueryParameter("Id", id.toString());
}
}
@Override
public Class<DeleteQualityRuleResponse> getResponseClass() {
return DeleteQualityRuleResponse.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/DeleteQualityRuleResponse.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.DeleteQualityRuleResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteQualityRuleResponse 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 DeleteQualityRuleResponse getInstance(UnmarshallerContext context) {
return DeleteQualityRuleResponseUnmarshaller.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/DeleteSkillGroupRequest.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 DeleteSkillGroupRequest extends RpcAcsRequest<DeleteSkillGroupResponse> {
private String outerGroupId;
private String outerGroupType;
public DeleteSkillGroupRequest() {
super("aiccs", "2019-10-15", "DeleteSkillGroup");
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<DeleteSkillGroupResponse> getResponseClass() {
return DeleteSkillGroupResponse.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/DeleteSkillGroupResponse.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.DeleteSkillGroupResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteSkillGroupResponse extends AcsResponse {
private String requestId;
private String message;
private Boolean 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 Boolean getData() {
return this.data;
}
public void setData(Boolean 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 DeleteSkillGroupResponse getInstance(UnmarshallerContext context) {
return DeleteSkillGroupResponseUnmarshaller.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/DescribeRecordDataRequest.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 DescribeRecordDataRequest extends RpcAcsRequest<DescribeRecordDataResponse> {
private Long resourceOwnerId;
private String accountType;
private String acid;
private String accountId;
private Integer secLevel;
private String resourceOwnerAccount;
private String prodCode;
private Long ownerId;
public DescribeRecordDataRequest() {
super("aiccs", "2019-10-15", "DescribeRecordData");
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 getAcid() {
return this.acid;
}
public void setAcid(String acid) {
this.acid = acid;
if(acid != null){
putQueryParameter("Acid", acid);
}
}
public String getAccountId() {
return this.accountId;
}
public void setAccountId(String accountId) {
this.accountId = accountId;
if(accountId != null){
putQueryParameter("AccountId", accountId);
}
}
public Integer getSecLevel() {
return this.secLevel;
}
public void setSecLevel(Integer secLevel) {
this.secLevel = secLevel;
if(secLevel != null){
putQueryParameter("SecLevel", secLevel.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<DescribeRecordDataResponse> getResponseClass() {
return DescribeRecordDataResponse.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/DescribeRecordDataResponse.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.DescribeRecordDataResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DescribeRecordDataResponse extends AcsResponse {
private String acid;
private String message;
private String requestId;
private String agentId;
private String ossLink;
private String code;
public String getAcid() {
return this.acid;
}
public void setAcid(String acid) {
this.acid = acid;
}
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 getAgentId() {
return this.agentId;
}
public void setAgentId(String agentId) {
this.agentId = agentId;
}
public String getOssLink() {
return this.ossLink;
}
public void setOssLink(String ossLink) {
this.ossLink = ossLink;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
@Override
public DescribeRecordDataResponse getInstance(UnmarshallerContext context) {
return DescribeRecordDataResponseUnmarshaller.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/EditQualityProjectRequest.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 EditQualityProjectRequest extends RpcAcsRequest<EditQualityProjectResponse> {
private String projectName;
private Integer checkFreqType;
private Integer scopeType;
private List<String> servicerLists;
private String timeRangeEnd;
private List<Long> depLists;
private List<Long> analysisIdss;
private String instanceId;
private String timeRangeStart;
private Integer projectVersion;
private List<Long> groupLists;
private Long projectId;
private List<Integer> channelTouchTypes;
public EditQualityProjectRequest() {
super("aiccs", "2019-10-15", "EditQualityProject");
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 getProjectName() {
return this.projectName;
}
public void setProjectName(String projectName) {
this.projectName = projectName;
if(projectName != null){
putBodyParameter("ProjectName", projectName);
}
}
public Integer getCheckFreqType() {
return this.checkFreqType;
}
public void setCheckFreqType(Integer checkFreqType) {
this.checkFreqType = checkFreqType;
if(checkFreqType != null){
putQueryParameter("CheckFreqType", checkFreqType.toString());
}
}
public Integer getScopeType() {
return this.scopeType;
}
public void setScopeType(Integer scopeType) {
this.scopeType = scopeType;
if(scopeType != null){
putQueryParameter("ScopeType", scopeType.toString());
}
}
public List<String> getServicerLists() {
return this.servicerLists;
}
public void setServicerLists(List<String> servicerLists) {
this.servicerLists = servicerLists;
if (servicerLists != null) {
for (int i = 0; i < servicerLists.size(); i++) {
putQueryParameter("ServicerList." + (i + 1) , servicerLists.get(i));
}
}
}
public String getTimeRangeEnd() {
return this.timeRangeEnd;
}
public void setTimeRangeEnd(String timeRangeEnd) {
this.timeRangeEnd = timeRangeEnd;
if(timeRangeEnd != null){
putQueryParameter("TimeRangeEnd", timeRangeEnd);
}
}
public List<Long> getDepLists() {
return this.depLists;
}
public void setDepLists(List<Long> depLists) {
this.depLists = depLists;
if (depLists != null) {
for (int i = 0; i < depLists.size(); i++) {
putQueryParameter("DepList." + (i + 1) , depLists.get(i));
}
}
}
public List<Long> getAnalysisIdss() {
return this.analysisIdss;
}
public void setAnalysisIdss(List<Long> analysisIdss) {
this.analysisIdss = analysisIdss;
if (analysisIdss != null) {
for (int i = 0; i < analysisIdss.size(); i++) {
putQueryParameter("AnalysisIds." + (i + 1) , analysisIdss.get(i));
}
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getTimeRangeStart() {
return this.timeRangeStart;
}
public void setTimeRangeStart(String timeRangeStart) {
this.timeRangeStart = timeRangeStart;
if(timeRangeStart != null){
putQueryParameter("TimeRangeStart", timeRangeStart);
}
}
public Integer getProjectVersion() {
return this.projectVersion;
}
public void setProjectVersion(Integer projectVersion) {
this.projectVersion = projectVersion;
if(projectVersion != null){
putQueryParameter("ProjectVersion", projectVersion.toString());
}
}
public List<Long> getGroupLists() {
return this.groupLists;
}
public void setGroupLists(List<Long> groupLists) {
this.groupLists = groupLists;
if (groupLists != null) {
for (int i = 0; i < groupLists.size(); i++) {
putQueryParameter("GroupList." + (i + 1) , groupLists.get(i));
}
}
}
public Long getProjectId() {
return this.projectId;
}
public void setProjectId(Long projectId) {
this.projectId = projectId;
if(projectId != null){
putQueryParameter("ProjectId", projectId.toString());
}
}
public List<Integer> getChannelTouchTypes() {
return this.channelTouchTypes;
}
public void setChannelTouchTypes(List<Integer> channelTouchTypes) {
this.channelTouchTypes = channelTouchTypes;
if (channelTouchTypes != null) {
for (int i = 0; i < channelTouchTypes.size(); i++) {
putQueryParameter("ChannelTouchType." + (i + 1) , channelTouchTypes.get(i));
}
}
}
@Override
public Class<EditQualityProjectResponse> getResponseClass() {
return EditQualityProjectResponse.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/EditQualityProjectResponse.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.EditQualityProjectResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class EditQualityProjectResponse 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 instanceId;
private Integer version;
private Long projectId;
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public Integer getVersion() {
return this.version;
}
public void setVersion(Integer version) {
this.version = version;
}
public Long getProjectId() {
return this.projectId;
}
public void setProjectId(Long projectId) {
this.projectId = projectId;
}
}
@Override
public EditQualityProjectResponse getInstance(UnmarshallerContext context) {
return EditQualityProjectResponseUnmarshaller.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/EditQualityRuleRequest.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 EditQualityRuleRequest extends RpcAcsRequest<EditQualityRuleResponse> {
private Integer ruleTag;
private String instanceId;
private List<String> keyWordss;
private Long qualityRuleId;
private String name;
private Integer matchType;
public EditQualityRuleRequest() {
super("aiccs", "2019-10-15", "EditQualityRule");
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 getRuleTag() {
return this.ruleTag;
}
public void setRuleTag(Integer ruleTag) {
this.ruleTag = ruleTag;
if(ruleTag != null){
putBodyParameter("RuleTag", ruleTag.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public List<String> getKeyWordss() {
return this.keyWordss;
}
public void setKeyWordss(List<String> keyWordss) {
this.keyWordss = keyWordss;
if (keyWordss != null) {
for (int i = 0; i < keyWordss.size(); i++) {
putBodyParameter("KeyWords." + (i + 1) , keyWordss.get(i));
}
}
}
public Long getQualityRuleId() {
return this.qualityRuleId;
}
public void setQualityRuleId(Long qualityRuleId) {
this.qualityRuleId = qualityRuleId;
if(qualityRuleId != null){
putBodyParameter("QualityRuleId", qualityRuleId.toString());
}
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
if(name != null){
putBodyParameter("Name", name);
}
}
public Integer getMatchType() {
return this.matchType;
}
public void setMatchType(Integer matchType) {
this.matchType = matchType;
if(matchType != null){
putBodyParameter("MatchType", matchType.toString());
}
}
@Override
public Class<EditQualityRuleResponse> getResponseClass() {
return EditQualityRuleResponse.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/EditQualityRuleResponse.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.EditQualityRuleResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class EditQualityRuleResponse 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 EditQualityRuleResponse getInstance(UnmarshallerContext context) {
return EditQualityRuleResponseUnmarshaller.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/EditQualityRuleTagRequest.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 EditQualityRuleTagRequest extends RpcAcsRequest<EditQualityRuleTagResponse> {
private String instanceId;
private List<AnalysisTypes> analysisTypess;
public EditQualityRuleTagRequest() {
super("aiccs", "2019-10-15", "EditQualityRuleTag");
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 List<AnalysisTypes> getAnalysisTypess() {
return this.analysisTypess;
}
public void setAnalysisTypess(List<AnalysisTypes> analysisTypess) {
this.analysisTypess = analysisTypess;
if (analysisTypess != null) {
for (int depth1 = 0; depth1 < analysisTypess.size(); depth1++) {
putQueryParameter("AnalysisTypes." + (depth1 + 1) + ".Name" , analysisTypess.get(depth1).getName());
putQueryParameter("AnalysisTypes." + (depth1 + 1) + ".Id" , analysisTypess.get(depth1).getId());
}
}
}
public static class AnalysisTypes {
private String name;
private Long id;
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
}
@Override
public Class<EditQualityRuleTagResponse> getResponseClass() {
return EditQualityRuleTagResponse.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/EditQualityRuleTagResponse.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.EditQualityRuleTagResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class EditQualityRuleTagResponse 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 EditQualityRuleTagResponse getInstance(UnmarshallerContext context) {
return EditQualityRuleTagResponseUnmarshaller.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/FetchCallRequest.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 FetchCallRequest extends RpcAcsRequest<FetchCallResponse> {
private String clientToken;
private String instanceId;
private String accountName;
private String callId;
private String jobId;
private String connectionId;
private String holdConnectionId;
public FetchCallRequest() {
super("aiccs", "2019-10-15", "FetchCall");
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<FetchCallResponse> getResponseClass() {
return FetchCallResponse.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/FetchCallResponse.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.FetchCallResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class FetchCallResponse 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 FetchCallResponse getInstance(UnmarshallerContext context) {
return FetchCallResponseUnmarshaller.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/FinishHotlineServiceRequest.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 FinishHotlineServiceRequest extends RpcAcsRequest<FinishHotlineServiceResponse> {
private String clientToken;
private String instanceId;
private String accountName;
public FinishHotlineServiceRequest() {
super("aiccs", "2019-10-15", "FinishHotlineService");
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<FinishHotlineServiceResponse> getResponseClass() {
return FinishHotlineServiceResponse.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/FinishHotlineServiceResponse.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.FinishHotlineServiceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class FinishHotlineServiceResponse 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 FinishHotlineServiceResponse getInstance(UnmarshallerContext context) {
return FinishHotlineServiceResponseUnmarshaller.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/GenerateWebSocketSignRequest.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 GenerateWebSocketSignRequest extends RpcAcsRequest<GenerateWebSocketSignResponse> {
private String clientToken;
private String instanceId;
private String accountName;
public GenerateWebSocketSignRequest() {
super("aiccs", "2019-10-15", "GenerateWebSocketSign");
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<GenerateWebSocketSignResponse> getResponseClass() {
return GenerateWebSocketSignResponse.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/GenerateWebSocketSignResponse.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.GenerateWebSocketSignResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GenerateWebSocketSignResponse 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 GenerateWebSocketSignResponse getInstance(UnmarshallerContext context) {
return GenerateWebSocketSignResponseUnmarshaller.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/GetAgentBasisStatusRequest.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 GetAgentBasisStatusRequest extends RpcAcsRequest<GetAgentBasisStatusResponse> {
private List<Long> depIds;
private List<Long> agentIds;
private String instanceId;
private Long endDate;
private Integer pageSize;
private Integer currentPage;
private Long startDate;
public GetAgentBasisStatusRequest() {
super("aiccs", "2019-10-15", "GetAgentBasisStatus");
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 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 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<GetAgentBasisStatusResponse> getResponseClass() {
return GetAgentBasisStatusResponse.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/GetAgentBasisStatusResponse.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.GetAgentBasisStatusResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetAgentBasisStatusResponse 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 GetAgentBasisStatusResponse getInstance(UnmarshallerContext context) {
return GetAgentBasisStatusResponseUnmarshaller.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/GetAgentByIdRequest.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 GetAgentByIdRequest extends RpcAcsRequest<GetAgentByIdResponse> {
private String instanceId;
private Long agentId;
public GetAgentByIdRequest() {
super("aiccs", "2019-10-15", "GetAgentById");
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 Long getAgentId() {
return this.agentId;
}
public void setAgentId(Long agentId) {
this.agentId = agentId;
if(agentId != null){
putBodyParameter("AgentId", agentId.toString());
}
}
@Override
public Class<GetAgentByIdResponse> getResponseClass() {
return GetAgentByIdResponse.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/GetAgentByIdResponse.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.GetAgentByIdResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetAgentByIdResponse 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 foreignNick;
private Integer servicerType;
private Integer agentId;
private String realName;
private String foreignKey;
private String createUserName;
private String showName;
public String getForeignNick() {
return this.foreignNick;
}
public void setForeignNick(String foreignNick) {
this.foreignNick = foreignNick;
}
public Integer getServicerType() {
return this.servicerType;
}
public void setServicerType(Integer servicerType) {
this.servicerType = servicerType;
}
public Integer getAgentId() {
return this.agentId;
}
public void setAgentId(Integer agentId) {
this.agentId = agentId;
}
public String getRealName() {
return this.realName;
}
public void setRealName(String realName) {
this.realName = realName;
}
public String getForeignKey() {
return this.foreignKey;
}
public void setForeignKey(String foreignKey) {
this.foreignKey = foreignKey;
}
public String getCreateUserName() {
return this.createUserName;
}
public void setCreateUserName(String createUserName) {
this.createUserName = createUserName;
}
public String getShowName() {
return this.showName;
}
public void setShowName(String showName) {
this.showName = showName;
}
}
@Override
public GetAgentByIdResponse getInstance(UnmarshallerContext context) {
return GetAgentByIdResponseUnmarshaller.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/GetAgentDetailReportRequest.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 GetAgentDetailReportRequest extends RpcAcsRequest<GetAgentDetailReportResponse> {
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 Integer pageSize;
private Boolean existAgentGrouping;
public GetAgentDetailReportRequest() {
super("aiccs", "2019-10-15", "GetAgentDetailReport");
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 Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.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<GetAgentDetailReportResponse> getResponseClass() {
return GetAgentDetailReportResponse.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/GetAgentDetailReportResponse.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.GetAgentDetailReportResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetAgentDetailReportResponse 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 GetAgentDetailReportResponse getInstance(UnmarshallerContext context) {
return GetAgentDetailReportResponseUnmarshaller.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/GetAgentIndexRealTimeRequest.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 GetAgentIndexRealTimeRequest extends RpcAcsRequest<GetAgentIndexRealTimeResponse> {
private List<Long> depIdss;
private String instanceId;
private List<Long> groupIdss;
private Integer pageSize;
private Integer currentPage;
public GetAgentIndexRealTimeRequest() {
super("aiccs", "2019-10-15", "GetAgentIndexRealTime");
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<Long> getDepIdss() {
return this.depIdss;
}
public void setDepIdss(List<Long> depIdss) {
this.depIdss = depIdss;
if (depIdss != null) {
for (int i = 0; i < depIdss.size(); i++) {
putQueryParameter("DepIds." + (i + 1) , depIdss.get(i));
}
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public List<Long> getGroupIdss() {
return this.groupIdss;
}
public void setGroupIdss(List<Long> groupIdss) {
this.groupIdss = groupIdss;
if (groupIdss != null) {
for (int i = 0; i < groupIdss.size(); i++) {
putQueryParameter("GroupIds." + (i + 1) , groupIdss.get(i));
}
}
}
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());
}
}
@Override
public Class<GetAgentIndexRealTimeResponse> getResponseClass() {
return GetAgentIndexRealTimeResponse.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/GetAgentIndexRealTimeResponse.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 java.util.Map;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.GetAgentIndexRealTimeResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetAgentIndexRealTimeResponse 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 pageSize;
private Integer total;
private Integer page;
private List<ColumnsItem> columns;
private List<Map<Object,Object>> rows;
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotal() {
return this.total;
}
public void setTotal(Integer total) {
this.total = total;
}
public Integer getPage() {
return this.page;
}
public void setPage(Integer page) {
this.page = page;
}
public List<ColumnsItem> getColumns() {
return this.columns;
}
public void setColumns(List<ColumnsItem> columns) {
this.columns = columns;
}
public List<Map<Object,Object>> getRows() {
return this.rows;
}
public void setRows(List<Map<Object,Object>> rows) {
this.rows = rows;
}
public static class ColumnsItem {
private String title;
private String key;
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
}
}
@Override
public GetAgentIndexRealTimeResponse getInstance(UnmarshallerContext context) {
return GetAgentIndexRealTimeResponseUnmarshaller.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/GetAgentRequest.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 GetAgentRequest extends RpcAcsRequest<GetAgentResponse> {
private String clientToken;
private String instanceId;
private String accountName;
public GetAgentRequest() {
super("aiccs", "2019-10-15", "GetAgent");
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<GetAgentResponse> getResponseClass() {
return GetAgentResponse.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/GetAgentResponse.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.GetAgentResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetAgentResponse extends AcsResponse {
private String requestId;
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 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 status;
private Long tenantId;
private String displayName;
private Long agentId;
private String accountName;
private List<GroupListItem> groupList;
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;
}
public List<GroupListItem> getGroupList() {
return this.groupList;
}
public void setGroupList(List<GroupListItem> groupList) {
this.groupList = groupList;
}
public static class GroupListItem {
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 GetAgentResponse getInstance(UnmarshallerContext context) {
return GetAgentResponseUnmarshaller.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/GetAgentServiceStatusRequest.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 GetAgentServiceStatusRequest extends RpcAcsRequest<GetAgentServiceStatusResponse> {
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 Integer pageSize;
private Boolean existAgentGrouping;
public GetAgentServiceStatusRequest() {
super("aiccs", "2019-10-15", "GetAgentServiceStatus");
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 Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.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<GetAgentServiceStatusResponse> getResponseClass() {
return GetAgentServiceStatusResponse.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/GetAgentServiceStatusResponse.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.GetAgentServiceStatusResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetAgentServiceStatusResponse 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 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 GetAgentServiceStatusResponse getInstance(UnmarshallerContext context) {
return GetAgentServiceStatusResponseUnmarshaller.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/GetAgentStatisticsRequest.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 GetAgentStatisticsRequest extends RpcAcsRequest<GetAgentStatisticsResponse> {
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 Integer pageSize;
private Boolean existAgentGrouping;
public GetAgentStatisticsRequest() {
super("aiccs", "2019-10-15", "GetAgentStatistics");
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 Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.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<GetAgentStatisticsResponse> getResponseClass() {
return GetAgentStatisticsResponse.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/GetAgentStatisticsResponse.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.GetAgentStatisticsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetAgentStatisticsResponse 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 GetAgentStatisticsResponse getInstance(UnmarshallerContext context) {
return GetAgentStatisticsResponseUnmarshaller.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/GetCustomerInfoRequest.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 GetCustomerInfoRequest extends RpcAcsRequest<GetCustomerInfoResponse> {
private String instanceId;
private Long memberId;
public GetCustomerInfoRequest() {
super("aiccs", "2019-10-15", "GetCustomerInfo");
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 Long getMemberId() {
return this.memberId;
}
public void setMemberId(Long memberId) {
this.memberId = memberId;
if(memberId != null){
putQueryParameter("MemberId", memberId.toString());
}
}
@Override
public Class<GetCustomerInfoResponse> getResponseClass() {
return GetCustomerInfoResponse.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/GetCustomerInfoResponse.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.Map;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.GetCustomerInfoResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetCustomerInfoResponse 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 outerId;
private Long userId;
private String nick;
private Map<Object,Object> customizeFields;
private String photo;
private String realName;
public String getOuterId() {
return this.outerId;
}
public void setOuterId(String outerId) {
this.outerId = outerId;
}
public Long getUserId() {
return this.userId;
}
public void setUserId(Long userId) {
this.userId = userId;
}
public String getNick() {
return this.nick;
}
public void setNick(String nick) {
this.nick = nick;
}
public Map<Object,Object> getCustomizeFields() {
return this.customizeFields;
}
public void setCustomizeFields(Map<Object,Object> customizeFields) {
this.customizeFields = customizeFields;
}
public String getPhoto() {
return this.photo;
}
public void setPhoto(String photo) {
this.photo = photo;
}
public String getRealName() {
return this.realName;
}
public void setRealName(String realName) {
this.realName = realName;
}
}
@Override
public GetCustomerInfoResponse getInstance(UnmarshallerContext context) {
return GetCustomerInfoResponseUnmarshaller.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/GetDepartmentalLatitudeAgentStatusRequest.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 GetDepartmentalLatitudeAgentStatusRequest extends RpcAcsRequest<GetDepartmentalLatitudeAgentStatusResponse> {
private List<Long> depIds;
private String instanceId;
private Long endDate;
private Boolean existDepartmentGrouping;
private Long pageSize;
private Long currentPage;
private Long startDate;
public GetDepartmentalLatitudeAgentStatusRequest() {
super("aiccs", "2019-10-15", "GetDepartmentalLatitudeAgentStatus");
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 Long getPageSize() {
return this.pageSize;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public Long getCurrentPage() {
return this.currentPage;
}
public void setCurrentPage(Long 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<GetDepartmentalLatitudeAgentStatusResponse> getResponseClass() {
return GetDepartmentalLatitudeAgentStatusResponse.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/GetDepartmentalLatitudeAgentStatusResponse.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.GetDepartmentalLatitudeAgentStatusResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetDepartmentalLatitudeAgentStatusResponse 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 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 GetDepartmentalLatitudeAgentStatusResponse getInstance(UnmarshallerContext context) {
return GetDepartmentalLatitudeAgentStatusResponseUnmarshaller.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/GetHotlineAgentDetailReportRequest.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 GetHotlineAgentDetailReportRequest extends RpcAcsRequest<GetHotlineAgentDetailReportResponse> {
private List<Long> depIdss;
private Long endDate;
private String instanceId;
private List<Long> groupIdss;
private Integer pageSize;
private Integer currentPage;
private Long startDate;
public GetHotlineAgentDetailReportRequest() {
super("aiccs", "2019-10-15", "GetHotlineAgentDetailReport");
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<Long> getDepIdss() {
return this.depIdss;
}
public void setDepIdss(List<Long> depIdss) {
this.depIdss = depIdss;
if (depIdss != null) {
for (int i = 0; i < depIdss.size(); i++) {
putQueryParameter("DepIds." + (i + 1) , depIdss.get(i));
}
}
}
public Long getEndDate() {
return this.endDate;
}
public void setEndDate(Long endDate) {
this.endDate = endDate;
if(endDate != null){
putQueryParameter("EndDate", endDate.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public List<Long> getGroupIdss() {
return this.groupIdss;
}
public void setGroupIdss(List<Long> groupIdss) {
this.groupIdss = groupIdss;
if (groupIdss != null) {
for (int i = 0; i < groupIdss.size(); i++) {
putQueryParameter("GroupIds." + (i + 1) , groupIdss.get(i));
}
}
}
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<GetHotlineAgentDetailReportResponse> getResponseClass() {
return GetHotlineAgentDetailReportResponse.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/GetHotlineAgentDetailReportResponse.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 java.util.Map;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.GetHotlineAgentDetailReportResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetHotlineAgentDetailReportResponse extends AcsResponse {
private String requestId;
private String message;
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 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 pageSize;
private Integer total;
private Integer page;
private List<ColumnsItem> columns;
private List<Map<Object,Object>> rows;
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotal() {
return this.total;
}
public void setTotal(Integer total) {
this.total = total;
}
public Integer getPage() {
return this.page;
}
public void setPage(Integer page) {
this.page = page;
}
public List<ColumnsItem> getColumns() {
return this.columns;
}
public void setColumns(List<ColumnsItem> columns) {
this.columns = columns;
}
public List<Map<Object,Object>> getRows() {
return this.rows;
}
public void setRows(List<Map<Object,Object>> rows) {
this.rows = rows;
}
public static class ColumnsItem {
private String title;
private String key;
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
}
}
@Override
public GetHotlineAgentDetailReportResponse getInstance(UnmarshallerContext context) {
return GetHotlineAgentDetailReportResponseUnmarshaller.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/GetHotlineAgentDetailRequest.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 GetHotlineAgentDetailRequest extends RpcAcsRequest<GetHotlineAgentDetailResponse> {
private String clientToken;
private String instanceId;
private String accountName;
public GetHotlineAgentDetailRequest() {
super("aiccs", "2019-10-15", "GetHotlineAgentDetail");
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<GetHotlineAgentDetailResponse> getResponseClass() {
return GetHotlineAgentDetailResponse.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/GetHotlineAgentDetailResponse.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.GetHotlineAgentDetailResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetHotlineAgentDetailResponse 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 Boolean assigned;
private Long tenantId;
private Integer agentStatus;
private Integer restType;
private String agentStatusCode;
private String token;
private Long agentId;
public Boolean getAssigned() {
return this.assigned;
}
public void setAssigned(Boolean assigned) {
this.assigned = assigned;
}
public Long getTenantId() {
return this.tenantId;
}
public void setTenantId(Long tenantId) {
this.tenantId = tenantId;
}
public Integer getAgentStatus() {
return this.agentStatus;
}
public void setAgentStatus(Integer agentStatus) {
this.agentStatus = agentStatus;
}
public Integer getRestType() {
return this.restType;
}
public void setRestType(Integer restType) {
this.restType = restType;
}
public String getAgentStatusCode() {
return this.agentStatusCode;
}
public void setAgentStatusCode(String agentStatusCode) {
this.agentStatusCode = agentStatusCode;
}
public String getToken() {
return this.token;
}
public void setToken(String token) {
this.token = token;
}
public Long getAgentId() {
return this.agentId;
}
public void setAgentId(Long agentId) {
this.agentId = agentId;
}
}
@Override
public GetHotlineAgentDetailResponse getInstance(UnmarshallerContext context) {
return GetHotlineAgentDetailResponseUnmarshaller.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/GetHotlineAgentStatusRequest.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 GetHotlineAgentStatusRequest extends RpcAcsRequest<GetHotlineAgentStatusResponse> {
private String instanceId;
private String accountName;
public GetHotlineAgentStatusRequest() {
super("aiccs", "2019-10-15", "GetHotlineAgentStatus");
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<GetHotlineAgentStatusResponse> getResponseClass() {
return GetHotlineAgentStatusResponse.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/GetHotlineAgentStatusResponse.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.GetHotlineAgentStatusResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetHotlineAgentStatusResponse 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 GetHotlineAgentStatusResponse getInstance(UnmarshallerContext context) {
return GetHotlineAgentStatusResponseUnmarshaller.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/GetHotlineCallActionRequest.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 GetHotlineCallActionRequest extends RpcAcsRequest<GetHotlineCallActionResponse> {
private String clientToken;
private String instanceId;
private String accountName;
private Integer act;
private String fromSource;
private String biz;
private String acc;
public GetHotlineCallActionRequest() {
super("aiccs", "2019-10-15", "GetHotlineCallAction");
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 getAct() {
return this.act;
}
public void setAct(Integer act) {
this.act = act;
if(act != null){
putBodyParameter("Act", act.toString());
}
}
public String getFromSource() {
return this.fromSource;
}
public void setFromSource(String fromSource) {
this.fromSource = fromSource;
if(fromSource != null){
putBodyParameter("FromSource", fromSource);
}
}
public String getBiz() {
return this.biz;
}
public void setBiz(String biz) {
this.biz = biz;
if(biz != null){
putBodyParameter("Biz", biz);
}
}
public String getAcc() {
return this.acc;
}
public void setAcc(String acc) {
this.acc = acc;
if(acc != null){
putBodyParameter("Acc", acc);
}
}
@Override
public Class<GetHotlineCallActionResponse> getResponseClass() {
return GetHotlineCallActionResponse.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/GetHotlineCallActionResponse.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.GetHotlineCallActionResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetHotlineCallActionResponse 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 Long taskId;
private Long subTouchId;
private String memberList;
private Long depId;
private Long caseId;
private String channelId;
private Long touchId;
private Long memberId;
private Long calloutId;
private Long buId;
private Long actionId;
private String servicerName;
private String calloutName;
private String isTransfer;
private String memberName;
private Long servicerId;
private Long channelType;
public Long getTaskId() {
return this.taskId;
}
public void setTaskId(Long taskId) {
this.taskId = taskId;
}
public Long getSubTouchId() {
return this.subTouchId;
}
public void setSubTouchId(Long subTouchId) {
this.subTouchId = subTouchId;
}
public String getMemberList() {
return this.memberList;
}
public void setMemberList(String memberList) {
this.memberList = memberList;
}
public Long getDepId() {
return this.depId;
}
public void setDepId(Long depId) {
this.depId = depId;
}
public Long getCaseId() {
return this.caseId;
}
public void setCaseId(Long caseId) {
this.caseId = caseId;
}
public String getChannelId() {
return this.channelId;
}
public void setChannelId(String channelId) {
this.channelId = channelId;
}
public Long getTouchId() {
return this.touchId;
}
public void setTouchId(Long touchId) {
this.touchId = touchId;
}
public Long getMemberId() {
return this.memberId;
}
public void setMemberId(Long memberId) {
this.memberId = memberId;
}
public Long getCalloutId() {
return this.calloutId;
}
public void setCalloutId(Long calloutId) {
this.calloutId = calloutId;
}
public Long getBuId() {
return this.buId;
}
public void setBuId(Long buId) {
this.buId = buId;
}
public Long getActionId() {
return this.actionId;
}
public void setActionId(Long actionId) {
this.actionId = actionId;
}
public String getServicerName() {
return this.servicerName;
}
public void setServicerName(String servicerName) {
this.servicerName = servicerName;
}
public String getCalloutName() {
return this.calloutName;
}
public void setCalloutName(String calloutName) {
this.calloutName = calloutName;
}
public String getIsTransfer() {
return this.isTransfer;
}
public void setIsTransfer(String isTransfer) {
this.isTransfer = isTransfer;
}
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 Long getChannelType() {
return this.channelType;
}
public void setChannelType(Long channelType) {
this.channelType = channelType;
}
}
@Override
public GetHotlineCallActionResponse getInstance(UnmarshallerContext context) {
return GetHotlineCallActionResponseUnmarshaller.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/GetHotlineGroupDetailReportRequest.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 GetHotlineGroupDetailReportRequest extends RpcAcsRequest<GetHotlineGroupDetailReportResponse> {
private List<Long> depIdss;
private Long endDate;
private String instanceId;
private List<Long> groupIdss;
private Integer pageSize;
private Integer currentPage;
private Long startDate;
public GetHotlineGroupDetailReportRequest() {
super("aiccs", "2019-10-15", "GetHotlineGroupDetailReport");
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<Long> getDepIdss() {
return this.depIdss;
}
public void setDepIdss(List<Long> depIdss) {
this.depIdss = depIdss;
if (depIdss != null) {
for (int i = 0; i < depIdss.size(); i++) {
putQueryParameter("DepIds." + (i + 1) , depIdss.get(i));
}
}
}
public Long getEndDate() {
return this.endDate;
}
public void setEndDate(Long endDate) {
this.endDate = endDate;
if(endDate != null){
putQueryParameter("EndDate", endDate.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public List<Long> getGroupIdss() {
return this.groupIdss;
}
public void setGroupIdss(List<Long> groupIdss) {
this.groupIdss = groupIdss;
if (groupIdss != null) {
for (int i = 0; i < groupIdss.size(); i++) {
putQueryParameter("GroupIds." + (i + 1) , groupIdss.get(i));
}
}
}
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<GetHotlineGroupDetailReportResponse> getResponseClass() {
return GetHotlineGroupDetailReportResponse.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/GetHotlineGroupDetailReportResponse.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 java.util.Map;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.GetHotlineGroupDetailReportResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetHotlineGroupDetailReportResponse extends AcsResponse {
private String requestId;
private String message;
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 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 pageSize;
private Integer total;
private Integer page;
private List<ColumnsItem> columns;
private List<Map<Object,Object>> rows;
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotal() {
return this.total;
}
public void setTotal(Integer total) {
this.total = total;
}
public Integer getPage() {
return this.page;
}
public void setPage(Integer page) {
this.page = page;
}
public List<ColumnsItem> getColumns() {
return this.columns;
}
public void setColumns(List<ColumnsItem> columns) {
this.columns = columns;
}
public List<Map<Object,Object>> getRows() {
return this.rows;
}
public void setRows(List<Map<Object,Object>> rows) {
this.rows = rows;
}
public static class ColumnsItem {
private String title;
private String key;
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
public String getKey() {
return this.key;
}
public void setKey(String key) {
this.key = key;
}
}
}
@Override
public GetHotlineGroupDetailReportResponse getInstance(UnmarshallerContext context) {
return GetHotlineGroupDetailReportResponseUnmarshaller.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/GetHotlineServiceStatisticsRequest.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 GetHotlineServiceStatisticsRequest extends RpcAcsRequest<GetHotlineServiceStatisticsResponse> {
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 GetHotlineServiceStatisticsRequest() {
super("aiccs", "2019-10-15", "GetHotlineServiceStatistics");
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<GetHotlineServiceStatisticsResponse> getResponseClass() {
return GetHotlineServiceStatisticsResponse.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/GetHotlineServiceStatisticsResponse.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.GetHotlineServiceStatisticsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetHotlineServiceStatisticsResponse 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 GetHotlineServiceStatisticsResponse getInstance(UnmarshallerContext context) {
return GetHotlineServiceStatisticsResponseUnmarshaller.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/GetHotlineWaitingNumberRequest.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 GetHotlineWaitingNumberRequest extends RpcAcsRequest<GetHotlineWaitingNumberResponse> {
private String clientToken;
private String instanceId;
private String accountName;
public GetHotlineWaitingNumberRequest() {
super("aiccs", "2019-10-15", "GetHotlineWaitingNumber");
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<GetHotlineWaitingNumberResponse> getResponseClass() {
return GetHotlineWaitingNumberResponse.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/GetHotlineWaitingNumberResponse.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.GetHotlineWaitingNumberResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetHotlineWaitingNumberResponse extends AcsResponse {
private String requestId;
private String message;
private Long data;
private String code;
private String 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 Long getData() {
return this.data;
}
public void setData(Long data) {
this.data = data;
}
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;
}
@Override
public GetHotlineWaitingNumberResponse getInstance(UnmarshallerContext context) {
return GetHotlineWaitingNumberResponseUnmarshaller.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/GetIndexCurrentValueRequest.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 GetIndexCurrentValueRequest extends RpcAcsRequest<GetIndexCurrentValueResponse> {
private String depIds;
private String instanceId;
private String groupIds;
public GetIndexCurrentValueRequest() {
super("aiccs", "2019-10-15", "GetIndexCurrentValue");
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 getDepIds() {
return this.depIds;
}
public void setDepIds(String depIds) {
this.depIds = depIds;
if(depIds != null){
putQueryParameter("DepIds", depIds);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getGroupIds() {
return this.groupIds;
}
public void setGroupIds(String groupIds) {
this.groupIds = groupIds;
if(groupIds != null){
putQueryParameter("GroupIds", groupIds);
}
}
@Override
public Class<GetIndexCurrentValueResponse> getResponseClass() {
return GetIndexCurrentValueResponse.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/GetIndexCurrentValueResponse.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 java.util.Map;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.aiccs.transform.v20191015.GetIndexCurrentValueResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetIndexCurrentValueResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private Boolean success;
private List<Map<Object,Object>> 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<Map<Object,Object>> getData() {
return this.data;
}
public void setData(List<Map<Object,Object>> data) {
this.data = data;
}
@Override
public GetIndexCurrentValueResponse getInstance(UnmarshallerContext context) {
return GetIndexCurrentValueResponseUnmarshaller.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/GetInstanceListRequest.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 GetInstanceListRequest extends RpcAcsRequest<GetInstanceListResponse> {
private Integer pageSize;
private String name;
private Integer pageNumber;
public GetInstanceListRequest() {
super("aiccs", "2019-10-15", "GetInstanceList");
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 getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putBodyParameter("PageSize", pageSize.toString());
}
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
if(name != null){
putBodyParameter("Name", name);
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putBodyParameter("PageNumber", pageNumber.toString());
}
}
@Override
public Class<GetInstanceListResponse> getResponseClass() {
return GetInstanceListResponse.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/GetInstanceListResponse.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.GetInstanceListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetInstanceListResponse extends AcsResponse {
private Integer totalCount;
private Integer pageSize;
private String message;
private String requestId;
private Integer pageNumber;
private Integer httpStatusCode;
private String code;
private Boolean success;
private List<CommodityInstancesItem> commodityInstances;
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 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 Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
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 List<CommodityInstancesItem> getCommodityInstances() {
return this.commodityInstances;
}
public void setCommodityInstances(List<CommodityInstancesItem> commodityInstances) {
this.commodityInstances = commodityInstances;
}
public static class CommodityInstancesItem {
private String instanceId;
private String name;
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
}
@Override
public GetInstanceListResponse getInstance(UnmarshallerContext context) {
return GetInstanceListResponseUnmarshaller.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/GetMcuLvsIpRequest.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 GetMcuLvsIpRequest extends RpcAcsRequest<GetMcuLvsIpResponse> {
private String instanceId;
public GetMcuLvsIpRequest() {
super("aiccs", "2019-10-15", "GetMcuLvsIp");
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);
}
}
@Override
public Class<GetMcuLvsIpResponse> getResponseClass() {
return GetMcuLvsIpResponse.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/GetMcuLvsIpResponse.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.GetMcuLvsIpResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetMcuLvsIpResponse extends AcsResponse {
private String message;
private String requestId;
private String data;
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 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 GetMcuLvsIpResponse getInstance(UnmarshallerContext context) {
return GetMcuLvsIpResponseUnmarshaller.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/GetNumLocationRequest.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 GetNumLocationRequest extends RpcAcsRequest<GetNumLocationResponse> {
private String clientToken;
private String instanceId;
private String phoneNum;
public GetNumLocationRequest() {
super("aiccs", "2019-10-15", "GetNumLocation");
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 getPhoneNum() {
return this.phoneNum;
}
public void setPhoneNum(String phoneNum) {
this.phoneNum = phoneNum;
if(phoneNum != null){
putQueryParameter("PhoneNum", phoneNum);
}
}
@Override
public Class<GetNumLocationResponse> getResponseClass() {
return GetNumLocationResponse.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/GetNumLocationResponse.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.GetNumLocationResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetNumLocationResponse 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 GetNumLocationResponse getInstance(UnmarshallerContext context) {
return GetNumLocationResponseUnmarshaller.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/GetOnlineSeatInformationRequest.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 GetOnlineSeatInformationRequest extends RpcAcsRequest<GetOnlineSeatInformationResponse> {
private List<Long> depIds;
private List<Long> agentIds;
private String instanceId;
private Long endDate;
private Integer pageSize;
private Integer currentPage;
private Long startDate;
public GetOnlineSeatInformationRequest() {
super("aiccs", "2019-10-15", "GetOnlineSeatInformation");
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 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 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<GetOnlineSeatInformationResponse> getResponseClass() {
return GetOnlineSeatInformationResponse.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/GetOnlineSeatInformationResponse.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.GetOnlineSeatInformationResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetOnlineSeatInformationResponse 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 GetOnlineSeatInformationResponse getInstance(UnmarshallerContext context) {
return GetOnlineSeatInformationResponseUnmarshaller.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/GetOnlineServiceVolumeRequest.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 GetOnlineServiceVolumeRequest extends RpcAcsRequest<GetOnlineServiceVolumeResponse> {
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 GetOnlineServiceVolumeRequest() {
super("aiccs", "2019-10-15", "GetOnlineServiceVolume");
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<GetOnlineServiceVolumeResponse> getResponseClass() {
return GetOnlineServiceVolumeResponse.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/GetOnlineServiceVolumeResponse.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.GetOnlineServiceVolumeResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetOnlineServiceVolumeResponse extends AcsResponse {
private String requestId;
private String message;
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 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 GetOnlineServiceVolumeResponse getInstance(UnmarshallerContext context) {
return GetOnlineServiceVolumeResponseUnmarshaller.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/GetOutbounNumListRequest.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 GetOutbounNumListRequest extends RpcAcsRequest<GetOutbounNumListResponse> {
private String clientToken;
private String instanceId;
private String accountName;
public GetOutbounNumListRequest() {
super("aiccs", "2019-10-15", "GetOutbounNumList");
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<GetOutbounNumListResponse> getResponseClass() {
return GetOutbounNumListResponse.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/GetOutbounNumListResponse.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.GetOutbounNumListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetOutbounNumListResponse 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 List<NumItem> num;
private List<NumGroupItem> numGroup;
public List<NumItem> getNum() {
return this.num;
}
public void setNum(List<NumItem> num) {
this.num = num;
}
public List<NumGroupItem> getNumGroup() {
return this.numGroup;
}
public void setNumGroup(List<NumGroupItem> numGroup) {
this.numGroup = numGroup;
}
public static class NumItem {
private Integer type;
private String description;
private String value;
public Integer getType() {
return this.type;
}
public void setType(Integer type) {
this.type = type;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
}
public static class NumGroupItem {
private Integer type;
private String description;
private String value;
public Integer getType() {
return this.type;
}
public void setType(Integer type) {
this.type = type;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
}
}
@Override
public GetOutbounNumListResponse getInstance(UnmarshallerContext context) {
return GetOutbounNumListResponseUnmarshaller.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/GetQualityProjectDetailRequest.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 GetQualityProjectDetailRequest extends RpcAcsRequest<GetQualityProjectDetailResponse> {
private String instanceId;
private Long projectId;
public GetQualityProjectDetailRequest() {
super("aiccs", "2019-10-15", "GetQualityProjectDetail");
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 getProjectId() {
return this.projectId;
}
public void setProjectId(Long projectId) {
this.projectId = projectId;
if(projectId != null){
putQueryParameter("ProjectId", projectId.toString());
}
}
@Override
public Class<GetQualityProjectDetailResponse> getResponseClass() {
return GetQualityProjectDetailResponse.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/GetQualityProjectDetailResponse.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.GetQualityProjectDetailResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetQualityProjectDetailResponse extends AcsResponse {
private String requestId;
private String message;
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 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 status;
private String modifyTime;
private Integer qualityType;
private Integer version;
private String projectName;
private String createTime;
private Long id;
private Integer checkFreqType;
private List<Long> servicerList;
private List<Long> depList;
private List<Long> groupList;
private List<Long> qualityRuleIds;
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
public String getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(String modifyTime) {
this.modifyTime = modifyTime;
}
public Integer getQualityType() {
return this.qualityType;
}
public void setQualityType(Integer qualityType) {
this.qualityType = qualityType;
}
public Integer getVersion() {
return this.version;
}
public void setVersion(Integer version) {
this.version = version;
}
public String getProjectName() {
return this.projectName;
}
public void setProjectName(String projectName) {
this.projectName = projectName;
}
public String getCreateTime() {
return this.createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
public Integer getCheckFreqType() {
return this.checkFreqType;
}
public void setCheckFreqType(Integer checkFreqType) {
this.checkFreqType = checkFreqType;
}
public List<Long> getServicerList() {
return this.servicerList;
}
public void setServicerList(List<Long> servicerList) {
this.servicerList = servicerList;
}
public List<Long> getDepList() {
return this.depList;
}
public void setDepList(List<Long> depList) {
this.depList = depList;
}
public List<Long> getGroupList() {
return this.groupList;
}
public void setGroupList(List<Long> groupList) {
this.groupList = groupList;
}
public List<Long> getQualityRuleIds() {
return this.qualityRuleIds;
}
public void setQualityRuleIds(List<Long> qualityRuleIds) {
this.qualityRuleIds = qualityRuleIds;
}
}
@Override
public GetQualityProjectDetailResponse getInstance(UnmarshallerContext context) {
return GetQualityProjectDetailResponseUnmarshaller.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/GetQualityProjectListRequest.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 GetQualityProjectListRequest extends RpcAcsRequest<GetQualityProjectListResponse> {
private String projectName;
private String instanceId;
private Integer pageNo;
private Integer pageSize;
private Long projectId;
private Integer status;
public GetQualityProjectListRequest() {
super("aiccs", "2019-10-15", "GetQualityProjectList");
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 getProjectName() {
return this.projectName;
}
public void setProjectName(String projectName) {
this.projectName = projectName;
if(projectName != null){
putQueryParameter("ProjectName", projectName);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
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());
}
}
public Long getProjectId() {
return this.projectId;
}
public void setProjectId(Long projectId) {
this.projectId = projectId;
if(projectId != null){
putQueryParameter("ProjectId", projectId.toString());
}
}
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
if(status != null){
putQueryParameter("Status", status.toString());
}
}
@Override
public Class<GetQualityProjectListResponse> getResponseClass() {
return GetQualityProjectListResponse.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/GetQualityProjectListResponse.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.GetQualityProjectListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetQualityProjectListResponse 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 pageSize;
private Long total;
private Integer pageNo;
private List<QualityProjectListItem> qualityProjectList;
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Long getTotal() {
return this.total;
}
public void setTotal(Long total) {
this.total = total;
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
}
public List<QualityProjectListItem> getQualityProjectList() {
return this.qualityProjectList;
}
public void setQualityProjectList(List<QualityProjectListItem> qualityProjectList) {
this.qualityProjectList = qualityProjectList;
}
public static class QualityProjectListItem {
private Integer status;
private String modifyTime;
private Integer qualityType;
private Integer version;
private String projectName;
private String createTime;
private Long id;
private Integer checkFreqType;
private List<Long> servicerList;
private List<Long> depList;
private List<Long> groupList;
private List<Long> qualityRuleIds;
public Integer getStatus() {
return this.status;
}
public void setStatus(Integer status) {
this.status = status;
}
public String getModifyTime() {
return this.modifyTime;
}
public void setModifyTime(String modifyTime) {
this.modifyTime = modifyTime;
}
public Integer getQualityType() {
return this.qualityType;
}
public void setQualityType(Integer qualityType) {
this.qualityType = qualityType;
}
public Integer getVersion() {
return this.version;
}
public void setVersion(Integer version) {
this.version = version;
}
public String getProjectName() {
return this.projectName;
}
public void setProjectName(String projectName) {
this.projectName = projectName;
}
public String getCreateTime() {
return this.createTime;
}
public void setCreateTime(String createTime) {
this.createTime = createTime;
}
public Long getId() {
return this.id;
}
public void setId(Long id) {
this.id = id;
}
public Integer getCheckFreqType() {
return this.checkFreqType;
}
public void setCheckFreqType(Integer checkFreqType) {
this.checkFreqType = checkFreqType;
}
public List<Long> getServicerList() {
return this.servicerList;
}
public void setServicerList(List<Long> servicerList) {
this.servicerList = servicerList;
}
public List<Long> getDepList() {
return this.depList;
}
public void setDepList(List<Long> depList) {
this.depList = depList;
}
public List<Long> getGroupList() {
return this.groupList;
}
public void setGroupList(List<Long> groupList) {
this.groupList = groupList;
}
public List<Long> getQualityRuleIds() {
return this.qualityRuleIds;
}
public void setQualityRuleIds(List<Long> qualityRuleIds) {
this.qualityRuleIds = qualityRuleIds;
}
}
}
@Override
public GetQualityProjectListResponse getInstance(UnmarshallerContext context) {
return GetQualityProjectListResponseUnmarshaller.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/GetQualityProjectLogRequest.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 GetQualityProjectLogRequest extends RpcAcsRequest<GetQualityProjectLogResponse> {
private String instanceId;
private Long projectId;
public GetQualityProjectLogRequest() {
super("aiccs", "2019-10-15", "GetQualityProjectLog");
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 getProjectId() {
return this.projectId;
}
public void setProjectId(Long projectId) {
this.projectId = projectId;
if(projectId != null){
putQueryParameter("ProjectId", projectId.toString());
}
}
@Override
public Class<GetQualityProjectLogResponse> getResponseClass() {
return GetQualityProjectLogResponse.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/GetQualityProjectLogResponse.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.GetQualityProjectLogResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetQualityProjectLogResponse 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 actionTime;
private String actionType;
private String projectCreateTime;
private Long projectId;
private String actionData;
public String getActionTime() {
return this.actionTime;
}
public void setActionTime(String actionTime) {
this.actionTime = actionTime;
}
public String getActionType() {
return this.actionType;
}
public void setActionType(String actionType) {
this.actionType = actionType;
}
public String getProjectCreateTime() {
return this.projectCreateTime;
}
public void setProjectCreateTime(String projectCreateTime) {
this.projectCreateTime = projectCreateTime;
}
public Long getProjectId() {
return this.projectId;
}
public void setProjectId(Long projectId) {
this.projectId = projectId;
}
public String getActionData() {
return this.actionData;
}
public void setActionData(String actionData) {
this.actionData = actionData;
}
}
@Override
public GetQualityProjectLogResponse getInstance(UnmarshallerContext context) {
return GetQualityProjectLogResponseUnmarshaller.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/GetQualityResultRequest.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 GetQualityResultRequest extends RpcAcsRequest<GetQualityResultResponse> {
private String touchEndTime;
private List<Long> projectIdss;
private Integer hitStatus;
private List<Long> qualityRuleIdss;
private String instanceId;
private Integer pageNo;
private List<Long> groupIdss;
private Integer pageSize;
private String channelType;
private String touchStartTime;
public GetQualityResultRequest() {
super("aiccs", "2019-10-15", "GetQualityResult");
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 getTouchEndTime() {
return this.touchEndTime;
}
public void setTouchEndTime(String touchEndTime) {
this.touchEndTime = touchEndTime;
if(touchEndTime != null){
putQueryParameter("TouchEndTime", touchEndTime);
}
}
public List<Long> getProjectIdss() {
return this.projectIdss;
}
public void setProjectIdss(List<Long> projectIdss) {
this.projectIdss = projectIdss;
if (projectIdss != null) {
for (int i = 0; i < projectIdss.size(); i++) {
putQueryParameter("ProjectIds." + (i + 1) , projectIdss.get(i));
}
}
}
public Integer getHitStatus() {
return this.hitStatus;
}
public void setHitStatus(Integer hitStatus) {
this.hitStatus = hitStatus;
if(hitStatus != null){
putQueryParameter("HitStatus", hitStatus.toString());
}
}
public List<Long> getQualityRuleIdss() {
return this.qualityRuleIdss;
}
public void setQualityRuleIdss(List<Long> qualityRuleIdss) {
this.qualityRuleIdss = qualityRuleIdss;
if (qualityRuleIdss != null) {
for (int i = 0; i < qualityRuleIdss.size(); i++) {
putQueryParameter("QualityRuleIds." + (i + 1) , qualityRuleIdss.get(i));
}
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
if(pageNo != null){
putQueryParameter("PageNo", pageNo.toString());
}
}
public List<Long> getGroupIdss() {
return this.groupIdss;
}
public void setGroupIdss(List<Long> groupIdss) {
this.groupIdss = groupIdss;
if (groupIdss != null) {
for (int i = 0; i < groupIdss.size(); i++) {
putQueryParameter("GroupIds." + (i + 1) , groupIdss.get(i));
}
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getChannelType() {
return this.channelType;
}
public void setChannelType(String channelType) {
this.channelType = channelType;
if(channelType != null){
putQueryParameter("ChannelType", channelType);
}
}
public String getTouchStartTime() {
return this.touchStartTime;
}
public void setTouchStartTime(String touchStartTime) {
this.touchStartTime = touchStartTime;
if(touchStartTime != null){
putQueryParameter("TouchStartTime", touchStartTime);
}
}
@Override
public Class<GetQualityResultResponse> getResponseClass() {
return GetQualityResultResponse.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/GetQualityResultResponse.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.GetQualityResultResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetQualityResultResponse extends AcsResponse {
private String requestId;
private String message;
private String code;
private Boolean success;
private String channelTypeName;
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 String getChannelTypeName() {
return this.channelTypeName;
}
public void setChannelTypeName(String channelTypeName) {
this.channelTypeName = channelTypeName;
}
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 pageNo;
private List<QualityResultResponseListItem> qualityResultResponseList;
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 getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
}
public List<QualityResultResponseListItem> getQualityResultResponseList() {
return this.qualityResultResponseList;
}
public void setQualityResultResponseList(List<QualityResultResponseListItem> qualityResultResponseList) {
this.qualityResultResponseList = qualityResultResponseList;
}
public static class QualityResultResponseListItem {
private String groupName;
private Boolean hitStatus;
private String touchStartTime;
private String projectName;
private String ruleId;
private String projectId;
private String channelTypeName;
private String touchId;
private String groupId;
private String instanceName;
private String servicerName;
private String hitDetail;
private String memberName;
private String servicerId;
private String channelType;
private String ruleName;
public String getGroupName() {
return this.groupName;
}
public void setGroupName(String groupName) {
this.groupName = groupName;
}
public Boolean getHitStatus() {
return this.hitStatus;
}
public void setHitStatus(Boolean hitStatus) {
this.hitStatus = hitStatus;
}
public String getTouchStartTime() {
return this.touchStartTime;
}
public void setTouchStartTime(String touchStartTime) {
this.touchStartTime = touchStartTime;
}
public String getProjectName() {
return this.projectName;
}
public void setProjectName(String projectName) {
this.projectName = projectName;
}
public String getRuleId() {
return this.ruleId;
}
public void setRuleId(String ruleId) {
this.ruleId = ruleId;
}
public String getProjectId() {
return this.projectId;
}
public void setProjectId(String projectId) {
this.projectId = projectId;
}
public String getChannelTypeName() {
return this.channelTypeName;
}
public void setChannelTypeName(String channelTypeName) {
this.channelTypeName = channelTypeName;
}
public String getTouchId() {
return this.touchId;
}
public void setTouchId(String touchId) {
this.touchId = touchId;
}
public String getGroupId() {
return this.groupId;
}
public void setGroupId(String groupId) {
this.groupId = groupId;
}
public String getInstanceName() {
return this.instanceName;
}
public void setInstanceName(String instanceName) {
this.instanceName = instanceName;
}
public String getServicerName() {
return this.servicerName;
}
public void setServicerName(String servicerName) {
this.servicerName = servicerName;
}
public String getHitDetail() {
return this.hitDetail;
}
public void setHitDetail(String hitDetail) {
this.hitDetail = hitDetail;
}
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 getChannelType() {
return this.channelType;
}
public void setChannelType(String channelType) {
this.channelType = channelType;
}
public String getRuleName() {
return this.ruleName;
}
public void setRuleName(String ruleName) {
this.ruleName = ruleName;
}
}
}
@Override
public GetQualityResultResponse getInstance(UnmarshallerContext context) {
return GetQualityResultResponseUnmarshaller.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/GetQualityRuleDetailRequest.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 GetQualityRuleDetailRequest extends RpcAcsRequest<GetQualityRuleDetailResponse> {
private String instanceId;
private Long qualityRuleId;
public GetQualityRuleDetailRequest() {
super("aiccs", "2019-10-15", "GetQualityRuleDetail");
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 getQualityRuleId() {
return this.qualityRuleId;
}
public void setQualityRuleId(Long qualityRuleId) {
this.qualityRuleId = qualityRuleId;
if(qualityRuleId != null){
putQueryParameter("QualityRuleId", qualityRuleId.toString());
}
}
@Override
public Class<GetQualityRuleDetailResponse> getResponseClass() {
return GetQualityRuleDetailResponse.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/GetQualityRuleDetailResponse.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.GetQualityRuleDetailResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetQualityRuleDetailResponse 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 ruleCreateTime;
private Integer matchType;
private Long ruleId;
private Integer ruleTag;
private String name;
private List<String> keyWords;
public String getRuleCreateTime() {
return this.ruleCreateTime;
}
public void setRuleCreateTime(String ruleCreateTime) {
this.ruleCreateTime = ruleCreateTime;
}
public Integer getMatchType() {
return this.matchType;
}
public void setMatchType(Integer matchType) {
this.matchType = matchType;
}
public Long getRuleId() {
return this.ruleId;
}
public void setRuleId(Long ruleId) {
this.ruleId = ruleId;
}
public Integer getRuleTag() {
return this.ruleTag;
}
public void setRuleTag(Integer ruleTag) {
this.ruleTag = ruleTag;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public List<String> getKeyWords() {
return this.keyWords;
}
public void setKeyWords(List<String> keyWords) {
this.keyWords = keyWords;
}
}
@Override
public GetQualityRuleDetailResponse getInstance(UnmarshallerContext context) {
return GetQualityRuleDetailResponseUnmarshaller.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/GetQualityRuleListRequest.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 GetQualityRuleListRequest extends RpcAcsRequest<GetQualityRuleListResponse> {
private String instanceId;
private Integer pageNo;
private Integer pageSize;
public GetQualityRuleListRequest() {
super("aiccs", "2019-10-15", "GetQualityRuleList");
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 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<GetQualityRuleListResponse> getResponseClass() {
return GetQualityRuleListResponse.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/GetQualityRuleListResponse.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.GetQualityRuleListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetQualityRuleListResponse 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 pageSize;
private Long total;
private Integer pageNo;
private List<QualityRuleListItem> qualityRuleList;
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Long getTotal() {
return this.total;
}
public void setTotal(Long total) {
this.total = total;
}
public Integer getPageNo() {
return this.pageNo;
}
public void setPageNo(Integer pageNo) {
this.pageNo = pageNo;
}
public List<QualityRuleListItem> getQualityRuleList() {
return this.qualityRuleList;
}
public void setQualityRuleList(List<QualityRuleListItem> qualityRuleList) {
this.qualityRuleList = qualityRuleList;
}
public static class QualityRuleListItem {
private String ruleCreateTime;
private Integer matchType;
private Long ruleId;
private Integer ruleTag;
private String name;
private List<String> keyWords;
public String getRuleCreateTime() {
return this.ruleCreateTime;
}
public void setRuleCreateTime(String ruleCreateTime) {
this.ruleCreateTime = ruleCreateTime;
}
public Integer getMatchType() {
return this.matchType;
}
public void setMatchType(Integer matchType) {
this.matchType = matchType;
}
public Long getRuleId() {
return this.ruleId;
}
public void setRuleId(Long ruleId) {
this.ruleId = ruleId;
}
public Integer getRuleTag() {
return this.ruleTag;
}
public void setRuleTag(Integer ruleTag) {
this.ruleTag = ruleTag;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public List<String> getKeyWords() {
return this.keyWords;
}
public void setKeyWords(List<String> keyWords) {
this.keyWords = keyWords;
}
}
}
@Override
public GetQualityRuleListResponse getInstance(UnmarshallerContext context) {
return GetQualityRuleListResponseUnmarshaller.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/GetQualityRuleTagListRequest.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 GetQualityRuleTagListRequest extends RpcAcsRequest<GetQualityRuleTagListResponse> {
private String instanceId;
public GetQualityRuleTagListRequest() {
super("aiccs", "2019-10-15", "GetQualityRuleTagList");
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);
}
}
@Override
public Class<GetQualityRuleTagListResponse> getResponseClass() {
return GetQualityRuleTagListResponse.class;
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.