index
int64 | repo_id
string | file_path
string | content
string |
|---|---|---|---|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetNumberLocationRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class GetNumberLocationRequest extends RpcAcsRequest<GetNumberLocationResponse> {
private String number;
private String instanceId;
public GetNumberLocationRequest() {
super("CCC", "2020-07-01", "GetNumberLocation", "CCC");
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 getNumber() {
return this.number;
}
public void setNumber(String number) {
this.number = number;
if(number != null){
putQueryParameter("Number", number);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<GetNumberLocationResponse> getResponseClass() {
return GetNumberLocationResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetNumberLocationResponse.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.ccc.model.v20200701;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.GetNumberLocationResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetNumberLocationResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private Data data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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 Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String number;
private String city;
private String province;
public String getNumber() {
return this.number;
}
public void setNumber(String number) {
this.number = number;
}
public String getCity() {
return this.city;
}
public void setCity(String city) {
this.city = city;
}
public String getProvince() {
return this.province;
}
public void setProvince(String province) {
this.province = province;
}
}
@Override
public GetNumberLocationResponse getInstance(UnmarshallerContext context) {
return GetNumberLocationResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetRealtimeCampaignStatsRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class GetRealtimeCampaignStatsRequest extends RpcAcsRequest<GetRealtimeCampaignStatsResponse> {
private String queueId;
private String instanceId;
public GetRealtimeCampaignStatsRequest() {
super("CCC", "2020-07-01", "GetRealtimeCampaignStats", "CCC");
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 getQueueId() {
return this.queueId;
}
public void setQueueId(String queueId) {
this.queueId = queueId;
if(queueId != null){
putQueryParameter("QueueId", queueId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<GetRealtimeCampaignStatsResponse> getResponseClass() {
return GetRealtimeCampaignStatsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetRealtimeCampaignStatsResponse.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.ccc.model.v20200701;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.GetRealtimeCampaignStatsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetRealtimeCampaignStatsResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private Data data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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 Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Long loggedInAgents;
private Long readyAgents;
private Long breakingAgents;
private Long talkingAgents;
private Long workingAgents;
private Long caps;
private Long totalAgents;
private Long outboundScenarioReadyAgents;
private Long outboundScenarioBreakingAgents;
private Long outboundScenarioTalkingAgents;
private Long outboundScenarioWorkingAgents;
public Long getLoggedInAgents() {
return this.loggedInAgents;
}
public void setLoggedInAgents(Long loggedInAgents) {
this.loggedInAgents = loggedInAgents;
}
public Long getReadyAgents() {
return this.readyAgents;
}
public void setReadyAgents(Long readyAgents) {
this.readyAgents = readyAgents;
}
public Long getBreakingAgents() {
return this.breakingAgents;
}
public void setBreakingAgents(Long breakingAgents) {
this.breakingAgents = breakingAgents;
}
public Long getTalkingAgents() {
return this.talkingAgents;
}
public void setTalkingAgents(Long talkingAgents) {
this.talkingAgents = talkingAgents;
}
public Long getWorkingAgents() {
return this.workingAgents;
}
public void setWorkingAgents(Long workingAgents) {
this.workingAgents = workingAgents;
}
public Long getCaps() {
return this.caps;
}
public void setCaps(Long caps) {
this.caps = caps;
}
public Long getTotalAgents() {
return this.totalAgents;
}
public void setTotalAgents(Long totalAgents) {
this.totalAgents = totalAgents;
}
public Long getOutboundScenarioReadyAgents() {
return this.outboundScenarioReadyAgents;
}
public void setOutboundScenarioReadyAgents(Long outboundScenarioReadyAgents) {
this.outboundScenarioReadyAgents = outboundScenarioReadyAgents;
}
public Long getOutboundScenarioBreakingAgents() {
return this.outboundScenarioBreakingAgents;
}
public void setOutboundScenarioBreakingAgents(Long outboundScenarioBreakingAgents) {
this.outboundScenarioBreakingAgents = outboundScenarioBreakingAgents;
}
public Long getOutboundScenarioTalkingAgents() {
return this.outboundScenarioTalkingAgents;
}
public void setOutboundScenarioTalkingAgents(Long outboundScenarioTalkingAgents) {
this.outboundScenarioTalkingAgents = outboundScenarioTalkingAgents;
}
public Long getOutboundScenarioWorkingAgents() {
return this.outboundScenarioWorkingAgents;
}
public void setOutboundScenarioWorkingAgents(Long outboundScenarioWorkingAgents) {
this.outboundScenarioWorkingAgents = outboundScenarioWorkingAgents;
}
}
@Override
public GetRealtimeCampaignStatsResponse getInstance(UnmarshallerContext context) {
return GetRealtimeCampaignStatsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetRealtimeInstanceStatesRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class GetRealtimeInstanceStatesRequest extends RpcAcsRequest<GetRealtimeInstanceStatesResponse> {
private String instanceId;
private String mediaType;
public GetRealtimeInstanceStatesRequest() {
super("CCC", "2020-07-01", "GetRealtimeInstanceStates", "CCC");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getMediaType() {
return this.mediaType;
}
public void setMediaType(String mediaType) {
this.mediaType = mediaType;
if(mediaType != null){
putQueryParameter("MediaType", mediaType);
}
}
@Override
public Class<GetRealtimeInstanceStatesResponse> getResponseClass() {
return GetRealtimeInstanceStatesResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetRealtimeInstanceStatesResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.GetRealtimeInstanceStatesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetRealtimeInstanceStatesResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private Data data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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 Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Long workingAgents;
private Long longestWaitingTime;
private Long loggedInAgents;
private Long totalAgents;
private Long waitingCalls;
private Long breakingAgents;
private Long talkingAgents;
private Long interactiveCalls;
private Long readyAgents;
private String instanceId;
private List<BreakCodeDetail> breakCodeDetailList;
public Long getWorkingAgents() {
return this.workingAgents;
}
public void setWorkingAgents(Long workingAgents) {
this.workingAgents = workingAgents;
}
public Long getLongestWaitingTime() {
return this.longestWaitingTime;
}
public void setLongestWaitingTime(Long longestWaitingTime) {
this.longestWaitingTime = longestWaitingTime;
}
public Long getLoggedInAgents() {
return this.loggedInAgents;
}
public void setLoggedInAgents(Long loggedInAgents) {
this.loggedInAgents = loggedInAgents;
}
public Long getTotalAgents() {
return this.totalAgents;
}
public void setTotalAgents(Long totalAgents) {
this.totalAgents = totalAgents;
}
public Long getWaitingCalls() {
return this.waitingCalls;
}
public void setWaitingCalls(Long waitingCalls) {
this.waitingCalls = waitingCalls;
}
public Long getBreakingAgents() {
return this.breakingAgents;
}
public void setBreakingAgents(Long breakingAgents) {
this.breakingAgents = breakingAgents;
}
public Long getTalkingAgents() {
return this.talkingAgents;
}
public void setTalkingAgents(Long talkingAgents) {
this.talkingAgents = talkingAgents;
}
public Long getInteractiveCalls() {
return this.interactiveCalls;
}
public void setInteractiveCalls(Long interactiveCalls) {
this.interactiveCalls = interactiveCalls;
}
public Long getReadyAgents() {
return this.readyAgents;
}
public void setReadyAgents(Long readyAgents) {
this.readyAgents = readyAgents;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public List<BreakCodeDetail> getBreakCodeDetailList() {
return this.breakCodeDetailList;
}
public void setBreakCodeDetailList(List<BreakCodeDetail> breakCodeDetailList) {
this.breakCodeDetailList = breakCodeDetailList;
}
public static class BreakCodeDetail {
private String breakCode;
private Long count;
public String getBreakCode() {
return this.breakCode;
}
public void setBreakCode(String breakCode) {
this.breakCode = breakCode;
}
public Long getCount() {
return this.count;
}
public void setCount(Long count) {
this.count = count;
}
}
}
@Override
public GetRealtimeInstanceStatesResponse getInstance(UnmarshallerContext context) {
return GetRealtimeInstanceStatesResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetSchemaRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class GetSchemaRequest extends RpcAcsRequest<GetSchemaResponse> {
private String instanceId;
private String schemaId;
private String requestId;
public GetSchemaRequest() {
super("CCC", "2020-07-01", "GetSchema", "CCC");
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 getSchemaId() {
return this.schemaId;
}
public void setSchemaId(String schemaId) {
this.schemaId = schemaId;
if(schemaId != null){
putBodyParameter("SchemaId", schemaId);
}
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
if(requestId != null){
putBodyParameter("RequestId", requestId);
}
}
@Override
public Class<GetSchemaResponse> getResponseClass() {
return GetSchemaResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetSchemaResponse.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.ccc.model.v20200701;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.GetSchemaResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetSchemaResponse extends AcsResponse {
@Override
public GetSchemaResponse getInstance(UnmarshallerContext context) {
return GetSchemaResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetSkillGroupRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class GetSkillGroupRequest extends RpcAcsRequest<GetSkillGroupResponse> {
private String instanceId;
private String skillGroupId;
public GetSkillGroupRequest() {
super("CCC", "2020-07-01", "GetSkillGroup", "CCC");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getSkillGroupId() {
return this.skillGroupId;
}
public void setSkillGroupId(String skillGroupId) {
this.skillGroupId = skillGroupId;
if(skillGroupId != null){
putQueryParameter("SkillGroupId", skillGroupId);
}
}
@Override
public Class<GetSkillGroupResponse> getResponseClass() {
return GetSkillGroupResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetSkillGroupResponse.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.ccc.model.v20200701;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.GetSkillGroupResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetSkillGroupResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private Data data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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 Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String displayName;
private String instanceId;
private String name;
private String description;
private String skillGroupId;
private String mediaType;
public String getDisplayName() {
return this.displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
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;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getSkillGroupId() {
return this.skillGroupId;
}
public void setSkillGroupId(String skillGroupId) {
this.skillGroupId = skillGroupId;
}
public String getMediaType() {
return this.mediaType;
}
public void setMediaType(String mediaType) {
this.mediaType = mediaType;
}
}
@Override
public GetSkillGroupResponse getInstance(UnmarshallerContext context) {
return GetSkillGroupResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetTicketRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class GetTicketRequest extends RpcAcsRequest<GetTicketResponse> {
private String instanceId;
private String ticketId;
public GetTicketRequest() {
super("CCC", "2020-07-01", "GetTicket", "CCC");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getTicketId() {
return this.ticketId;
}
public void setTicketId(String ticketId) {
this.ticketId = ticketId;
if(ticketId != null){
putQueryParameter("TicketId", ticketId);
}
}
@Override
public Class<GetTicketResponse> getResponseClass() {
return GetTicketResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetTicketResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.GetTicketResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetTicketResponse extends AcsResponse {
private String requestId;
private Integer httpStatusCode;
private String code;
private String message;
private List<String> params;
private Data data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
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 String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public List<String> getParams() {
return this.params;
}
public void setParams(List<String> params) {
this.params = params;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String instanceId;
private String ticketId;
private String templateId;
private String templateVersion;
private String title;
private String context;
private String assignee;
private String assigneeName;
private String creator;
private String creatorName;
private String categoryId;
private String categoryName;
private String jobId;
private Long startTime;
private Long endTime;
private Long createdTime;
private Long updatedTime;
private String currentTaskId;
private String currentTaskName;
private Long currentTaskStartTime;
private String source;
private String customerId;
private String state;
private String closeCode;
private String comment;
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getTicketId() {
return this.ticketId;
}
public void setTicketId(String ticketId) {
this.ticketId = ticketId;
}
public String getTemplateId() {
return this.templateId;
}
public void setTemplateId(String templateId) {
this.templateId = templateId;
}
public String getTemplateVersion() {
return this.templateVersion;
}
public void setTemplateVersion(String templateVersion) {
this.templateVersion = templateVersion;
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
}
public String getContext() {
return this.context;
}
public void setContext(String context) {
this.context = context;
}
public String getAssignee() {
return this.assignee;
}
public void setAssignee(String assignee) {
this.assignee = assignee;
}
public String getAssigneeName() {
return this.assigneeName;
}
public void setAssigneeName(String assigneeName) {
this.assigneeName = assigneeName;
}
public String getCreator() {
return this.creator;
}
public void setCreator(String creator) {
this.creator = creator;
}
public String getCreatorName() {
return this.creatorName;
}
public void setCreatorName(String creatorName) {
this.creatorName = creatorName;
}
public String getCategoryId() {
return this.categoryId;
}
public void setCategoryId(String categoryId) {
this.categoryId = categoryId;
}
public String getCategoryName() {
return this.categoryName;
}
public void setCategoryName(String categoryName) {
this.categoryName = categoryName;
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
}
public Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
}
public Long getCreatedTime() {
return this.createdTime;
}
public void setCreatedTime(Long createdTime) {
this.createdTime = createdTime;
}
public Long getUpdatedTime() {
return this.updatedTime;
}
public void setUpdatedTime(Long updatedTime) {
this.updatedTime = updatedTime;
}
public String getCurrentTaskId() {
return this.currentTaskId;
}
public void setCurrentTaskId(String currentTaskId) {
this.currentTaskId = currentTaskId;
}
public String getCurrentTaskName() {
return this.currentTaskName;
}
public void setCurrentTaskName(String currentTaskName) {
this.currentTaskName = currentTaskName;
}
public Long getCurrentTaskStartTime() {
return this.currentTaskStartTime;
}
public void setCurrentTaskStartTime(Long currentTaskStartTime) {
this.currentTaskStartTime = currentTaskStartTime;
}
public String getSource() {
return this.source;
}
public void setSource(String source) {
this.source = source;
}
public String getCustomerId() {
return this.customerId;
}
public void setCustomerId(String customerId) {
this.customerId = customerId;
}
public String getState() {
return this.state;
}
public void setState(String state) {
this.state = state;
}
public String getCloseCode() {
return this.closeCode;
}
public void setCloseCode(String closeCode) {
this.closeCode = closeCode;
}
public String getComment() {
return this.comment;
}
public void setComment(String comment) {
this.comment = comment;
}
}
@Override
public GetTicketResponse getInstance(UnmarshallerContext context) {
return GetTicketResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetTicketSummaryReportRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class GetTicketSummaryReportRequest extends RpcAcsRequest<GetTicketSummaryReportResponse> {
private String creator;
private String assigneeType;
private Long endTime;
private Long startTime;
private String participant;
private Integer pageNumber;
private String instanceId;
private Integer pageSize;
private String state;
private String assignee;
private String categoryId;
public GetTicketSummaryReportRequest() {
super("CCC", "2020-07-01", "GetTicketSummaryReport", "CCC");
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 getCreator() {
return this.creator;
}
public void setCreator(String creator) {
this.creator = creator;
if(creator != null){
putQueryParameter("Creator", creator);
}
}
public String getAssigneeType() {
return this.assigneeType;
}
public void setAssigneeType(String assigneeType) {
this.assigneeType = assigneeType;
if(assigneeType != null){
putQueryParameter("AssigneeType", assigneeType);
}
}
public Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
if(endTime != null){
putQueryParameter("EndTime", endTime.toString());
}
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime.toString());
}
}
public String getParticipant() {
return this.participant;
}
public void setParticipant(String participant) {
this.participant = participant;
if(participant != null){
putQueryParameter("Participant", participant);
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getState() {
return this.state;
}
public void setState(String state) {
this.state = state;
if(state != null){
putQueryParameter("State", state);
}
}
public String getAssignee() {
return this.assignee;
}
public void setAssignee(String assignee) {
this.assignee = assignee;
if(assignee != null){
putQueryParameter("Assignee", assignee);
}
}
public String getCategoryId() {
return this.categoryId;
}
public void setCategoryId(String categoryId) {
this.categoryId = categoryId;
if(categoryId != null){
putQueryParameter("CategoryId", categoryId);
}
}
@Override
public Class<GetTicketSummaryReportResponse> getResponseClass() {
return GetTicketSummaryReportResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetTicketSummaryReportResponse.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.ccc.model.v20200701;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.GetTicketSummaryReportResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetTicketSummaryReportResponse extends AcsResponse {
private String requestId;
private String message;
private Long httpStatusCode;
private String code;
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 Long getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Long httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String ticketsCreated;
private String ticketsParticipated;
private String ticketsAssigned;
public String getTicketsCreated() {
return this.ticketsCreated;
}
public void setTicketsCreated(String ticketsCreated) {
this.ticketsCreated = ticketsCreated;
}
public String getTicketsParticipated() {
return this.ticketsParticipated;
}
public void setTicketsParticipated(String ticketsParticipated) {
this.ticketsParticipated = ticketsParticipated;
}
public String getTicketsAssigned() {
return this.ticketsAssigned;
}
public void setTicketsAssigned(String ticketsAssigned) {
this.ticketsAssigned = ticketsAssigned;
}
}
@Override
public GetTicketSummaryReportResponse getInstance(UnmarshallerContext context) {
return GetTicketSummaryReportResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetTicketTemplateRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class GetTicketTemplateRequest extends RpcAcsRequest<GetTicketTemplateResponse> {
private String templateVersion;
private String instanceId;
private String templateId;
public GetTicketTemplateRequest() {
super("CCC", "2020-07-01", "GetTicketTemplate", "CCC");
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 getTemplateVersion() {
return this.templateVersion;
}
public void setTemplateVersion(String templateVersion) {
this.templateVersion = templateVersion;
if(templateVersion != null){
putQueryParameter("TemplateVersion", templateVersion);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getTemplateId() {
return this.templateId;
}
public void setTemplateId(String templateId) {
this.templateId = templateId;
if(templateId != null){
putQueryParameter("TemplateId", templateId);
}
}
@Override
public Class<GetTicketTemplateResponse> getResponseClass() {
return GetTicketTemplateResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetTicketTemplateResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.GetTicketTemplateResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetTicketTemplateResponse extends AcsResponse {
private String requestId;
private Integer httpStatusCode;
private String code;
private String message;
private List<String> params;
private Data data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
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 String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public List<String> getParams() {
return this.params;
}
public void setParams(List<String> params) {
this.params = params;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String instanceId;
private String templateId;
private String name;
private String state;
private String editor;
private String categoryId;
private String processDefinition;
private Long updatedTime;
private List<TicketField> ticketFields;
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getTemplateId() {
return this.templateId;
}
public void setTemplateId(String templateId) {
this.templateId = templateId;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getState() {
return this.state;
}
public void setState(String state) {
this.state = state;
}
public String getEditor() {
return this.editor;
}
public void setEditor(String editor) {
this.editor = editor;
}
public String getCategoryId() {
return this.categoryId;
}
public void setCategoryId(String categoryId) {
this.categoryId = categoryId;
}
public String getProcessDefinition() {
return this.processDefinition;
}
public void setProcessDefinition(String processDefinition) {
this.processDefinition = processDefinition;
}
public Long getUpdatedTime() {
return this.updatedTime;
}
public void setUpdatedTime(Long updatedTime) {
this.updatedTime = updatedTime;
}
public List<TicketField> getTicketFields() {
return this.ticketFields;
}
public void setTicketFields(List<TicketField> ticketFields) {
this.ticketFields = ticketFields;
}
public static class TicketField {
private String displayName;
private String description;
private String name;
private String dataType;
private String pattern;
private String patternErrorMessage;
private Integer minLength;
private Integer maxLength;
private Double minimum;
private Double maximum;
private Boolean required;
private Boolean system;
private Boolean disabled;
private Boolean array;
private Boolean readOnly;
private String editorType;
private String attributes;
private Integer displayOrder;
private Long createdTime;
private Long updatedTime;
private String creator;
public String getDisplayName() {
return this.displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getDataType() {
return this.dataType;
}
public void setDataType(String dataType) {
this.dataType = dataType;
}
public String getPattern() {
return this.pattern;
}
public void setPattern(String pattern) {
this.pattern = pattern;
}
public String getPatternErrorMessage() {
return this.patternErrorMessage;
}
public void setPatternErrorMessage(String patternErrorMessage) {
this.patternErrorMessage = patternErrorMessage;
}
public Integer getMinLength() {
return this.minLength;
}
public void setMinLength(Integer minLength) {
this.minLength = minLength;
}
public Integer getMaxLength() {
return this.maxLength;
}
public void setMaxLength(Integer maxLength) {
this.maxLength = maxLength;
}
public Double getMinimum() {
return this.minimum;
}
public void setMinimum(Double minimum) {
this.minimum = minimum;
}
public Double getMaximum() {
return this.maximum;
}
public void setMaximum(Double maximum) {
this.maximum = maximum;
}
public Boolean getRequired() {
return this.required;
}
public void setRequired(Boolean required) {
this.required = required;
}
public Boolean getSystem() {
return this.system;
}
public void setSystem(Boolean system) {
this.system = system;
}
public Boolean getDisabled() {
return this.disabled;
}
public void setDisabled(Boolean disabled) {
this.disabled = disabled;
}
public Boolean getArray() {
return this.array;
}
public void setArray(Boolean array) {
this.array = array;
}
public Boolean getReadOnly() {
return this.readOnly;
}
public void setReadOnly(Boolean readOnly) {
this.readOnly = readOnly;
}
public String getEditorType() {
return this.editorType;
}
public void setEditorType(String editorType) {
this.editorType = editorType;
}
public String getAttributes() {
return this.attributes;
}
public void setAttributes(String attributes) {
this.attributes = attributes;
}
public Integer getDisplayOrder() {
return this.displayOrder;
}
public void setDisplayOrder(Integer displayOrder) {
this.displayOrder = displayOrder;
}
public Long getCreatedTime() {
return this.createdTime;
}
public void setCreatedTime(Long createdTime) {
this.createdTime = createdTime;
}
public Long getUpdatedTime() {
return this.updatedTime;
}
public void setUpdatedTime(Long updatedTime) {
this.updatedTime = updatedTime;
}
public String getCreator() {
return this.creator;
}
public void setCreator(String creator) {
this.creator = creator;
}
}
}
@Override
public GetTicketTemplateResponse getInstance(UnmarshallerContext context) {
return GetTicketTemplateResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetTurnCredentialsRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class GetTurnCredentialsRequest extends RpcAcsRequest<GetTurnCredentialsResponse> {
private String userId;
private String instanceId;
public GetTurnCredentialsRequest() {
super("CCC", "2020-07-01", "GetTurnCredentials", "CCC");
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 getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putQueryParameter("UserId", userId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<GetTurnCredentialsResponse> getResponseClass() {
return GetTurnCredentialsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetTurnCredentialsResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.GetTurnCredentialsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetTurnCredentialsResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private List<String> params;
private Data data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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 List<String> getParams() {
return this.params;
}
public void setParams(List<String> params) {
this.params = params;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String userName;
private String password;
public String getUserName() {
return this.userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
}
}
@Override
public GetTurnCredentialsResponse getInstance(UnmarshallerContext context) {
return GetTurnCredentialsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetTurnServerListRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class GetTurnServerListRequest extends RpcAcsRequest<GetTurnServerListResponse> {
private String instanceId;
public GetTurnServerListRequest() {
super("CCC", "2020-07-01", "GetTurnServerList", "CCC");
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<GetTurnServerListResponse> getResponseClass() {
return GetTurnServerListResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetTurnServerListResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.GetTurnServerListResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetTurnServerListResponse extends AcsResponse {
private Integer httpStatusCode;
private String code;
private String message;
private String requestId;
private String data;
private List<String> params;
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 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 List<String> getParams() {
return this.params;
}
public void setParams(List<String> params) {
this.params = params;
}
@Override
public GetTurnServerListResponse getInstance(UnmarshallerContext context) {
return GetTurnServerListResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetUploadAudioDataParamsRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class GetUploadAudioDataParamsRequest extends RpcAcsRequest<GetUploadAudioDataParamsResponse> {
private String contactId;
private String instanceId;
public GetUploadAudioDataParamsRequest() {
super("CCC", "2020-07-01", "GetUploadAudioDataParams", "CCC");
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 getContactId() {
return this.contactId;
}
public void setContactId(String contactId) {
this.contactId = contactId;
if(contactId != null){
putQueryParameter("ContactId", contactId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<GetUploadAudioDataParamsResponse> getResponseClass() {
return GetUploadAudioDataParamsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetUploadAudioDataParamsResponse.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.ccc.model.v20200701;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.GetUploadAudioDataParamsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetUploadAudioDataParamsResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private Data data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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 Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String paramsStr;
public String getParamsStr() {
return this.paramsStr;
}
public void setParamsStr(String paramsStr) {
this.paramsStr = paramsStr;
}
}
@Override
public GetUploadAudioDataParamsResponse getInstance(UnmarshallerContext context) {
return GetUploadAudioDataParamsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetUserRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class GetUserRequest extends RpcAcsRequest<GetUserResponse> {
private String extension;
private String userId;
private String instanceId;
public GetUserRequest() {
super("CCC", "2020-07-01", "GetUser", "CCC");
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 getExtension() {
return this.extension;
}
public void setExtension(String extension) {
this.extension = extension;
if(extension != null){
putQueryParameter("Extension", extension);
}
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putQueryParameter("UserId", userId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<GetUserResponse> getResponseClass() {
return GetUserResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetUserResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.GetUserResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetUserResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private List<String> params;
private Data data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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 List<String> getParams() {
return this.params;
}
public void setParams(List<String> params) {
this.params = params;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String displayName;
private String displayId;
private String extension;
private String loginName;
private String email;
private String workMode;
private String mobile;
private String userId;
private String roleName;
private String instanceId;
private String roleId;
private String deviceId;
private String deviceExt;
private String deviceState;
private String nickname;
private String avatarUrl;
public String getDisplayName() {
return this.displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
public String getDisplayId() {
return this.displayId;
}
public void setDisplayId(String displayId) {
this.displayId = displayId;
}
public String getExtension() {
return this.extension;
}
public void setExtension(String extension) {
this.extension = extension;
}
public String getLoginName() {
return this.loginName;
}
public void setLoginName(String loginName) {
this.loginName = loginName;
}
public String getEmail() {
return this.email;
}
public void setEmail(String email) {
this.email = email;
}
public String getWorkMode() {
return this.workMode;
}
public void setWorkMode(String workMode) {
this.workMode = workMode;
}
public String getMobile() {
return this.mobile;
}
public void setMobile(String mobile) {
this.mobile = mobile;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getRoleName() {
return this.roleName;
}
public void setRoleName(String roleName) {
this.roleName = roleName;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getRoleId() {
return this.roleId;
}
public void setRoleId(String roleId) {
this.roleId = roleId;
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String getDeviceExt() {
return this.deviceExt;
}
public void setDeviceExt(String deviceExt) {
this.deviceExt = deviceExt;
}
public String getDeviceState() {
return this.deviceState;
}
public void setDeviceState(String deviceState) {
this.deviceState = deviceState;
}
public String getNickname() {
return this.nickname;
}
public void setNickname(String nickname) {
this.nickname = nickname;
}
public String getAvatarUrl() {
return this.avatarUrl;
}
public void setAvatarUrl(String avatarUrl) {
this.avatarUrl = avatarUrl;
}
}
@Override
public GetUserResponse getInstance(UnmarshallerContext context) {
return GetUserResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetVideoRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class GetVideoRequest extends RpcAcsRequest<GetVideoResponse> {
private String contactId;
private String instanceId;
public GetVideoRequest() {
super("CCC", "2020-07-01", "GetVideo", "CCC");
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 getContactId() {
return this.contactId;
}
public void setContactId(String contactId) {
this.contactId = contactId;
if(contactId != null){
putQueryParameter("ContactId", contactId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<GetVideoResponse> getResponseClass() {
return GetVideoResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetVideoResponse.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.ccc.model.v20200701;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.GetVideoResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetVideoResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private Data data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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 Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String fileUrl;
private String fileName;
public String getFileUrl() {
return this.fileUrl;
}
public void setFileUrl(String fileUrl) {
this.fileUrl = fileUrl;
}
public String getFileName() {
return this.fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
}
@Override
public GetVideoResponse getInstance(UnmarshallerContext context) {
return GetVideoResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetVisitorLoginDetailsRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class GetVisitorLoginDetailsRequest extends RpcAcsRequest<GetVisitorLoginDetailsResponse> {
private String chatDeviceId;
private String token;
private String instanceId;
private String visitorId;
public GetVisitorLoginDetailsRequest() {
super("CCC", "2020-07-01", "GetVisitorLoginDetails", "CCC");
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 getChatDeviceId() {
return this.chatDeviceId;
}
public void setChatDeviceId(String chatDeviceId) {
this.chatDeviceId = chatDeviceId;
if(chatDeviceId != null){
putQueryParameter("ChatDeviceId", chatDeviceId);
}
}
public String getToken() {
return this.token;
}
public void setToken(String token) {
this.token = token;
if(token != null){
putQueryParameter("Token", token);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getVisitorId() {
return this.visitorId;
}
public void setVisitorId(String visitorId) {
this.visitorId = visitorId;
if(visitorId != null){
putQueryParameter("VisitorId", visitorId);
}
}
@Override
public Class<GetVisitorLoginDetailsResponse> getResponseClass() {
return GetVisitorLoginDetailsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetVisitorLoginDetailsResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.GetVisitorLoginDetailsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetVisitorLoginDetailsResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private List<String> params;
private Data data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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 List<String> getParams() {
return this.params;
}
public void setParams(List<String> params) {
this.params = params;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String chatLoginToken;
private String chatUserId;
private String chatDeviceId;
private String chatServerUrl;
private String chatAppKey;
private String chatAppId;
public String getChatLoginToken() {
return this.chatLoginToken;
}
public void setChatLoginToken(String chatLoginToken) {
this.chatLoginToken = chatLoginToken;
}
public String getChatUserId() {
return this.chatUserId;
}
public void setChatUserId(String chatUserId) {
this.chatUserId = chatUserId;
}
public String getChatDeviceId() {
return this.chatDeviceId;
}
public void setChatDeviceId(String chatDeviceId) {
this.chatDeviceId = chatDeviceId;
}
public String getChatServerUrl() {
return this.chatServerUrl;
}
public void setChatServerUrl(String chatServerUrl) {
this.chatServerUrl = chatServerUrl;
}
public String getChatAppKey() {
return this.chatAppKey;
}
public void setChatAppKey(String chatAppKey) {
this.chatAppKey = chatAppKey;
}
public String getChatAppId() {
return this.chatAppId;
}
public void setChatAppId(String chatAppId) {
this.chatAppId = chatAppId;
}
}
@Override
public GetVisitorLoginDetailsResponse getInstance(UnmarshallerContext context) {
return GetVisitorLoginDetailsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetVoicemailRecordingRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class GetVoicemailRecordingRequest extends RpcAcsRequest<GetVoicemailRecordingResponse> {
private String contactId;
private String instanceId;
public GetVoicemailRecordingRequest() {
super("CCC", "2020-07-01", "GetVoicemailRecording", "CCC");
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 getContactId() {
return this.contactId;
}
public void setContactId(String contactId) {
this.contactId = contactId;
if(contactId != null){
putQueryParameter("ContactId", contactId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<GetVoicemailRecordingResponse> getResponseClass() {
return GetVoicemailRecordingResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/GetVoicemailRecordingResponse.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.ccc.model.v20200701;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.GetVoicemailRecordingResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetVoicemailRecordingResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private Data data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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 Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String fileUrl;
private String fileName;
public String getFileUrl() {
return this.fileUrl;
}
public void setFileUrl(String fileUrl) {
this.fileUrl = fileUrl;
}
public String getFileName() {
return this.fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
}
@Override
public GetVoicemailRecordingResponse getInstance(UnmarshallerContext context) {
return GetVoicemailRecordingResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/HoldCallRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class HoldCallRequest extends RpcAcsRequest<HoldCallResponse> {
private String userId;
private String deviceId;
private String jobId;
private String instanceId;
private String music;
private String channelId;
public HoldCallRequest() {
super("CCC", "2020-07-01", "HoldCall", "CCC");
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 getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putQueryParameter("UserId", userId);
}
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
if(deviceId != null){
putQueryParameter("DeviceId", deviceId);
}
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
if(jobId != null){
putQueryParameter("JobId", jobId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getMusic() {
return this.music;
}
public void setMusic(String music) {
this.music = music;
if(music != null){
putQueryParameter("Music", music);
}
}
public String getChannelId() {
return this.channelId;
}
public void setChannelId(String channelId) {
this.channelId = channelId;
if(channelId != null){
putQueryParameter("ChannelId", channelId);
}
}
@Override
public Class<HoldCallResponse> getResponseClass() {
return HoldCallResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/HoldCallResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.HoldCallResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class HoldCallResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private List<String> params;
private Data data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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 List<String> getParams() {
return this.params;
}
public void setParams(List<String> params) {
this.params = params;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private CallContext callContext;
private UserContext userContext;
public CallContext getCallContext() {
return this.callContext;
}
public void setCallContext(CallContext callContext) {
this.callContext = callContext;
}
public UserContext getUserContext() {
return this.userContext;
}
public void setUserContext(UserContext userContext) {
this.userContext = userContext;
}
public static class CallContext {
private String callType;
private String instanceId;
private String jobId;
private List<ChannelContext> channelContexts;
public String getCallType() {
return this.callType;
}
public void setCallType(String callType) {
this.callType = callType;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
}
public List<ChannelContext> getChannelContexts() {
return this.channelContexts;
}
public void setChannelContexts(List<ChannelContext> channelContexts) {
this.channelContexts = channelContexts;
}
public static class ChannelContext {
private String releaseInitiator;
private String channelState;
private String destination;
private String userId;
private String skillGroupId;
private Long timestamp;
private String releaseReason;
private String callType;
private String jobId;
private String channelId;
private String originator;
private String userExtension;
public String getReleaseInitiator() {
return this.releaseInitiator;
}
public void setReleaseInitiator(String releaseInitiator) {
this.releaseInitiator = releaseInitiator;
}
public String getChannelState() {
return this.channelState;
}
public void setChannelState(String channelState) {
this.channelState = channelState;
}
public String getDestination() {
return this.destination;
}
public void setDestination(String destination) {
this.destination = destination;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getSkillGroupId() {
return this.skillGroupId;
}
public void setSkillGroupId(String skillGroupId) {
this.skillGroupId = skillGroupId;
}
public Long getTimestamp() {
return this.timestamp;
}
public void setTimestamp(Long timestamp) {
this.timestamp = timestamp;
}
public String getReleaseReason() {
return this.releaseReason;
}
public void setReleaseReason(String releaseReason) {
this.releaseReason = releaseReason;
}
public String getCallType() {
return this.callType;
}
public void setCallType(String callType) {
this.callType = callType;
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
}
public String getChannelId() {
return this.channelId;
}
public void setChannelId(String channelId) {
this.channelId = channelId;
}
public String getOriginator() {
return this.originator;
}
public void setOriginator(String originator) {
this.originator = originator;
}
public String getUserExtension() {
return this.userExtension;
}
public void setUserExtension(String userExtension) {
this.userExtension = userExtension;
}
}
}
public static class UserContext {
private String extension;
private Long heartbeat;
private String workMode;
private String deviceId;
private String userId;
private Long reserved;
private String breakCode;
private String instanceId;
private Boolean outboundScenario;
private String mobile;
private String jobId;
private String userState;
private List<String> signedSkillGroupIdList;
public String getExtension() {
return this.extension;
}
public void setExtension(String extension) {
this.extension = extension;
}
public Long getHeartbeat() {
return this.heartbeat;
}
public void setHeartbeat(Long heartbeat) {
this.heartbeat = heartbeat;
}
public String getWorkMode() {
return this.workMode;
}
public void setWorkMode(String workMode) {
this.workMode = workMode;
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public Long getReserved() {
return this.reserved;
}
public void setReserved(Long reserved) {
this.reserved = reserved;
}
public String getBreakCode() {
return this.breakCode;
}
public void setBreakCode(String breakCode) {
this.breakCode = breakCode;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public Boolean getOutboundScenario() {
return this.outboundScenario;
}
public void setOutboundScenario(Boolean outboundScenario) {
this.outboundScenario = outboundScenario;
}
public String getMobile() {
return this.mobile;
}
public void setMobile(String mobile) {
this.mobile = mobile;
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
}
public String getUserState() {
return this.userState;
}
public void setUserState(String userState) {
this.userState = userState;
}
public List<String> getSignedSkillGroupIdList() {
return this.signedSkillGroupIdList;
}
public void setSignedSkillGroupIdList(List<String> signedSkillGroupIdList) {
this.signedSkillGroupIdList = signedSkillGroupIdList;
}
}
}
@Override
public HoldCallResponse getInstance(UnmarshallerContext context) {
return HoldCallResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ImportAdminsRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ImportAdminsRequest extends RpcAcsRequest<ImportAdminsResponse> {
private String ramIdList;
private String instanceId;
public ImportAdminsRequest() {
super("CCC", "2020-07-01", "ImportAdmins", "CCC");
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 getRamIdList() {
return this.ramIdList;
}
public void setRamIdList(String ramIdList) {
this.ramIdList = ramIdList;
if(ramIdList != null){
putQueryParameter("RamIdList", ramIdList);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<ImportAdminsResponse> getResponseClass() {
return ImportAdminsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ImportAdminsResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ImportAdminsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ImportAdminsResponse extends AcsResponse {
private Integer httpStatusCode;
private String requestId;
private String code;
private String message;
private List<User> data;
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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 getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public List<User> getData() {
return this.data;
}
public void setData(List<User> data) {
this.data = data;
}
public static class User {
private String instanceId;
private String userId;
private String roleId;
private String extension;
private String ramId;
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getRoleId() {
return this.roleId;
}
public void setRoleId(String roleId) {
this.roleId = roleId;
}
public String getExtension() {
return this.extension;
}
public void setExtension(String extension) {
this.extension = extension;
}
public String getRamId() {
return this.ramId;
}
public void setRamId(String ramId) {
this.ramId = ramId;
}
}
@Override
public ImportAdminsResponse getInstance(UnmarshallerContext context) {
return ImportAdminsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ImportCorpNumbersRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ImportCorpNumbersRequest extends RpcAcsRequest<ImportCorpNumbersResponse> {
private String city;
private String numberList;
private String tagList;
private String province;
private String provider;
private String corpName;
public ImportCorpNumbersRequest() {
super("CCC", "2020-07-01", "ImportCorpNumbers", "CCC");
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 getCity() {
return this.city;
}
public void setCity(String city) {
this.city = city;
if(city != null){
putQueryParameter("City", city);
}
}
public String getNumberList() {
return this.numberList;
}
public void setNumberList(String numberList) {
this.numberList = numberList;
if(numberList != null){
putQueryParameter("NumberList", numberList);
}
}
public String getTagList() {
return this.tagList;
}
public void setTagList(String tagList) {
this.tagList = tagList;
if(tagList != null){
putQueryParameter("TagList", tagList);
}
}
public String getProvince() {
return this.province;
}
public void setProvince(String province) {
this.province = province;
if(province != null){
putQueryParameter("Province", province);
}
}
public String getProvider() {
return this.provider;
}
public void setProvider(String provider) {
this.provider = provider;
if(provider != null){
putQueryParameter("Provider", provider);
}
}
public String getCorpName() {
return this.corpName;
}
public void setCorpName(String corpName) {
this.corpName = corpName;
if(corpName != null){
putQueryParameter("CorpName", corpName);
}
}
@Override
public Class<ImportCorpNumbersResponse> getResponseClass() {
return ImportCorpNumbersResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ImportCorpNumbersResponse.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.ccc.model.v20200701;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ImportCorpNumbersResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ImportCorpNumbersResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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;
}
@Override
public ImportCorpNumbersResponse getInstance(UnmarshallerContext context) {
return ImportCorpNumbersResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ImportCustomCallTaggingRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ImportCustomCallTaggingRequest extends RpcAcsRequest<ImportCustomCallTaggingResponse> {
private String instanceId;
private String filePath;
public ImportCustomCallTaggingRequest() {
super("CCC", "2020-07-01", "ImportCustomCallTagging", "CCC");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getFilePath() {
return this.filePath;
}
public void setFilePath(String filePath) {
this.filePath = filePath;
if(filePath != null){
putQueryParameter("FilePath", filePath);
}
}
@Override
public Class<ImportCustomCallTaggingResponse> getResponseClass() {
return ImportCustomCallTaggingResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ImportCustomCallTaggingResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ImportCustomCallTaggingResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ImportCustomCallTaggingResponse extends AcsResponse {
private String requestId;
private Integer httpStatusCode;
private String code;
private String message;
private List<FailureItem> data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
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 String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public List<FailureItem> getData() {
return this.data;
}
public void setData(List<FailureItem> data) {
this.data = data;
}
public static class FailureItem {
private String item;
private String reason;
public String getItem() {
return this.item;
}
public void setItem(String item) {
this.item = item;
}
public String getReason() {
return this.reason;
}
public void setReason(String reason) {
this.reason = reason;
}
}
@Override
public ImportCustomCallTaggingResponse getInstance(UnmarshallerContext context) {
return ImportCustomCallTaggingResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ImportDoNotCallNumbersRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ImportDoNotCallNumbersRequest extends RpcAcsRequest<ImportDoNotCallNumbersResponse> {
private String remark;
private String numberList;
private String instanceId;
private String filePath;
public ImportDoNotCallNumbersRequest() {
super("CCC", "2020-07-01", "ImportDoNotCallNumbers", "CCC");
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 getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
if(remark != null){
putQueryParameter("Remark", remark);
}
}
public String getNumberList() {
return this.numberList;
}
public void setNumberList(String numberList) {
this.numberList = numberList;
if(numberList != null){
putQueryParameter("NumberList", numberList);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getFilePath() {
return this.filePath;
}
public void setFilePath(String filePath) {
this.filePath = filePath;
if(filePath != null){
putQueryParameter("FilePath", filePath);
}
}
@Override
public Class<ImportDoNotCallNumbersResponse> getResponseClass() {
return ImportDoNotCallNumbersResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ImportDoNotCallNumbersResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ImportDoNotCallNumbersResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ImportDoNotCallNumbersResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private List<String> params;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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 List<String> getParams() {
return this.params;
}
public void setParams(List<String> params) {
this.params = params;
}
@Override
public ImportDoNotCallNumbersResponse getInstance(UnmarshallerContext context) {
return ImportDoNotCallNumbersResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ImportDocumentsRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ImportDocumentsRequest extends RpcAcsRequest<ImportDocumentsResponse> {
private String ossFileKey;
private String instanceId;
private String schemaId;
private String requestId;
public ImportDocumentsRequest() {
super("CCC", "2020-07-01", "ImportDocuments", "CCC");
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 getOssFileKey() {
return this.ossFileKey;
}
public void setOssFileKey(String ossFileKey) {
this.ossFileKey = ossFileKey;
if(ossFileKey != null){
putBodyParameter("OssFileKey", ossFileKey);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public String getSchemaId() {
return this.schemaId;
}
public void setSchemaId(String schemaId) {
this.schemaId = schemaId;
if(schemaId != null){
putBodyParameter("SchemaId", schemaId);
}
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
if(requestId != null){
putBodyParameter("RequestId", requestId);
}
}
@Override
public Class<ImportDocumentsResponse> getResponseClass() {
return ImportDocumentsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ImportDocumentsResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ImportDocumentsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ImportDocumentsResponse extends AcsResponse {
private String requestId;
private Integer httpStatusCode;
private String code;
private String message;
private List<String> params;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
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 String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public List<String> getParams() {
return this.params;
}
public void setParams(List<String> params) {
this.params = params;
}
@Override
public ImportDocumentsResponse getInstance(UnmarshallerContext context) {
return ImportDocumentsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/InitiateAttendedTransferRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class InitiateAttendedTransferRequest extends RpcAcsRequest<InitiateAttendedTransferResponse> {
private String transferee;
private String transferor;
private String routingType;
private Long queuingOverflowThreshold;
private String userId;
private Integer timeoutSeconds;
private String jobId;
private String strategyParams;
private String deviceId;
private String transfereeType;
private String tags;
private String strategyName;
private String instanceId;
private Long queuingTimeoutSeconds;
private Integer callPriority;
public InitiateAttendedTransferRequest() {
super("CCC", "2020-07-01", "InitiateAttendedTransfer", "CCC");
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 getTransferee() {
return this.transferee;
}
public void setTransferee(String transferee) {
this.transferee = transferee;
if(transferee != null){
putQueryParameter("Transferee", transferee);
}
}
public String getTransferor() {
return this.transferor;
}
public void setTransferor(String transferor) {
this.transferor = transferor;
if(transferor != null){
putQueryParameter("Transferor", transferor);
}
}
public String getRoutingType() {
return this.routingType;
}
public void setRoutingType(String routingType) {
this.routingType = routingType;
if(routingType != null){
putQueryParameter("RoutingType", routingType);
}
}
public Long getQueuingOverflowThreshold() {
return this.queuingOverflowThreshold;
}
public void setQueuingOverflowThreshold(Long queuingOverflowThreshold) {
this.queuingOverflowThreshold = queuingOverflowThreshold;
if(queuingOverflowThreshold != null){
putQueryParameter("QueuingOverflowThreshold", queuingOverflowThreshold.toString());
}
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putQueryParameter("UserId", userId);
}
}
public Integer getTimeoutSeconds() {
return this.timeoutSeconds;
}
public void setTimeoutSeconds(Integer timeoutSeconds) {
this.timeoutSeconds = timeoutSeconds;
if(timeoutSeconds != null){
putQueryParameter("TimeoutSeconds", timeoutSeconds.toString());
}
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
if(jobId != null){
putQueryParameter("JobId", jobId);
}
}
public String getStrategyParams() {
return this.strategyParams;
}
public void setStrategyParams(String strategyParams) {
this.strategyParams = strategyParams;
if(strategyParams != null){
putQueryParameter("StrategyParams", strategyParams);
}
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
if(deviceId != null){
putQueryParameter("DeviceId", deviceId);
}
}
public String getTransfereeType() {
return this.transfereeType;
}
public void setTransfereeType(String transfereeType) {
this.transfereeType = transfereeType;
if(transfereeType != null){
putQueryParameter("TransfereeType", transfereeType);
}
}
public String getTags() {
return this.tags;
}
public void setTags(String tags) {
this.tags = tags;
if(tags != null){
putQueryParameter("Tags", tags);
}
}
public String getStrategyName() {
return this.strategyName;
}
public void setStrategyName(String strategyName) {
this.strategyName = strategyName;
if(strategyName != null){
putQueryParameter("StrategyName", strategyName);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Long getQueuingTimeoutSeconds() {
return this.queuingTimeoutSeconds;
}
public void setQueuingTimeoutSeconds(Long queuingTimeoutSeconds) {
this.queuingTimeoutSeconds = queuingTimeoutSeconds;
if(queuingTimeoutSeconds != null){
putQueryParameter("QueuingTimeoutSeconds", queuingTimeoutSeconds.toString());
}
}
public Integer getCallPriority() {
return this.callPriority;
}
public void setCallPriority(Integer callPriority) {
this.callPriority = callPriority;
if(callPriority != null){
putQueryParameter("CallPriority", callPriority.toString());
}
}
@Override
public Class<InitiateAttendedTransferResponse> getResponseClass() {
return InitiateAttendedTransferResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/InitiateAttendedTransferResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.InitiateAttendedTransferResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class InitiateAttendedTransferResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private List<String> params;
private Data data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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 List<String> getParams() {
return this.params;
}
public void setParams(List<String> params) {
this.params = params;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Long contextId;
private CallContext callContext;
private UserContext userContext;
public Long getContextId() {
return this.contextId;
}
public void setContextId(Long contextId) {
this.contextId = contextId;
}
public CallContext getCallContext() {
return this.callContext;
}
public void setCallContext(CallContext callContext) {
this.callContext = callContext;
}
public UserContext getUserContext() {
return this.userContext;
}
public void setUserContext(UserContext userContext) {
this.userContext = userContext;
}
public static class CallContext {
private String callType;
private String instanceId;
private String jobId;
private List<ChannelContext> channelContexts;
public String getCallType() {
return this.callType;
}
public void setCallType(String callType) {
this.callType = callType;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
}
public List<ChannelContext> getChannelContexts() {
return this.channelContexts;
}
public void setChannelContexts(List<ChannelContext> channelContexts) {
this.channelContexts = channelContexts;
}
public static class ChannelContext {
private Integer index;
private String releaseInitiator;
private String channelState;
private String destination;
private String userId;
private String channelFlags;
private String skillGroupId;
private Long timestamp;
private String releaseReason;
private String callType;
private String jobId;
private String channelId;
private String userExtension;
private String originator;
public Integer getIndex() {
return this.index;
}
public void setIndex(Integer index) {
this.index = index;
}
public String getReleaseInitiator() {
return this.releaseInitiator;
}
public void setReleaseInitiator(String releaseInitiator) {
this.releaseInitiator = releaseInitiator;
}
public String getChannelState() {
return this.channelState;
}
public void setChannelState(String channelState) {
this.channelState = channelState;
}
public String getDestination() {
return this.destination;
}
public void setDestination(String destination) {
this.destination = destination;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getChannelFlags() {
return this.channelFlags;
}
public void setChannelFlags(String channelFlags) {
this.channelFlags = channelFlags;
}
public String getSkillGroupId() {
return this.skillGroupId;
}
public void setSkillGroupId(String skillGroupId) {
this.skillGroupId = skillGroupId;
}
public Long getTimestamp() {
return this.timestamp;
}
public void setTimestamp(Long timestamp) {
this.timestamp = timestamp;
}
public String getReleaseReason() {
return this.releaseReason;
}
public void setReleaseReason(String releaseReason) {
this.releaseReason = releaseReason;
}
public String getCallType() {
return this.callType;
}
public void setCallType(String callType) {
this.callType = callType;
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
}
public String getChannelId() {
return this.channelId;
}
public void setChannelId(String channelId) {
this.channelId = channelId;
}
public String getUserExtension() {
return this.userExtension;
}
public void setUserExtension(String userExtension) {
this.userExtension = userExtension;
}
public String getOriginator() {
return this.originator;
}
public void setOriginator(String originator) {
this.originator = originator;
}
}
}
public static class UserContext {
private String extension;
private Long heartbeat;
private String workMode;
private String deviceId;
private String userId;
private Long reserved;
private String breakCode;
private String instanceId;
private Boolean outboundScenario;
private String mobile;
private String jobId;
private String userState;
private List<String> signedSkillGroupIdList;
public String getExtension() {
return this.extension;
}
public void setExtension(String extension) {
this.extension = extension;
}
public Long getHeartbeat() {
return this.heartbeat;
}
public void setHeartbeat(Long heartbeat) {
this.heartbeat = heartbeat;
}
public String getWorkMode() {
return this.workMode;
}
public void setWorkMode(String workMode) {
this.workMode = workMode;
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public Long getReserved() {
return this.reserved;
}
public void setReserved(Long reserved) {
this.reserved = reserved;
}
public String getBreakCode() {
return this.breakCode;
}
public void setBreakCode(String breakCode) {
this.breakCode = breakCode;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public Boolean getOutboundScenario() {
return this.outboundScenario;
}
public void setOutboundScenario(Boolean outboundScenario) {
this.outboundScenario = outboundScenario;
}
public String getMobile() {
return this.mobile;
}
public void setMobile(String mobile) {
this.mobile = mobile;
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
}
public String getUserState() {
return this.userState;
}
public void setUserState(String userState) {
this.userState = userState;
}
public List<String> getSignedSkillGroupIdList() {
return this.signedSkillGroupIdList;
}
public void setSignedSkillGroupIdList(List<String> signedSkillGroupIdList) {
this.signedSkillGroupIdList = signedSkillGroupIdList;
}
}
}
@Override
public InitiateAttendedTransferResponse getInstance(UnmarshallerContext context) {
return InitiateAttendedTransferResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/InterceptCallRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class InterceptCallRequest extends RpcAcsRequest<InterceptCallResponse> {
private String interceptedUserId;
private String userId;
private String deviceId;
private String jobId;
private Integer timeoutSeconds;
private String instanceId;
public InterceptCallRequest() {
super("CCC", "2020-07-01", "InterceptCall", "CCC");
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 getInterceptedUserId() {
return this.interceptedUserId;
}
public void setInterceptedUserId(String interceptedUserId) {
this.interceptedUserId = interceptedUserId;
if(interceptedUserId != null){
putQueryParameter("InterceptedUserId", interceptedUserId);
}
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putQueryParameter("UserId", userId);
}
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
if(deviceId != null){
putQueryParameter("DeviceId", deviceId);
}
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
if(jobId != null){
putQueryParameter("JobId", jobId);
}
}
public Integer getTimeoutSeconds() {
return this.timeoutSeconds;
}
public void setTimeoutSeconds(Integer timeoutSeconds) {
this.timeoutSeconds = timeoutSeconds;
if(timeoutSeconds != null){
putQueryParameter("TimeoutSeconds", timeoutSeconds.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<InterceptCallResponse> getResponseClass() {
return InterceptCallResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/InterceptCallResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.InterceptCallResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class InterceptCallResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private List<String> params;
private Data data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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 List<String> getParams() {
return this.params;
}
public void setParams(List<String> params) {
this.params = params;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private CallContext callContext;
private UserContext userContext;
public CallContext getCallContext() {
return this.callContext;
}
public void setCallContext(CallContext callContext) {
this.callContext = callContext;
}
public UserContext getUserContext() {
return this.userContext;
}
public void setUserContext(UserContext userContext) {
this.userContext = userContext;
}
public static class CallContext {
private String callType;
private String instanceId;
private String jobId;
private List<ChannelContext> channelContexts;
public String getCallType() {
return this.callType;
}
public void setCallType(String callType) {
this.callType = callType;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
}
public List<ChannelContext> getChannelContexts() {
return this.channelContexts;
}
public void setChannelContexts(List<ChannelContext> channelContexts) {
this.channelContexts = channelContexts;
}
public static class ChannelContext {
private Integer index;
private String releaseInitiator;
private String channelState;
private String destination;
private String userId;
private String channelFlags;
private String skillGroupId;
private Long timestamp;
private String releaseReason;
private String callType;
private String jobId;
private String channelId;
private String userExtension;
private String originator;
public Integer getIndex() {
return this.index;
}
public void setIndex(Integer index) {
this.index = index;
}
public String getReleaseInitiator() {
return this.releaseInitiator;
}
public void setReleaseInitiator(String releaseInitiator) {
this.releaseInitiator = releaseInitiator;
}
public String getChannelState() {
return this.channelState;
}
public void setChannelState(String channelState) {
this.channelState = channelState;
}
public String getDestination() {
return this.destination;
}
public void setDestination(String destination) {
this.destination = destination;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getChannelFlags() {
return this.channelFlags;
}
public void setChannelFlags(String channelFlags) {
this.channelFlags = channelFlags;
}
public String getSkillGroupId() {
return this.skillGroupId;
}
public void setSkillGroupId(String skillGroupId) {
this.skillGroupId = skillGroupId;
}
public Long getTimestamp() {
return this.timestamp;
}
public void setTimestamp(Long timestamp) {
this.timestamp = timestamp;
}
public String getReleaseReason() {
return this.releaseReason;
}
public void setReleaseReason(String releaseReason) {
this.releaseReason = releaseReason;
}
public String getCallType() {
return this.callType;
}
public void setCallType(String callType) {
this.callType = callType;
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
}
public String getChannelId() {
return this.channelId;
}
public void setChannelId(String channelId) {
this.channelId = channelId;
}
public String getUserExtension() {
return this.userExtension;
}
public void setUserExtension(String userExtension) {
this.userExtension = userExtension;
}
public String getOriginator() {
return this.originator;
}
public void setOriginator(String originator) {
this.originator = originator;
}
}
}
public static class UserContext {
private String extension;
private Long heartbeat;
private String workMode;
private String deviceId;
private String userId;
private Long reserved;
private String breakCode;
private String instanceId;
private Boolean outboundScenario;
private String mobile;
private String jobId;
private String userState;
private List<String> signedSkillGroupIdList;
public String getExtension() {
return this.extension;
}
public void setExtension(String extension) {
this.extension = extension;
}
public Long getHeartbeat() {
return this.heartbeat;
}
public void setHeartbeat(Long heartbeat) {
this.heartbeat = heartbeat;
}
public String getWorkMode() {
return this.workMode;
}
public void setWorkMode(String workMode) {
this.workMode = workMode;
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public Long getReserved() {
return this.reserved;
}
public void setReserved(Long reserved) {
this.reserved = reserved;
}
public String getBreakCode() {
return this.breakCode;
}
public void setBreakCode(String breakCode) {
this.breakCode = breakCode;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public Boolean getOutboundScenario() {
return this.outboundScenario;
}
public void setOutboundScenario(Boolean outboundScenario) {
this.outboundScenario = outboundScenario;
}
public String getMobile() {
return this.mobile;
}
public void setMobile(String mobile) {
this.mobile = mobile;
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
}
public String getUserState() {
return this.userState;
}
public void setUserState(String userState) {
this.userState = userState;
}
public List<String> getSignedSkillGroupIdList() {
return this.signedSkillGroupIdList;
}
public void setSignedSkillGroupIdList(List<String> signedSkillGroupIdList) {
this.signedSkillGroupIdList = signedSkillGroupIdList;
}
}
}
@Override
public InterceptCallResponse getInstance(UnmarshallerContext context) {
return InterceptCallResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/LaunchAuthenticationRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class LaunchAuthenticationRequest extends RpcAcsRequest<LaunchAuthenticationResponse> {
private String contactFlowId;
private String contactFlowVariables;
private String userId;
private String deviceId;
private String jobId;
private String instanceId;
public LaunchAuthenticationRequest() {
super("CCC", "2020-07-01", "LaunchAuthentication", "CCC");
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 getContactFlowId() {
return this.contactFlowId;
}
public void setContactFlowId(String contactFlowId) {
this.contactFlowId = contactFlowId;
if(contactFlowId != null){
putQueryParameter("ContactFlowId", contactFlowId);
}
}
public String getContactFlowVariables() {
return this.contactFlowVariables;
}
public void setContactFlowVariables(String contactFlowVariables) {
this.contactFlowVariables = contactFlowVariables;
if(contactFlowVariables != null){
putQueryParameter("ContactFlowVariables", contactFlowVariables);
}
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putQueryParameter("UserId", userId);
}
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
if(deviceId != null){
putQueryParameter("DeviceId", deviceId);
}
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
if(jobId != null){
putQueryParameter("JobId", jobId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<LaunchAuthenticationResponse> getResponseClass() {
return LaunchAuthenticationResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/LaunchAuthenticationResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.LaunchAuthenticationResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class LaunchAuthenticationResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private List<String> params;
private Data data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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 List<String> getParams() {
return this.params;
}
public void setParams(List<String> params) {
this.params = params;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private CallContext callContext;
private UserContext userContext;
public CallContext getCallContext() {
return this.callContext;
}
public void setCallContext(CallContext callContext) {
this.callContext = callContext;
}
public UserContext getUserContext() {
return this.userContext;
}
public void setUserContext(UserContext userContext) {
this.userContext = userContext;
}
public static class CallContext {
private String callType;
private String instanceId;
private String jobId;
private List<ChannelContext> channelContexts;
public String getCallType() {
return this.callType;
}
public void setCallType(String callType) {
this.callType = callType;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
}
public List<ChannelContext> getChannelContexts() {
return this.channelContexts;
}
public void setChannelContexts(List<ChannelContext> channelContexts) {
this.channelContexts = channelContexts;
}
public static class ChannelContext {
private Integer index;
private String releaseInitiator;
private String channelState;
private String destination;
private String userId;
private String channelFlags;
private String skillGroupId;
private Long timestamp;
private String releaseReason;
private String callType;
private String jobId;
private String channelId;
private String userExtension;
private String originator;
public Integer getIndex() {
return this.index;
}
public void setIndex(Integer index) {
this.index = index;
}
public String getReleaseInitiator() {
return this.releaseInitiator;
}
public void setReleaseInitiator(String releaseInitiator) {
this.releaseInitiator = releaseInitiator;
}
public String getChannelState() {
return this.channelState;
}
public void setChannelState(String channelState) {
this.channelState = channelState;
}
public String getDestination() {
return this.destination;
}
public void setDestination(String destination) {
this.destination = destination;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getChannelFlags() {
return this.channelFlags;
}
public void setChannelFlags(String channelFlags) {
this.channelFlags = channelFlags;
}
public String getSkillGroupId() {
return this.skillGroupId;
}
public void setSkillGroupId(String skillGroupId) {
this.skillGroupId = skillGroupId;
}
public Long getTimestamp() {
return this.timestamp;
}
public void setTimestamp(Long timestamp) {
this.timestamp = timestamp;
}
public String getReleaseReason() {
return this.releaseReason;
}
public void setReleaseReason(String releaseReason) {
this.releaseReason = releaseReason;
}
public String getCallType() {
return this.callType;
}
public void setCallType(String callType) {
this.callType = callType;
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
}
public String getChannelId() {
return this.channelId;
}
public void setChannelId(String channelId) {
this.channelId = channelId;
}
public String getUserExtension() {
return this.userExtension;
}
public void setUserExtension(String userExtension) {
this.userExtension = userExtension;
}
public String getOriginator() {
return this.originator;
}
public void setOriginator(String originator) {
this.originator = originator;
}
}
}
public static class UserContext {
private String extension;
private Long heartbeat;
private String workMode;
private String deviceId;
private String userId;
private Long reserved;
private String breakCode;
private String instanceId;
private Boolean outboundScenario;
private String mobile;
private String jobId;
private String userState;
private List<String> signedSkillGroupIdList;
public String getExtension() {
return this.extension;
}
public void setExtension(String extension) {
this.extension = extension;
}
public Long getHeartbeat() {
return this.heartbeat;
}
public void setHeartbeat(Long heartbeat) {
this.heartbeat = heartbeat;
}
public String getWorkMode() {
return this.workMode;
}
public void setWorkMode(String workMode) {
this.workMode = workMode;
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public Long getReserved() {
return this.reserved;
}
public void setReserved(Long reserved) {
this.reserved = reserved;
}
public String getBreakCode() {
return this.breakCode;
}
public void setBreakCode(String breakCode) {
this.breakCode = breakCode;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public Boolean getOutboundScenario() {
return this.outboundScenario;
}
public void setOutboundScenario(Boolean outboundScenario) {
this.outboundScenario = outboundScenario;
}
public String getMobile() {
return this.mobile;
}
public void setMobile(String mobile) {
this.mobile = mobile;
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
}
public String getUserState() {
return this.userState;
}
public void setUserState(String userState) {
this.userState = userState;
}
public List<String> getSignedSkillGroupIdList() {
return this.signedSkillGroupIdList;
}
public void setSignedSkillGroupIdList(List<String> signedSkillGroupIdList) {
this.signedSkillGroupIdList = signedSkillGroupIdList;
}
}
}
@Override
public LaunchAuthenticationResponse getInstance(UnmarshallerContext context) {
return LaunchAuthenticationResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/LaunchSurveyRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class LaunchSurveyRequest extends RpcAcsRequest<LaunchSurveyResponse> {
private String contactFlowId;
private String surveyTemplateVariables;
private String contactFlowVariables;
private String userId;
private String deviceId;
private String surveyTemplateId;
private String jobId;
private String instanceId;
private String smsMetadataId;
private String surveyChannel;
public LaunchSurveyRequest() {
super("CCC", "2020-07-01", "LaunchSurvey", "CCC");
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 getContactFlowId() {
return this.contactFlowId;
}
public void setContactFlowId(String contactFlowId) {
this.contactFlowId = contactFlowId;
if(contactFlowId != null){
putQueryParameter("ContactFlowId", contactFlowId);
}
}
public String getSurveyTemplateVariables() {
return this.surveyTemplateVariables;
}
public void setSurveyTemplateVariables(String surveyTemplateVariables) {
this.surveyTemplateVariables = surveyTemplateVariables;
if(surveyTemplateVariables != null){
putQueryParameter("SurveyTemplateVariables", surveyTemplateVariables);
}
}
public String getContactFlowVariables() {
return this.contactFlowVariables;
}
public void setContactFlowVariables(String contactFlowVariables) {
this.contactFlowVariables = contactFlowVariables;
if(contactFlowVariables != null){
putQueryParameter("ContactFlowVariables", contactFlowVariables);
}
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putQueryParameter("UserId", userId);
}
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
if(deviceId != null){
putQueryParameter("DeviceId", deviceId);
}
}
public String getSurveyTemplateId() {
return this.surveyTemplateId;
}
public void setSurveyTemplateId(String surveyTemplateId) {
this.surveyTemplateId = surveyTemplateId;
if(surveyTemplateId != null){
putQueryParameter("SurveyTemplateId", surveyTemplateId);
}
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
if(jobId != null){
putQueryParameter("JobId", jobId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getSmsMetadataId() {
return this.smsMetadataId;
}
public void setSmsMetadataId(String smsMetadataId) {
this.smsMetadataId = smsMetadataId;
if(smsMetadataId != null){
putQueryParameter("SmsMetadataId", smsMetadataId);
}
}
public String getSurveyChannel() {
return this.surveyChannel;
}
public void setSurveyChannel(String surveyChannel) {
this.surveyChannel = surveyChannel;
if(surveyChannel != null){
putQueryParameter("SurveyChannel", surveyChannel);
}
}
@Override
public Class<LaunchSurveyResponse> getResponseClass() {
return LaunchSurveyResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/LaunchSurveyResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.LaunchSurveyResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class LaunchSurveyResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private List<String> params;
private Data data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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 List<String> getParams() {
return this.params;
}
public void setParams(List<String> params) {
this.params = params;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Long contextId;
private CallContext callContext;
private UserContext userContext;
public Long getContextId() {
return this.contextId;
}
public void setContextId(Long contextId) {
this.contextId = contextId;
}
public CallContext getCallContext() {
return this.callContext;
}
public void setCallContext(CallContext callContext) {
this.callContext = callContext;
}
public UserContext getUserContext() {
return this.userContext;
}
public void setUserContext(UserContext userContext) {
this.userContext = userContext;
}
public static class CallContext {
private String callType;
private String instanceId;
private String jobId;
private List<ChannelContext> channelContexts;
public String getCallType() {
return this.callType;
}
public void setCallType(String callType) {
this.callType = callType;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
}
public List<ChannelContext> getChannelContexts() {
return this.channelContexts;
}
public void setChannelContexts(List<ChannelContext> channelContexts) {
this.channelContexts = channelContexts;
}
public static class ChannelContext {
private Integer index;
private String releaseInitiator;
private String channelState;
private String destination;
private String userId;
private String channelFlags;
private String skillGroupId;
private Long timestamp;
private String releaseReason;
private String callType;
private String jobId;
private String channelId;
private String userExtension;
private String originator;
public Integer getIndex() {
return this.index;
}
public void setIndex(Integer index) {
this.index = index;
}
public String getReleaseInitiator() {
return this.releaseInitiator;
}
public void setReleaseInitiator(String releaseInitiator) {
this.releaseInitiator = releaseInitiator;
}
public String getChannelState() {
return this.channelState;
}
public void setChannelState(String channelState) {
this.channelState = channelState;
}
public String getDestination() {
return this.destination;
}
public void setDestination(String destination) {
this.destination = destination;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getChannelFlags() {
return this.channelFlags;
}
public void setChannelFlags(String channelFlags) {
this.channelFlags = channelFlags;
}
public String getSkillGroupId() {
return this.skillGroupId;
}
public void setSkillGroupId(String skillGroupId) {
this.skillGroupId = skillGroupId;
}
public Long getTimestamp() {
return this.timestamp;
}
public void setTimestamp(Long timestamp) {
this.timestamp = timestamp;
}
public String getReleaseReason() {
return this.releaseReason;
}
public void setReleaseReason(String releaseReason) {
this.releaseReason = releaseReason;
}
public String getCallType() {
return this.callType;
}
public void setCallType(String callType) {
this.callType = callType;
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
}
public String getChannelId() {
return this.channelId;
}
public void setChannelId(String channelId) {
this.channelId = channelId;
}
public String getUserExtension() {
return this.userExtension;
}
public void setUserExtension(String userExtension) {
this.userExtension = userExtension;
}
public String getOriginator() {
return this.originator;
}
public void setOriginator(String originator) {
this.originator = originator;
}
}
}
public static class UserContext {
private String extension;
private Long heartbeat;
private String workMode;
private String deviceId;
private String userId;
private Long reserved;
private String breakCode;
private String instanceId;
private Boolean outboundScenario;
private String mobile;
private String jobId;
private String userState;
private List<String> signedSkillGroupIdList;
public String getExtension() {
return this.extension;
}
public void setExtension(String extension) {
this.extension = extension;
}
public Long getHeartbeat() {
return this.heartbeat;
}
public void setHeartbeat(Long heartbeat) {
this.heartbeat = heartbeat;
}
public String getWorkMode() {
return this.workMode;
}
public void setWorkMode(String workMode) {
this.workMode = workMode;
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public Long getReserved() {
return this.reserved;
}
public void setReserved(Long reserved) {
this.reserved = reserved;
}
public String getBreakCode() {
return this.breakCode;
}
public void setBreakCode(String breakCode) {
this.breakCode = breakCode;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public Boolean getOutboundScenario() {
return this.outboundScenario;
}
public void setOutboundScenario(Boolean outboundScenario) {
this.outboundScenario = outboundScenario;
}
public String getMobile() {
return this.mobile;
}
public void setMobile(String mobile) {
this.mobile = mobile;
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
}
public String getUserState() {
return this.userState;
}
public void setUserState(String userState) {
this.userState = userState;
}
public List<String> getSignedSkillGroupIdList() {
return this.signedSkillGroupIdList;
}
public void setSignedSkillGroupIdList(List<String> signedSkillGroupIdList) {
this.signedSkillGroupIdList = signedSkillGroupIdList;
}
}
}
@Override
public LaunchSurveyResponse getInstance(UnmarshallerContext context) {
return LaunchSurveyResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListAgentStateLogsRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListAgentStateLogsRequest extends RpcAcsRequest<ListAgentStateLogsResponse> {
private String agentId;
private Long endTime;
private Long startTime;
private String instanceId;
public ListAgentStateLogsRequest() {
super("CCC", "2020-07-01", "ListAgentStateLogs", "CCC");
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 getAgentId() {
return this.agentId;
}
public void setAgentId(String agentId) {
this.agentId = agentId;
if(agentId != null){
putQueryParameter("AgentId", agentId);
}
}
public Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
if(endTime != null){
putQueryParameter("EndTime", endTime.toString());
}
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<ListAgentStateLogsResponse> getResponseClass() {
return ListAgentStateLogsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListAgentStateLogsResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ListAgentStateLogsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListAgentStateLogsResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private List<DataItem> data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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 List<DataItem> getData() {
return this.data;
}
public void setData(List<DataItem> data) {
this.data = data;
}
public static class DataItem {
private Long startTime;
private String stateCode;
private Long duration;
private String state;
private Boolean outboundScenario;
private String breakCode;
private String workMode;
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
}
public String getStateCode() {
return this.stateCode;
}
public void setStateCode(String stateCode) {
this.stateCode = stateCode;
}
public Long getDuration() {
return this.duration;
}
public void setDuration(Long duration) {
this.duration = duration;
}
public String getState() {
return this.state;
}
public void setState(String state) {
this.state = state;
}
public Boolean getOutboundScenario() {
return this.outboundScenario;
}
public void setOutboundScenario(Boolean outboundScenario) {
this.outboundScenario = outboundScenario;
}
public String getBreakCode() {
return this.breakCode;
}
public void setBreakCode(String breakCode) {
this.breakCode = breakCode;
}
public String getWorkMode() {
return this.workMode;
}
public void setWorkMode(String workMode) {
this.workMode = workMode;
}
}
@Override
public ListAgentStateLogsResponse getInstance(UnmarshallerContext context) {
return ListAgentStateLogsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListAgentStatesRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListAgentStatesRequest extends RpcAcsRequest<ListAgentStatesResponse> {
private String agentIds;
private Integer pageNumber;
private String instanceId;
private String skillGroupId;
private Integer pageSize;
private String state;
private Boolean excludeOfflineUsers;
public ListAgentStatesRequest() {
super("CCC", "2020-07-01", "ListAgentStates", "CCC");
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 getAgentIds() {
return this.agentIds;
}
public void setAgentIds(String agentIds) {
this.agentIds = agentIds;
if(agentIds != null){
putQueryParameter("AgentIds", agentIds);
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getSkillGroupId() {
return this.skillGroupId;
}
public void setSkillGroupId(String skillGroupId) {
this.skillGroupId = skillGroupId;
if(skillGroupId != null){
putQueryParameter("SkillGroupId", skillGroupId);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getState() {
return this.state;
}
public void setState(String state) {
this.state = state;
if(state != null){
putQueryParameter("State", state);
}
}
public Boolean getExcludeOfflineUsers() {
return this.excludeOfflineUsers;
}
public void setExcludeOfflineUsers(Boolean excludeOfflineUsers) {
this.excludeOfflineUsers = excludeOfflineUsers;
if(excludeOfflineUsers != null){
putQueryParameter("ExcludeOfflineUsers", excludeOfflineUsers.toString());
}
}
@Override
public Class<ListAgentStatesResponse> getResponseClass() {
return ListAgentStatesResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListAgentStatesResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ListAgentStatesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListAgentStatesResponse extends AcsResponse {
private Integer httpStatusCode;
private String code;
private String message;
private String requestId;
private Boolean success;
private Data data;
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 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 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 pageNumber;
private Integer pageSize;
private Integer totalCount;
private List<RealTimeAgentState> list;
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<RealTimeAgentState> getList() {
return this.list;
}
public void setList(List<RealTimeAgentState> list) {
this.list = list;
}
public static class RealTimeAgentState {
private String loginName;
private String dn;
private String stateDuration;
private String state;
private String agentId;
private String agentName;
private String instanceId;
private String breakCode;
private Boolean outboundScenario;
public String getLoginName() {
return this.loginName;
}
public void setLoginName(String loginName) {
this.loginName = loginName;
}
public String getDn() {
return this.dn;
}
public void setDn(String dn) {
this.dn = dn;
}
public String getStateDuration() {
return this.stateDuration;
}
public void setStateDuration(String stateDuration) {
this.stateDuration = stateDuration;
}
public String getState() {
return this.state;
}
public void setState(String state) {
this.state = state;
}
public String getAgentId() {
return this.agentId;
}
public void setAgentId(String agentId) {
this.agentId = agentId;
}
public String getAgentName() {
return this.agentName;
}
public void setAgentName(String agentName) {
this.agentName = agentName;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getBreakCode() {
return this.breakCode;
}
public void setBreakCode(String breakCode) {
this.breakCode = breakCode;
}
public Boolean getOutboundScenario() {
return this.outboundScenario;
}
public void setOutboundScenario(Boolean outboundScenario) {
this.outboundScenario = outboundScenario;
}
}
}
@Override
public ListAgentStatesResponse getInstance(UnmarshallerContext context) {
return ListAgentStatesResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListAgentSummaryReportsSinceMidnightRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListAgentSummaryReportsSinceMidnightRequest extends RpcAcsRequest<ListAgentSummaryReportsSinceMidnightResponse> {
private String agentIds;
private Integer pageNumber;
private String instanceId;
private String skillGroupId;
private Integer pageSize;
public ListAgentSummaryReportsSinceMidnightRequest() {
super("CCC", "2020-07-01", "ListAgentSummaryReportsSinceMidnight", "CCC");
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 getAgentIds() {
return this.agentIds;
}
public void setAgentIds(String agentIds) {
this.agentIds = agentIds;
if(agentIds != null){
putQueryParameter("AgentIds", agentIds);
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getSkillGroupId() {
return this.skillGroupId;
}
public void setSkillGroupId(String skillGroupId) {
this.skillGroupId = skillGroupId;
if(skillGroupId != null){
putQueryParameter("SkillGroupId", skillGroupId);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
@Override
public Class<ListAgentSummaryReportsSinceMidnightResponse> getResponseClass() {
return ListAgentSummaryReportsSinceMidnightResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListAgentSummaryReportsSinceMidnightResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ListAgentSummaryReportsSinceMidnightResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListAgentSummaryReportsSinceMidnightResponse extends AcsResponse {
private Integer httpStatusCode;
private String code;
private String message;
private String requestId;
private Boolean success;
private PagedAgentSummaryReport pagedAgentSummaryReport;
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 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 Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public PagedAgentSummaryReport getPagedAgentSummaryReport() {
return this.pagedAgentSummaryReport;
}
public void setPagedAgentSummaryReport(PagedAgentSummaryReport pagedAgentSummaryReport) {
this.pagedAgentSummaryReport = pagedAgentSummaryReport;
}
public static class PagedAgentSummaryReport {
private Integer pageNumber;
private Integer pageSize;
private Integer totalCount;
private List<AgentSummaryReport> list;
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<AgentSummaryReport> getList() {
return this.list;
}
public void setList(List<AgentSummaryReport> list) {
this.list = list;
}
public static class AgentSummaryReport {
private String loginName;
private String agentId;
private String agentName;
private String skillGroupNames;
private String timestamp;
private String instanceId;
private String skillGroupIds;
private Overall overall;
private Inbound inbound;
private Outbound outbound;
public String getLoginName() {
return this.loginName;
}
public void setLoginName(String loginName) {
this.loginName = loginName;
}
public String getAgentId() {
return this.agentId;
}
public void setAgentId(String agentId) {
this.agentId = agentId;
}
public String getAgentName() {
return this.agentName;
}
public void setAgentName(String agentName) {
this.agentName = agentName;
}
public String getSkillGroupNames() {
return this.skillGroupNames;
}
public void setSkillGroupNames(String skillGroupNames) {
this.skillGroupNames = skillGroupNames;
}
public String getTimestamp() {
return this.timestamp;
}
public void setTimestamp(String timestamp) {
this.timestamp = timestamp;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getSkillGroupIds() {
return this.skillGroupIds;
}
public void setSkillGroupIds(String skillGroupIds) {
this.skillGroupIds = skillGroupIds;
}
public Overall getOverall() {
return this.overall;
}
public void setOverall(Overall overall) {
this.overall = overall;
}
public Inbound getInbound() {
return this.inbound;
}
public void setInbound(Inbound inbound) {
this.inbound = inbound;
}
public Outbound getOutbound() {
return this.outbound;
}
public void setOutbound(Outbound outbound) {
this.outbound = outbound;
}
public static class Overall {
private Long totalTalkTime;
private Long totalLoggedInTime;
private Float occupancyRate;
private Long totalWorkTime;
private Long maxWorkTime;
private Long averageWorkTime;
private Long averageTalkTime;
private Float satisfactionIndex;
private Long satisfactionSurveysOffered;
private Long satisfactionSurveysResponded;
private Long averageReadyTime;
private Long maxReadyTime;
private Long oneTransferCalls;
private Long maxTalkTime;
private Long totalReadyTime;
private Long totalBreakTime;
private Long totalCalls;
public Long getTotalTalkTime() {
return this.totalTalkTime;
}
public void setTotalTalkTime(Long totalTalkTime) {
this.totalTalkTime = totalTalkTime;
}
public Long getTotalLoggedInTime() {
return this.totalLoggedInTime;
}
public void setTotalLoggedInTime(Long totalLoggedInTime) {
this.totalLoggedInTime = totalLoggedInTime;
}
public Float getOccupancyRate() {
return this.occupancyRate;
}
public void setOccupancyRate(Float occupancyRate) {
this.occupancyRate = occupancyRate;
}
public Long getTotalWorkTime() {
return this.totalWorkTime;
}
public void setTotalWorkTime(Long totalWorkTime) {
this.totalWorkTime = totalWorkTime;
}
public Long getMaxWorkTime() {
return this.maxWorkTime;
}
public void setMaxWorkTime(Long maxWorkTime) {
this.maxWorkTime = maxWorkTime;
}
public Long getAverageWorkTime() {
return this.averageWorkTime;
}
public void setAverageWorkTime(Long averageWorkTime) {
this.averageWorkTime = averageWorkTime;
}
public Long getAverageTalkTime() {
return this.averageTalkTime;
}
public void setAverageTalkTime(Long averageTalkTime) {
this.averageTalkTime = averageTalkTime;
}
public Float getSatisfactionIndex() {
return this.satisfactionIndex;
}
public void setSatisfactionIndex(Float satisfactionIndex) {
this.satisfactionIndex = satisfactionIndex;
}
public Long getSatisfactionSurveysOffered() {
return this.satisfactionSurveysOffered;
}
public void setSatisfactionSurveysOffered(Long satisfactionSurveysOffered) {
this.satisfactionSurveysOffered = satisfactionSurveysOffered;
}
public Long getSatisfactionSurveysResponded() {
return this.satisfactionSurveysResponded;
}
public void setSatisfactionSurveysResponded(Long satisfactionSurveysResponded) {
this.satisfactionSurveysResponded = satisfactionSurveysResponded;
}
public Long getAverageReadyTime() {
return this.averageReadyTime;
}
public void setAverageReadyTime(Long averageReadyTime) {
this.averageReadyTime = averageReadyTime;
}
public Long getMaxReadyTime() {
return this.maxReadyTime;
}
public void setMaxReadyTime(Long maxReadyTime) {
this.maxReadyTime = maxReadyTime;
}
public Long getOneTransferCalls() {
return this.oneTransferCalls;
}
public void setOneTransferCalls(Long oneTransferCalls) {
this.oneTransferCalls = oneTransferCalls;
}
public Long getMaxTalkTime() {
return this.maxTalkTime;
}
public void setMaxTalkTime(Long maxTalkTime) {
this.maxTalkTime = maxTalkTime;
}
public Long getTotalReadyTime() {
return this.totalReadyTime;
}
public void setTotalReadyTime(Long totalReadyTime) {
this.totalReadyTime = totalReadyTime;
}
public Long getTotalBreakTime() {
return this.totalBreakTime;
}
public void setTotalBreakTime(Long totalBreakTime) {
this.totalBreakTime = totalBreakTime;
}
public Long getTotalCalls() {
return this.totalCalls;
}
public void setTotalCalls(Long totalCalls) {
this.totalCalls = totalCalls;
}
}
public static class Inbound {
private Long totalTalkTime;
private Long callsOffered;
private Long averageRingTime;
private Long callsHandled;
private Float serviceLevel20;
private Long totalWorkTime;
private Long maxWorkTime;
private Long averageWorkTime;
private Long averageTalkTime;
private Float satisfactionIndex;
private Long satisfactionSurveysOffered;
private Float handleRate;
private Long satisfactionSurveysResponded;
private Long totalRingTime;
private Long maxTalkTime;
private Long maxRingTime;
public Long getTotalTalkTime() {
return this.totalTalkTime;
}
public void setTotalTalkTime(Long totalTalkTime) {
this.totalTalkTime = totalTalkTime;
}
public Long getCallsOffered() {
return this.callsOffered;
}
public void setCallsOffered(Long callsOffered) {
this.callsOffered = callsOffered;
}
public Long getAverageRingTime() {
return this.averageRingTime;
}
public void setAverageRingTime(Long averageRingTime) {
this.averageRingTime = averageRingTime;
}
public Long getCallsHandled() {
return this.callsHandled;
}
public void setCallsHandled(Long callsHandled) {
this.callsHandled = callsHandled;
}
public Float getServiceLevel20() {
return this.serviceLevel20;
}
public void setServiceLevel20(Float serviceLevel20) {
this.serviceLevel20 = serviceLevel20;
}
public Long getTotalWorkTime() {
return this.totalWorkTime;
}
public void setTotalWorkTime(Long totalWorkTime) {
this.totalWorkTime = totalWorkTime;
}
public Long getMaxWorkTime() {
return this.maxWorkTime;
}
public void setMaxWorkTime(Long maxWorkTime) {
this.maxWorkTime = maxWorkTime;
}
public Long getAverageWorkTime() {
return this.averageWorkTime;
}
public void setAverageWorkTime(Long averageWorkTime) {
this.averageWorkTime = averageWorkTime;
}
public Long getAverageTalkTime() {
return this.averageTalkTime;
}
public void setAverageTalkTime(Long averageTalkTime) {
this.averageTalkTime = averageTalkTime;
}
public Float getSatisfactionIndex() {
return this.satisfactionIndex;
}
public void setSatisfactionIndex(Float satisfactionIndex) {
this.satisfactionIndex = satisfactionIndex;
}
public Long getSatisfactionSurveysOffered() {
return this.satisfactionSurveysOffered;
}
public void setSatisfactionSurveysOffered(Long satisfactionSurveysOffered) {
this.satisfactionSurveysOffered = satisfactionSurveysOffered;
}
public Float getHandleRate() {
return this.handleRate;
}
public void setHandleRate(Float handleRate) {
this.handleRate = handleRate;
}
public Long getSatisfactionSurveysResponded() {
return this.satisfactionSurveysResponded;
}
public void setSatisfactionSurveysResponded(Long satisfactionSurveysResponded) {
this.satisfactionSurveysResponded = satisfactionSurveysResponded;
}
public Long getTotalRingTime() {
return this.totalRingTime;
}
public void setTotalRingTime(Long totalRingTime) {
this.totalRingTime = totalRingTime;
}
public Long getMaxTalkTime() {
return this.maxTalkTime;
}
public void setMaxTalkTime(Long maxTalkTime) {
this.maxTalkTime = maxTalkTime;
}
public Long getMaxRingTime() {
return this.maxRingTime;
}
public void setMaxRingTime(Long maxRingTime) {
this.maxRingTime = maxRingTime;
}
}
public static class Outbound {
private Long totalTalkTime;
private Long maxDialingTime;
private Long callsDialed;
private Long callsAnswered;
private Float answerRate;
private Long totalWorkTime;
private String maxWorkTime;
private Long totalDialingTime;
private Long averageTalkTime;
private Long averageWorkTime;
private Float satisfactionIndex;
private Long satisfactionSurveysOffered;
private Long satisfactionSurveysResponded;
private Long maxTalkTime;
private Long averageDialingTime;
public Long getTotalTalkTime() {
return this.totalTalkTime;
}
public void setTotalTalkTime(Long totalTalkTime) {
this.totalTalkTime = totalTalkTime;
}
public Long getMaxDialingTime() {
return this.maxDialingTime;
}
public void setMaxDialingTime(Long maxDialingTime) {
this.maxDialingTime = maxDialingTime;
}
public Long getCallsDialed() {
return this.callsDialed;
}
public void setCallsDialed(Long callsDialed) {
this.callsDialed = callsDialed;
}
public Long getCallsAnswered() {
return this.callsAnswered;
}
public void setCallsAnswered(Long callsAnswered) {
this.callsAnswered = callsAnswered;
}
public Float getAnswerRate() {
return this.answerRate;
}
public void setAnswerRate(Float answerRate) {
this.answerRate = answerRate;
}
public Long getTotalWorkTime() {
return this.totalWorkTime;
}
public void setTotalWorkTime(Long totalWorkTime) {
this.totalWorkTime = totalWorkTime;
}
public String getMaxWorkTime() {
return this.maxWorkTime;
}
public void setMaxWorkTime(String maxWorkTime) {
this.maxWorkTime = maxWorkTime;
}
public Long getTotalDialingTime() {
return this.totalDialingTime;
}
public void setTotalDialingTime(Long totalDialingTime) {
this.totalDialingTime = totalDialingTime;
}
public Long getAverageTalkTime() {
return this.averageTalkTime;
}
public void setAverageTalkTime(Long averageTalkTime) {
this.averageTalkTime = averageTalkTime;
}
public Long getAverageWorkTime() {
return this.averageWorkTime;
}
public void setAverageWorkTime(Long averageWorkTime) {
this.averageWorkTime = averageWorkTime;
}
public Float getSatisfactionIndex() {
return this.satisfactionIndex;
}
public void setSatisfactionIndex(Float satisfactionIndex) {
this.satisfactionIndex = satisfactionIndex;
}
public Long getSatisfactionSurveysOffered() {
return this.satisfactionSurveysOffered;
}
public void setSatisfactionSurveysOffered(Long satisfactionSurveysOffered) {
this.satisfactionSurveysOffered = satisfactionSurveysOffered;
}
public Long getSatisfactionSurveysResponded() {
return this.satisfactionSurveysResponded;
}
public void setSatisfactionSurveysResponded(Long satisfactionSurveysResponded) {
this.satisfactionSurveysResponded = satisfactionSurveysResponded;
}
public Long getMaxTalkTime() {
return this.maxTalkTime;
}
public void setMaxTalkTime(Long maxTalkTime) {
this.maxTalkTime = maxTalkTime;
}
public Long getAverageDialingTime() {
return this.averageDialingTime;
}
public void setAverageDialingTime(Long averageDialingTime) {
this.averageDialingTime = averageDialingTime;
}
}
}
}
@Override
public ListAgentSummaryReportsSinceMidnightResponse getInstance(UnmarshallerContext context) {
return ListAgentSummaryReportsSinceMidnightResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListAttemptsRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListAttemptsRequest extends RpcAcsRequest<ListAttemptsResponse> {
private String contactId;
private String campaignId;
private String criteria;
private String callee;
private Long startTime;
private Integer pageNumber;
private Integer pageSize;
private String queueId;
private String agentId;
private Long endTime;
private String caller;
private String instanceId;
private String caseId;
private String attemptId;
public ListAttemptsRequest() {
super("CCC", "2020-07-01", "ListAttempts", "CCC");
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 getContactId() {
return this.contactId;
}
public void setContactId(String contactId) {
this.contactId = contactId;
if(contactId != null){
putQueryParameter("ContactId", contactId);
}
}
public String getCampaignId() {
return this.campaignId;
}
public void setCampaignId(String campaignId) {
this.campaignId = campaignId;
if(campaignId != null){
putQueryParameter("CampaignId", campaignId);
}
}
public String getCriteria() {
return this.criteria;
}
public void setCriteria(String criteria) {
this.criteria = criteria;
if(criteria != null){
putQueryParameter("Criteria", criteria);
}
}
public String getCallee() {
return this.callee;
}
public void setCallee(String callee) {
this.callee = callee;
if(callee != null){
putQueryParameter("Callee", callee);
}
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime.toString());
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getQueueId() {
return this.queueId;
}
public void setQueueId(String queueId) {
this.queueId = queueId;
if(queueId != null){
putQueryParameter("QueueId", queueId);
}
}
public String getAgentId() {
return this.agentId;
}
public void setAgentId(String agentId) {
this.agentId = agentId;
if(agentId != null){
putQueryParameter("AgentId", agentId);
}
}
public Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
if(endTime != null){
putQueryParameter("EndTime", endTime.toString());
}
}
public String getCaller() {
return this.caller;
}
public void setCaller(String caller) {
this.caller = caller;
if(caller != null){
putQueryParameter("Caller", caller);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getCaseId() {
return this.caseId;
}
public void setCaseId(String caseId) {
this.caseId = caseId;
if(caseId != null){
putQueryParameter("CaseId", caseId);
}
}
public String getAttemptId() {
return this.attemptId;
}
public void setAttemptId(String attemptId) {
this.attemptId = attemptId;
if(attemptId != null){
putQueryParameter("AttemptId", attemptId);
}
}
@Override
public Class<ListAttemptsResponse> getResponseClass() {
return ListAttemptsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListAttemptsResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ListAttemptsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListAttemptsResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private Data data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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 Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Integer totalCount;
private Integer pageNumber;
private Integer pageSize;
private List<AttemptList> list;
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public List<AttemptList> getList() {
return this.list;
}
public void setList(List<AttemptList> list) {
this.list = list;
}
public static class AttemptList {
private String attemptId;
private String contactId;
private String caseId;
private String campaignId;
private String instanceId;
private String queueId;
private String caller;
private String callee;
private String agentId;
private Long dialTime;
private Long dialDuration;
private Long customerEstablishedTime;
private Long customerReleasedTime;
private Long enterIvrTime;
private Long ivrDuration;
private Long enqueueTime;
private Long queueDuration;
private Long assignAgentTime;
private Long agentRingDuration;
private Long agentEstablishedTime;
public String getAttemptId() {
return this.attemptId;
}
public void setAttemptId(String attemptId) {
this.attemptId = attemptId;
}
public String getContactId() {
return this.contactId;
}
public void setContactId(String contactId) {
this.contactId = contactId;
}
public String getCaseId() {
return this.caseId;
}
public void setCaseId(String caseId) {
this.caseId = caseId;
}
public String getCampaignId() {
return this.campaignId;
}
public void setCampaignId(String campaignId) {
this.campaignId = campaignId;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getQueueId() {
return this.queueId;
}
public void setQueueId(String queueId) {
this.queueId = queueId;
}
public String getCaller() {
return this.caller;
}
public void setCaller(String caller) {
this.caller = caller;
}
public String getCallee() {
return this.callee;
}
public void setCallee(String callee) {
this.callee = callee;
}
public String getAgentId() {
return this.agentId;
}
public void setAgentId(String agentId) {
this.agentId = agentId;
}
public Long getDialTime() {
return this.dialTime;
}
public void setDialTime(Long dialTime) {
this.dialTime = dialTime;
}
public Long getDialDuration() {
return this.dialDuration;
}
public void setDialDuration(Long dialDuration) {
this.dialDuration = dialDuration;
}
public Long getCustomerEstablishedTime() {
return this.customerEstablishedTime;
}
public void setCustomerEstablishedTime(Long customerEstablishedTime) {
this.customerEstablishedTime = customerEstablishedTime;
}
public Long getCustomerReleasedTime() {
return this.customerReleasedTime;
}
public void setCustomerReleasedTime(Long customerReleasedTime) {
this.customerReleasedTime = customerReleasedTime;
}
public Long getEnterIvrTime() {
return this.enterIvrTime;
}
public void setEnterIvrTime(Long enterIvrTime) {
this.enterIvrTime = enterIvrTime;
}
public Long getIvrDuration() {
return this.ivrDuration;
}
public void setIvrDuration(Long ivrDuration) {
this.ivrDuration = ivrDuration;
}
public Long getEnqueueTime() {
return this.enqueueTime;
}
public void setEnqueueTime(Long enqueueTime) {
this.enqueueTime = enqueueTime;
}
public Long getQueueDuration() {
return this.queueDuration;
}
public void setQueueDuration(Long queueDuration) {
this.queueDuration = queueDuration;
}
public Long getAssignAgentTime() {
return this.assignAgentTime;
}
public void setAssignAgentTime(Long assignAgentTime) {
this.assignAgentTime = assignAgentTime;
}
public Long getAgentRingDuration() {
return this.agentRingDuration;
}
public void setAgentRingDuration(Long agentRingDuration) {
this.agentRingDuration = agentRingDuration;
}
public Long getAgentEstablishedTime() {
return this.agentEstablishedTime;
}
public void setAgentEstablishedTime(Long agentEstablishedTime) {
this.agentEstablishedTime = agentEstablishedTime;
}
}
}
@Override
public ListAttemptsResponse getInstance(UnmarshallerContext context) {
return ListAttemptsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListAudioFilesRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListAudioFilesRequest extends RpcAcsRequest<ListAudioFilesResponse> {
private String usage;
private Integer pageNumber;
private String instanceId;
private Integer pageSize;
private String status;
public ListAudioFilesRequest() {
super("CCC", "2020-07-01", "ListAudioFiles", "CCC");
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 getUsage() {
return this.usage;
}
public void setUsage(String usage) {
this.usage = usage;
if(usage != null){
putQueryParameter("Usage", usage);
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
if(status != null){
putQueryParameter("Status", status);
}
}
@Override
public Class<ListAudioFilesResponse> getResponseClass() {
return ListAudioFilesResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListAudioFilesResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ListAudioFilesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListAudioFilesResponse extends AcsResponse {
private Integer httpStatusCode;
private String requestId;
private String code;
private String message;
private Data data;
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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 getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Integer pageNumber;
private Integer pageSize;
private Integer totalCount;
private List<ContactFlow> list;
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<ContactFlow> getList() {
return this.list;
}
public void setList(List<ContactFlow> list) {
this.list = list;
}
public static class ContactFlow {
private String audioFileName;
private String ossFileKey;
private String updatedTime;
private String audioResourceId;
private String instanceId;
private String name;
private String createdTime;
private String status;
private String usage;
private String auditResult;
public String getAudioFileName() {
return this.audioFileName;
}
public void setAudioFileName(String audioFileName) {
this.audioFileName = audioFileName;
}
public String getOssFileKey() {
return this.ossFileKey;
}
public void setOssFileKey(String ossFileKey) {
this.ossFileKey = ossFileKey;
}
public String getUpdatedTime() {
return this.updatedTime;
}
public void setUpdatedTime(String updatedTime) {
this.updatedTime = updatedTime;
}
public String getAudioResourceId() {
return this.audioResourceId;
}
public void setAudioResourceId(String audioResourceId) {
this.audioResourceId = audioResourceId;
}
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;
}
public String getCreatedTime() {
return this.createdTime;
}
public void setCreatedTime(String createdTime) {
this.createdTime = createdTime;
}
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getUsage() {
return this.usage;
}
public void setUsage(String usage) {
this.usage = usage;
}
public String getAuditResult() {
return this.auditResult;
}
public void setAuditResult(String auditResult) {
this.auditResult = auditResult;
}
}
}
@Override
public ListAudioFilesResponse getInstance(UnmarshallerContext context) {
return ListAudioFilesResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListBlacklistCallTaggingsRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListBlacklistCallTaggingsRequest extends RpcAcsRequest<ListBlacklistCallTaggingsResponse> {
private String instanceId;
private String numberList;
public ListBlacklistCallTaggingsRequest() {
super("CCC", "2020-07-01", "ListBlacklistCallTaggings", "CCC");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getNumberList() {
return this.numberList;
}
public void setNumberList(String numberList) {
this.numberList = numberList;
if(numberList != null){
putQueryParameter("NumberList", numberList);
}
}
@Override
public Class<ListBlacklistCallTaggingsResponse> getResponseClass() {
return ListBlacklistCallTaggingsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListBlacklistCallTaggingsResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ListBlacklistCallTaggingsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListBlacklistCallTaggingsResponse extends AcsResponse {
private String requestId;
private Integer httpStatusCode;
private String code;
private String message;
private List<BlacklistedNumber> data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
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 String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public List<BlacklistedNumber> getData() {
return this.data;
}
public void setData(List<BlacklistedNumber> data) {
this.data = data;
}
public static class BlacklistedNumber {
private String jobId;
private String number;
private Boolean blacklisted;
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
}
public String getNumber() {
return this.number;
}
public void setNumber(String number) {
this.number = number;
}
public Boolean getBlacklisted() {
return this.blacklisted;
}
public void setBlacklisted(Boolean blacklisted) {
this.blacklisted = blacklisted;
}
}
@Override
public ListBlacklistCallTaggingsResponse getInstance(UnmarshallerContext context) {
return ListBlacklistCallTaggingsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListBriefSkillGroupsRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListBriefSkillGroupsRequest extends RpcAcsRequest<ListBriefSkillGroupsResponse> {
private Integer pageNumber;
private String searchPattern;
private String instanceId;
private Integer pageSize;
private String mediaType;
public ListBriefSkillGroupsRequest() {
super("CCC", "2020-07-01", "ListBriefSkillGroups", "CCC");
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 getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public String getSearchPattern() {
return this.searchPattern;
}
public void setSearchPattern(String searchPattern) {
this.searchPattern = searchPattern;
if(searchPattern != null){
putQueryParameter("SearchPattern", searchPattern);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getMediaType() {
return this.mediaType;
}
public void setMediaType(String mediaType) {
this.mediaType = mediaType;
if(mediaType != null){
putQueryParameter("MediaType", mediaType);
}
}
@Override
public Class<ListBriefSkillGroupsResponse> getResponseClass() {
return ListBriefSkillGroupsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListBriefSkillGroupsResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ListBriefSkillGroupsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListBriefSkillGroupsResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private Data data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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 Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Integer pageNumber;
private Integer pageSize;
private Integer totalCount;
private List<SkillGroup> list;
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<SkillGroup> getList() {
return this.list;
}
public void setList(List<SkillGroup> list) {
this.list = list;
}
public static class SkillGroup {
private String displayName;
private String description;
private Integer phoneNumberCount;
private String skillGroupId;
private String skillGroupName;
private Integer userCount;
private String instanceId;
private String mediaType;
public String getDisplayName() {
return this.displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public Integer getPhoneNumberCount() {
return this.phoneNumberCount;
}
public void setPhoneNumberCount(Integer phoneNumberCount) {
this.phoneNumberCount = phoneNumberCount;
}
public String getSkillGroupId() {
return this.skillGroupId;
}
public void setSkillGroupId(String skillGroupId) {
this.skillGroupId = skillGroupId;
}
public String getSkillGroupName() {
return this.skillGroupName;
}
public void setSkillGroupName(String skillGroupName) {
this.skillGroupName = skillGroupName;
}
public Integer getUserCount() {
return this.userCount;
}
public void setUserCount(Integer userCount) {
this.userCount = userCount;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getMediaType() {
return this.mediaType;
}
public void setMediaType(String mediaType) {
this.mediaType = mediaType;
}
}
}
@Override
public ListBriefSkillGroupsResponse getInstance(UnmarshallerContext context) {
return ListBriefSkillGroupsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListCallDetailRecordsRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListCallDetailRecordsRequest extends RpcAcsRequest<ListCallDetailRecordsResponse> {
private String contactId;
private String criteria;
private String contactDispositionList;
private String orderByField;
private Long startTime;
private Integer pageNumber;
private String earlyMediaStateList;
private String calledNumber;
private String satisfactionList;
private Integer pageSize;
private String sortOrder;
private String satisfactionDescriptionList;
private String agentId;
private String contactType;
private String contactTypeList;
private String satisfactionSurveyChannel;
private Long endTime;
private String callingNumber;
private String contactDisposition;
private String instanceId;
private String skillGroupId;
public ListCallDetailRecordsRequest() {
super("CCC", "2020-07-01", "ListCallDetailRecords", "CCC");
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 getContactId() {
return this.contactId;
}
public void setContactId(String contactId) {
this.contactId = contactId;
if(contactId != null){
putQueryParameter("ContactId", contactId);
}
}
public String getCriteria() {
return this.criteria;
}
public void setCriteria(String criteria) {
this.criteria = criteria;
if(criteria != null){
putQueryParameter("Criteria", criteria);
}
}
public String getContactDispositionList() {
return this.contactDispositionList;
}
public void setContactDispositionList(String contactDispositionList) {
this.contactDispositionList = contactDispositionList;
if(contactDispositionList != null){
putQueryParameter("ContactDispositionList", contactDispositionList);
}
}
public String getOrderByField() {
return this.orderByField;
}
public void setOrderByField(String orderByField) {
this.orderByField = orderByField;
if(orderByField != null){
putQueryParameter("OrderByField", orderByField);
}
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime.toString());
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public String getEarlyMediaStateList() {
return this.earlyMediaStateList;
}
public void setEarlyMediaStateList(String earlyMediaStateList) {
this.earlyMediaStateList = earlyMediaStateList;
if(earlyMediaStateList != null){
putQueryParameter("EarlyMediaStateList", earlyMediaStateList);
}
}
public String getCalledNumber() {
return this.calledNumber;
}
public void setCalledNumber(String calledNumber) {
this.calledNumber = calledNumber;
if(calledNumber != null){
putQueryParameter("CalledNumber", calledNumber);
}
}
public String getSatisfactionList() {
return this.satisfactionList;
}
public void setSatisfactionList(String satisfactionList) {
this.satisfactionList = satisfactionList;
if(satisfactionList != null){
putQueryParameter("SatisfactionList", satisfactionList);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getSortOrder() {
return this.sortOrder;
}
public void setSortOrder(String sortOrder) {
this.sortOrder = sortOrder;
if(sortOrder != null){
putQueryParameter("SortOrder", sortOrder);
}
}
public String getSatisfactionDescriptionList() {
return this.satisfactionDescriptionList;
}
public void setSatisfactionDescriptionList(String satisfactionDescriptionList) {
this.satisfactionDescriptionList = satisfactionDescriptionList;
if(satisfactionDescriptionList != null){
putQueryParameter("SatisfactionDescriptionList", satisfactionDescriptionList);
}
}
public String getAgentId() {
return this.agentId;
}
public void setAgentId(String agentId) {
this.agentId = agentId;
if(agentId != null){
putQueryParameter("AgentId", agentId);
}
}
public String getContactType() {
return this.contactType;
}
public void setContactType(String contactType) {
this.contactType = contactType;
if(contactType != null){
putQueryParameter("ContactType", contactType);
}
}
public String getContactTypeList() {
return this.contactTypeList;
}
public void setContactTypeList(String contactTypeList) {
this.contactTypeList = contactTypeList;
if(contactTypeList != null){
putQueryParameter("ContactTypeList", contactTypeList);
}
}
public String getSatisfactionSurveyChannel() {
return this.satisfactionSurveyChannel;
}
public void setSatisfactionSurveyChannel(String satisfactionSurveyChannel) {
this.satisfactionSurveyChannel = satisfactionSurveyChannel;
if(satisfactionSurveyChannel != null){
putQueryParameter("SatisfactionSurveyChannel", satisfactionSurveyChannel);
}
}
public Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
if(endTime != null){
putQueryParameter("EndTime", endTime.toString());
}
}
public String getCallingNumber() {
return this.callingNumber;
}
public void setCallingNumber(String callingNumber) {
this.callingNumber = callingNumber;
if(callingNumber != null){
putQueryParameter("CallingNumber", callingNumber);
}
}
public String getContactDisposition() {
return this.contactDisposition;
}
public void setContactDisposition(String contactDisposition) {
this.contactDisposition = contactDisposition;
if(contactDisposition != null){
putQueryParameter("ContactDisposition", contactDisposition);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getSkillGroupId() {
return this.skillGroupId;
}
public void setSkillGroupId(String skillGroupId) {
this.skillGroupId = skillGroupId;
if(skillGroupId != null){
putQueryParameter("SkillGroupId", skillGroupId);
}
}
@Override
public Class<ListCallDetailRecordsResponse> getResponseClass() {
return ListCallDetailRecordsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListCallDetailRecordsResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ListCallDetailRecordsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListCallDetailRecordsResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private Data data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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 Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Integer pageNumber;
private Integer pageSize;
private Integer totalCount;
private List<CallDetailRecord> list;
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<CallDetailRecord> getList() {
return this.list;
}
public void setList(List<CallDetailRecord> list) {
this.list = list;
}
public static class CallDetailRecord {
private String contactDisposition;
private String contactType;
private Long establishedTime;
private String calledNumber;
private String additionalBroker;
private Integer satisfactionIndex;
private String satisfactionSurveyChannel;
private Long releaseTime;
private Long waitTime;
private String skillGroupNames;
private Long ivrTime;
private String satisfactionDescription;
private String releaseInitiator;
private String agentIds;
private String callDuration;
private Boolean recordingReady;
private String instanceId;
private Long ringTime;
private Boolean satisfactionSurveyOffered;
private String agentNames;
private Long startTime;
private String contactId;
private Long recordingDuration;
private String callingNumber;
private Long queueTime;
private String broker;
private String skillGroupIds;
private String callerLocation;
private String calleeLocation;
private String earlyMediaState;
private String releaseReason;
private Long dialingTime;
private Long talkTime;
private Long heldTime;
private String callIds;
public String getContactDisposition() {
return this.contactDisposition;
}
public void setContactDisposition(String contactDisposition) {
this.contactDisposition = contactDisposition;
}
public String getContactType() {
return this.contactType;
}
public void setContactType(String contactType) {
this.contactType = contactType;
}
public Long getEstablishedTime() {
return this.establishedTime;
}
public void setEstablishedTime(Long establishedTime) {
this.establishedTime = establishedTime;
}
public String getCalledNumber() {
return this.calledNumber;
}
public void setCalledNumber(String calledNumber) {
this.calledNumber = calledNumber;
}
public String getAdditionalBroker() {
return this.additionalBroker;
}
public void setAdditionalBroker(String additionalBroker) {
this.additionalBroker = additionalBroker;
}
public Integer getSatisfactionIndex() {
return this.satisfactionIndex;
}
public void setSatisfactionIndex(Integer satisfactionIndex) {
this.satisfactionIndex = satisfactionIndex;
}
public String getSatisfactionSurveyChannel() {
return this.satisfactionSurveyChannel;
}
public void setSatisfactionSurveyChannel(String satisfactionSurveyChannel) {
this.satisfactionSurveyChannel = satisfactionSurveyChannel;
}
public Long getReleaseTime() {
return this.releaseTime;
}
public void setReleaseTime(Long releaseTime) {
this.releaseTime = releaseTime;
}
public Long getWaitTime() {
return this.waitTime;
}
public void setWaitTime(Long waitTime) {
this.waitTime = waitTime;
}
public String getSkillGroupNames() {
return this.skillGroupNames;
}
public void setSkillGroupNames(String skillGroupNames) {
this.skillGroupNames = skillGroupNames;
}
public Long getIvrTime() {
return this.ivrTime;
}
public void setIvrTime(Long ivrTime) {
this.ivrTime = ivrTime;
}
public String getSatisfactionDescription() {
return this.satisfactionDescription;
}
public void setSatisfactionDescription(String satisfactionDescription) {
this.satisfactionDescription = satisfactionDescription;
}
public String getReleaseInitiator() {
return this.releaseInitiator;
}
public void setReleaseInitiator(String releaseInitiator) {
this.releaseInitiator = releaseInitiator;
}
public String getAgentIds() {
return this.agentIds;
}
public void setAgentIds(String agentIds) {
this.agentIds = agentIds;
}
public String getCallDuration() {
return this.callDuration;
}
public void setCallDuration(String callDuration) {
this.callDuration = callDuration;
}
public Boolean getRecordingReady() {
return this.recordingReady;
}
public void setRecordingReady(Boolean recordingReady) {
this.recordingReady = recordingReady;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public Long getRingTime() {
return this.ringTime;
}
public void setRingTime(Long ringTime) {
this.ringTime = ringTime;
}
public Boolean getSatisfactionSurveyOffered() {
return this.satisfactionSurveyOffered;
}
public void setSatisfactionSurveyOffered(Boolean satisfactionSurveyOffered) {
this.satisfactionSurveyOffered = satisfactionSurveyOffered;
}
public String getAgentNames() {
return this.agentNames;
}
public void setAgentNames(String agentNames) {
this.agentNames = agentNames;
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
}
public String getContactId() {
return this.contactId;
}
public void setContactId(String contactId) {
this.contactId = contactId;
}
public Long getRecordingDuration() {
return this.recordingDuration;
}
public void setRecordingDuration(Long recordingDuration) {
this.recordingDuration = recordingDuration;
}
public String getCallingNumber() {
return this.callingNumber;
}
public void setCallingNumber(String callingNumber) {
this.callingNumber = callingNumber;
}
public Long getQueueTime() {
return this.queueTime;
}
public void setQueueTime(Long queueTime) {
this.queueTime = queueTime;
}
public String getBroker() {
return this.broker;
}
public void setBroker(String broker) {
this.broker = broker;
}
public String getSkillGroupIds() {
return this.skillGroupIds;
}
public void setSkillGroupIds(String skillGroupIds) {
this.skillGroupIds = skillGroupIds;
}
public String getCallerLocation() {
return this.callerLocation;
}
public void setCallerLocation(String callerLocation) {
this.callerLocation = callerLocation;
}
public String getCalleeLocation() {
return this.calleeLocation;
}
public void setCalleeLocation(String calleeLocation) {
this.calleeLocation = calleeLocation;
}
public String getEarlyMediaState() {
return this.earlyMediaState;
}
public void setEarlyMediaState(String earlyMediaState) {
this.earlyMediaState = earlyMediaState;
}
public String getReleaseReason() {
return this.releaseReason;
}
public void setReleaseReason(String releaseReason) {
this.releaseReason = releaseReason;
}
public Long getDialingTime() {
return this.dialingTime;
}
public void setDialingTime(Long dialingTime) {
this.dialingTime = dialingTime;
}
public Long getTalkTime() {
return this.talkTime;
}
public void setTalkTime(Long talkTime) {
this.talkTime = talkTime;
}
public Long getHeldTime() {
return this.heldTime;
}
public void setHeldTime(Long heldTime) {
this.heldTime = heldTime;
}
public String getCallIds() {
return this.callIds;
}
public void setCallIds(String callIds) {
this.callIds = callIds;
}
}
}
@Override
public ListCallDetailRecordsResponse getInstance(UnmarshallerContext context) {
return ListCallDetailRecordsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListCallDetailRecordsV2Request.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListCallDetailRecordsV2Request extends RpcAcsRequest<ListCallDetailRecordsV2Response> {
private String contactDispositionList;
private String orderByField;
private Long startTime;
private Integer pageNumber;
private String earlyMediaStateList;
private String number;
private String skillGroupIdList;
private String calledNumber;
private Integer pageSize;
private String sortOrder;
private String satisfactionDescriptionList;
private String agentId;
private String firstAgentId;
private String contactTypeList;
private String satisfactionSurveyChannel;
private Long endTime;
private String broker;
private String contactIdList;
private String accessChannelTypeList;
private String searchPattern;
private String callingNumber;
private String instanceId;
private String satisfactionRateList;
private String mediaType;
public ListCallDetailRecordsV2Request() {
super("CCC", "2020-07-01", "ListCallDetailRecordsV2", "CCC");
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 getContactDispositionList() {
return this.contactDispositionList;
}
public void setContactDispositionList(String contactDispositionList) {
this.contactDispositionList = contactDispositionList;
if(contactDispositionList != null){
putQueryParameter("ContactDispositionList", contactDispositionList);
}
}
public String getOrderByField() {
return this.orderByField;
}
public void setOrderByField(String orderByField) {
this.orderByField = orderByField;
if(orderByField != null){
putQueryParameter("OrderByField", orderByField);
}
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime.toString());
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public String getEarlyMediaStateList() {
return this.earlyMediaStateList;
}
public void setEarlyMediaStateList(String earlyMediaStateList) {
this.earlyMediaStateList = earlyMediaStateList;
if(earlyMediaStateList != null){
putQueryParameter("EarlyMediaStateList", earlyMediaStateList);
}
}
public String getNumber() {
return this.number;
}
public void setNumber(String number) {
this.number = number;
if(number != null){
putQueryParameter("Number", number);
}
}
public String getSkillGroupIdList() {
return this.skillGroupIdList;
}
public void setSkillGroupIdList(String skillGroupIdList) {
this.skillGroupIdList = skillGroupIdList;
if(skillGroupIdList != null){
putQueryParameter("SkillGroupIdList", skillGroupIdList);
}
}
public String getCalledNumber() {
return this.calledNumber;
}
public void setCalledNumber(String calledNumber) {
this.calledNumber = calledNumber;
if(calledNumber != null){
putQueryParameter("CalledNumber", calledNumber);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getSortOrder() {
return this.sortOrder;
}
public void setSortOrder(String sortOrder) {
this.sortOrder = sortOrder;
if(sortOrder != null){
putQueryParameter("SortOrder", sortOrder);
}
}
public String getSatisfactionDescriptionList() {
return this.satisfactionDescriptionList;
}
public void setSatisfactionDescriptionList(String satisfactionDescriptionList) {
this.satisfactionDescriptionList = satisfactionDescriptionList;
if(satisfactionDescriptionList != null){
putQueryParameter("SatisfactionDescriptionList", satisfactionDescriptionList);
}
}
public String getAgentId() {
return this.agentId;
}
public void setAgentId(String agentId) {
this.agentId = agentId;
if(agentId != null){
putQueryParameter("AgentId", agentId);
}
}
public String getFirstAgentId() {
return this.firstAgentId;
}
public void setFirstAgentId(String firstAgentId) {
this.firstAgentId = firstAgentId;
if(firstAgentId != null){
putQueryParameter("FirstAgentId", firstAgentId);
}
}
public String getContactTypeList() {
return this.contactTypeList;
}
public void setContactTypeList(String contactTypeList) {
this.contactTypeList = contactTypeList;
if(contactTypeList != null){
putQueryParameter("ContactTypeList", contactTypeList);
}
}
public String getSatisfactionSurveyChannel() {
return this.satisfactionSurveyChannel;
}
public void setSatisfactionSurveyChannel(String satisfactionSurveyChannel) {
this.satisfactionSurveyChannel = satisfactionSurveyChannel;
if(satisfactionSurveyChannel != null){
putQueryParameter("SatisfactionSurveyChannel", satisfactionSurveyChannel);
}
}
public Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
if(endTime != null){
putQueryParameter("EndTime", endTime.toString());
}
}
public String getBroker() {
return this.broker;
}
public void setBroker(String broker) {
this.broker = broker;
if(broker != null){
putQueryParameter("Broker", broker);
}
}
public String getContactIdList() {
return this.contactIdList;
}
public void setContactIdList(String contactIdList) {
this.contactIdList = contactIdList;
if(contactIdList != null){
putQueryParameter("ContactIdList", contactIdList);
}
}
public String getAccessChannelTypeList() {
return this.accessChannelTypeList;
}
public void setAccessChannelTypeList(String accessChannelTypeList) {
this.accessChannelTypeList = accessChannelTypeList;
if(accessChannelTypeList != null){
putQueryParameter("AccessChannelTypeList", accessChannelTypeList);
}
}
public String getSearchPattern() {
return this.searchPattern;
}
public void setSearchPattern(String searchPattern) {
this.searchPattern = searchPattern;
if(searchPattern != null){
putQueryParameter("SearchPattern", searchPattern);
}
}
public String getCallingNumber() {
return this.callingNumber;
}
public void setCallingNumber(String callingNumber) {
this.callingNumber = callingNumber;
if(callingNumber != null){
putQueryParameter("CallingNumber", callingNumber);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getSatisfactionRateList() {
return this.satisfactionRateList;
}
public void setSatisfactionRateList(String satisfactionRateList) {
this.satisfactionRateList = satisfactionRateList;
if(satisfactionRateList != null){
putQueryParameter("SatisfactionRateList", satisfactionRateList);
}
}
public String getMediaType() {
return this.mediaType;
}
public void setMediaType(String mediaType) {
this.mediaType = mediaType;
if(mediaType != null){
putQueryParameter("MediaType", mediaType);
}
}
@Override
public Class<ListCallDetailRecordsV2Response> getResponseClass() {
return ListCallDetailRecordsV2Response.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListCallDetailRecordsV2Response.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ListCallDetailRecordsV2ResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListCallDetailRecordsV2Response extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private Data data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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 Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Integer pageNumber;
private Integer pageSize;
private Integer totalCount;
private List<CallDetailRecord> list;
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<CallDetailRecord> getList() {
return this.list;
}
public void setList(List<CallDetailRecord> list) {
this.list = list;
}
public static class CallDetailRecord {
private String contactDisposition;
private String contactType;
private Long establishedTime;
private String calledNumber;
private String additionalBroker;
private Integer satisfactionIndex;
private String satisfactionSurveyChannel;
private Long releaseTime;
private Long waitTime;
private String skillGroupNames;
private Long ivrTime;
private String satisfactionDescription;
private String releaseInitiator;
private String agentIds;
private String callDuration;
private Boolean recordingReady;
private String instanceId;
private Long ringTime;
private Boolean satisfactionSurveyOffered;
private String agentNames;
private Long startTime;
private String contactId;
private Long recordingDuration;
private String callingNumber;
private Long queueTime;
private String broker;
private String skillGroupIds;
private String callerLocation;
private String calleeLocation;
private String earlyMediaState;
private String releaseReason;
private Long dialingTime;
private Long talkTime;
private Long heldTime;
private String earlyMediaText;
private String offSiteAgentIds;
private String offsiteAgentDestinationNumbers;
private Long messagesSent;
private Long messagesSentByCustomer;
private Long messagesSentByAgent;
private Long firstResponseTime;
private String mediaType;
private Long transferCount;
private String accessChannelType;
private String accessChannelName;
private String accessChannelUserId;
private String accessChannelUserName;
private String clientIpAddress;
private String clientLocation;
private String clientUserAgent;
private String clientAppName;
private String offsiteAgentOriginatorNumbers;
public String getContactDisposition() {
return this.contactDisposition;
}
public void setContactDisposition(String contactDisposition) {
this.contactDisposition = contactDisposition;
}
public String getContactType() {
return this.contactType;
}
public void setContactType(String contactType) {
this.contactType = contactType;
}
public Long getEstablishedTime() {
return this.establishedTime;
}
public void setEstablishedTime(Long establishedTime) {
this.establishedTime = establishedTime;
}
public String getCalledNumber() {
return this.calledNumber;
}
public void setCalledNumber(String calledNumber) {
this.calledNumber = calledNumber;
}
public String getAdditionalBroker() {
return this.additionalBroker;
}
public void setAdditionalBroker(String additionalBroker) {
this.additionalBroker = additionalBroker;
}
public Integer getSatisfactionIndex() {
return this.satisfactionIndex;
}
public void setSatisfactionIndex(Integer satisfactionIndex) {
this.satisfactionIndex = satisfactionIndex;
}
public String getSatisfactionSurveyChannel() {
return this.satisfactionSurveyChannel;
}
public void setSatisfactionSurveyChannel(String satisfactionSurveyChannel) {
this.satisfactionSurveyChannel = satisfactionSurveyChannel;
}
public Long getReleaseTime() {
return this.releaseTime;
}
public void setReleaseTime(Long releaseTime) {
this.releaseTime = releaseTime;
}
public Long getWaitTime() {
return this.waitTime;
}
public void setWaitTime(Long waitTime) {
this.waitTime = waitTime;
}
public String getSkillGroupNames() {
return this.skillGroupNames;
}
public void setSkillGroupNames(String skillGroupNames) {
this.skillGroupNames = skillGroupNames;
}
public Long getIvrTime() {
return this.ivrTime;
}
public void setIvrTime(Long ivrTime) {
this.ivrTime = ivrTime;
}
public String getSatisfactionDescription() {
return this.satisfactionDescription;
}
public void setSatisfactionDescription(String satisfactionDescription) {
this.satisfactionDescription = satisfactionDescription;
}
public String getReleaseInitiator() {
return this.releaseInitiator;
}
public void setReleaseInitiator(String releaseInitiator) {
this.releaseInitiator = releaseInitiator;
}
public String getAgentIds() {
return this.agentIds;
}
public void setAgentIds(String agentIds) {
this.agentIds = agentIds;
}
public String getCallDuration() {
return this.callDuration;
}
public void setCallDuration(String callDuration) {
this.callDuration = callDuration;
}
public Boolean getRecordingReady() {
return this.recordingReady;
}
public void setRecordingReady(Boolean recordingReady) {
this.recordingReady = recordingReady;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public Long getRingTime() {
return this.ringTime;
}
public void setRingTime(Long ringTime) {
this.ringTime = ringTime;
}
public Boolean getSatisfactionSurveyOffered() {
return this.satisfactionSurveyOffered;
}
public void setSatisfactionSurveyOffered(Boolean satisfactionSurveyOffered) {
this.satisfactionSurveyOffered = satisfactionSurveyOffered;
}
public String getAgentNames() {
return this.agentNames;
}
public void setAgentNames(String agentNames) {
this.agentNames = agentNames;
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
}
public String getContactId() {
return this.contactId;
}
public void setContactId(String contactId) {
this.contactId = contactId;
}
public Long getRecordingDuration() {
return this.recordingDuration;
}
public void setRecordingDuration(Long recordingDuration) {
this.recordingDuration = recordingDuration;
}
public String getCallingNumber() {
return this.callingNumber;
}
public void setCallingNumber(String callingNumber) {
this.callingNumber = callingNumber;
}
public Long getQueueTime() {
return this.queueTime;
}
public void setQueueTime(Long queueTime) {
this.queueTime = queueTime;
}
public String getBroker() {
return this.broker;
}
public void setBroker(String broker) {
this.broker = broker;
}
public String getSkillGroupIds() {
return this.skillGroupIds;
}
public void setSkillGroupIds(String skillGroupIds) {
this.skillGroupIds = skillGroupIds;
}
public String getCallerLocation() {
return this.callerLocation;
}
public void setCallerLocation(String callerLocation) {
this.callerLocation = callerLocation;
}
public String getCalleeLocation() {
return this.calleeLocation;
}
public void setCalleeLocation(String calleeLocation) {
this.calleeLocation = calleeLocation;
}
public String getEarlyMediaState() {
return this.earlyMediaState;
}
public void setEarlyMediaState(String earlyMediaState) {
this.earlyMediaState = earlyMediaState;
}
public String getReleaseReason() {
return this.releaseReason;
}
public void setReleaseReason(String releaseReason) {
this.releaseReason = releaseReason;
}
public Long getDialingTime() {
return this.dialingTime;
}
public void setDialingTime(Long dialingTime) {
this.dialingTime = dialingTime;
}
public Long getTalkTime() {
return this.talkTime;
}
public void setTalkTime(Long talkTime) {
this.talkTime = talkTime;
}
public Long getHeldTime() {
return this.heldTime;
}
public void setHeldTime(Long heldTime) {
this.heldTime = heldTime;
}
public String getEarlyMediaText() {
return this.earlyMediaText;
}
public void setEarlyMediaText(String earlyMediaText) {
this.earlyMediaText = earlyMediaText;
}
public String getOffSiteAgentIds() {
return this.offSiteAgentIds;
}
public void setOffSiteAgentIds(String offSiteAgentIds) {
this.offSiteAgentIds = offSiteAgentIds;
}
public String getOffsiteAgentDestinationNumbers() {
return this.offsiteAgentDestinationNumbers;
}
public void setOffsiteAgentDestinationNumbers(String offsiteAgentDestinationNumbers) {
this.offsiteAgentDestinationNumbers = offsiteAgentDestinationNumbers;
}
public Long getMessagesSent() {
return this.messagesSent;
}
public void setMessagesSent(Long messagesSent) {
this.messagesSent = messagesSent;
}
public Long getMessagesSentByCustomer() {
return this.messagesSentByCustomer;
}
public void setMessagesSentByCustomer(Long messagesSentByCustomer) {
this.messagesSentByCustomer = messagesSentByCustomer;
}
public Long getMessagesSentByAgent() {
return this.messagesSentByAgent;
}
public void setMessagesSentByAgent(Long messagesSentByAgent) {
this.messagesSentByAgent = messagesSentByAgent;
}
public Long getFirstResponseTime() {
return this.firstResponseTime;
}
public void setFirstResponseTime(Long firstResponseTime) {
this.firstResponseTime = firstResponseTime;
}
public String getMediaType() {
return this.mediaType;
}
public void setMediaType(String mediaType) {
this.mediaType = mediaType;
}
public Long getTransferCount() {
return this.transferCount;
}
public void setTransferCount(Long transferCount) {
this.transferCount = transferCount;
}
public String getAccessChannelType() {
return this.accessChannelType;
}
public void setAccessChannelType(String accessChannelType) {
this.accessChannelType = accessChannelType;
}
public String getAccessChannelName() {
return this.accessChannelName;
}
public void setAccessChannelName(String accessChannelName) {
this.accessChannelName = accessChannelName;
}
public String getAccessChannelUserId() {
return this.accessChannelUserId;
}
public void setAccessChannelUserId(String accessChannelUserId) {
this.accessChannelUserId = accessChannelUserId;
}
public String getAccessChannelUserName() {
return this.accessChannelUserName;
}
public void setAccessChannelUserName(String accessChannelUserName) {
this.accessChannelUserName = accessChannelUserName;
}
public String getClientIpAddress() {
return this.clientIpAddress;
}
public void setClientIpAddress(String clientIpAddress) {
this.clientIpAddress = clientIpAddress;
}
public String getClientLocation() {
return this.clientLocation;
}
public void setClientLocation(String clientLocation) {
this.clientLocation = clientLocation;
}
public String getClientUserAgent() {
return this.clientUserAgent;
}
public void setClientUserAgent(String clientUserAgent) {
this.clientUserAgent = clientUserAgent;
}
public String getClientAppName() {
return this.clientAppName;
}
public void setClientAppName(String clientAppName) {
this.clientAppName = clientAppName;
}
public String getOffsiteAgentOriginatorNumbers() {
return this.offsiteAgentOriginatorNumbers;
}
public void setOffsiteAgentOriginatorNumbers(String offsiteAgentOriginatorNumbers) {
this.offsiteAgentOriginatorNumbers = offsiteAgentOriginatorNumbers;
}
}
}
@Override
public ListCallDetailRecordsV2Response getInstance(UnmarshallerContext context) {
return ListCallDetailRecordsV2ResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListCallSummariesRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListCallSummariesRequest extends RpcAcsRequest<ListCallSummariesResponse> {
private String instanceId;
@SerializedName("contactIdList")
private List<String> contactIdList;
public ListCallSummariesRequest() {
super("CCC", "2020-07-01", "ListCallSummaries", "CCC");
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<String> getContactIdList() {
return this.contactIdList;
}
public void setContactIdList(List<String> contactIdList) {
this.contactIdList = contactIdList;
if (contactIdList != null) {
putQueryParameter("ContactIdList" , new Gson().toJson(contactIdList));
}
}
@Override
public Class<ListCallSummariesResponse> getResponseClass() {
return ListCallSummariesResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListCallSummariesResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ListCallSummariesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListCallSummariesResponse extends AcsResponse {
private String requestId;
private Integer httpStatusCode;
private String code;
private String message;
private List<DataItem> data;
private List<String> params;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
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 String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public List<DataItem> getData() {
return this.data;
}
public void setData(List<DataItem> data) {
this.data = data;
}
public List<String> getParams() {
return this.params;
}
public void setParams(List<String> params) {
this.params = params;
}
public static class DataItem {
private String ticketId;
private String contactId;
private String context;
private Long createdTime;
private String creator;
private String editor;
public String getTicketId() {
return this.ticketId;
}
public void setTicketId(String ticketId) {
this.ticketId = ticketId;
}
public String getContactId() {
return this.contactId;
}
public void setContactId(String contactId) {
this.contactId = contactId;
}
public String getContext() {
return this.context;
}
public void setContext(String context) {
this.context = context;
}
public Long getCreatedTime() {
return this.createdTime;
}
public void setCreatedTime(Long createdTime) {
this.createdTime = createdTime;
}
public String getCreator() {
return this.creator;
}
public void setCreator(String creator) {
this.creator = creator;
}
public String getEditor() {
return this.editor;
}
public void setEditor(String editor) {
this.editor = editor;
}
}
@Override
public ListCallSummariesResponse getInstance(UnmarshallerContext context) {
return ListCallSummariesResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListCallTagsRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListCallTagsRequest extends RpcAcsRequest<ListCallTagsResponse> {
private Integer pageNumber;
private String instanceId;
private Integer pageSize;
public ListCallTagsRequest() {
super("CCC", "2020-07-01", "ListCallTags", "CCC");
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 getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
@Override
public Class<ListCallTagsResponse> getResponseClass() {
return ListCallTagsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListCallTagsResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ListCallTagsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListCallTagsResponse extends AcsResponse {
private String requestId;
private Integer httpStatusCode;
private String code;
private String message;
private Data data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
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 String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Integer pageNumber;
private Integer pageSize;
private Integer totalCount;
private List<CallTag> list;
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<CallTag> getList() {
return this.list;
}
public void setList(List<CallTag> list) {
this.list = list;
}
public static class CallTag {
private String instanceId;
private String tagName;
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getTagName() {
return this.tagName;
}
public void setTagName(String tagName) {
this.tagName = tagName;
}
}
}
@Override
public ListCallTagsResponse getInstance(UnmarshallerContext context) {
return ListCallTagsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListCampaignTrendingReportRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListCampaignTrendingReportRequest extends RpcAcsRequest<ListCampaignTrendingReportResponse> {
private String campaignId;
private Long endTime;
private Long startTime;
private String instanceId;
public ListCampaignTrendingReportRequest() {
super("CCC", "2020-07-01", "ListCampaignTrendingReport", "CCC");
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 getCampaignId() {
return this.campaignId;
}
public void setCampaignId(String campaignId) {
this.campaignId = campaignId;
if(campaignId != null){
putQueryParameter("CampaignId", campaignId);
}
}
public Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
if(endTime != null){
putQueryParameter("EndTime", endTime.toString());
}
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<ListCampaignTrendingReportResponse> getResponseClass() {
return ListCampaignTrendingReportResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListCampaignTrendingReportResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ListCampaignTrendingReportResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListCampaignTrendingReportResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private List<TrendingList> data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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 List<TrendingList> getData() {
return this.data;
}
public void setData(List<TrendingList> data) {
this.data = data;
}
public static class TrendingList {
private Long datetime;
private Long concurrency;
private Long talkAgents;
private Long readyAgents;
private Long workAgents;
private Long loggedInAgents;
private Long breakAgents;
private Long statsTime;
private Long talkingAgents;
private Long workingAgents;
private Long breakingAgents;
private Long outboundScenarioReadyAgents;
private Long outboundScenarioBreakingAgents;
private Long outboundScenarioTalkingAgents;
private Long outboundScenarioWorkingAgents;
public Long getDatetime() {
return this.datetime;
}
public void setDatetime(Long datetime) {
this.datetime = datetime;
}
public Long getConcurrency() {
return this.concurrency;
}
public void setConcurrency(Long concurrency) {
this.concurrency = concurrency;
}
public Long getTalkAgents() {
return this.talkAgents;
}
public void setTalkAgents(Long talkAgents) {
this.talkAgents = talkAgents;
}
public Long getReadyAgents() {
return this.readyAgents;
}
public void setReadyAgents(Long readyAgents) {
this.readyAgents = readyAgents;
}
public Long getWorkAgents() {
return this.workAgents;
}
public void setWorkAgents(Long workAgents) {
this.workAgents = workAgents;
}
public Long getLoggedInAgents() {
return this.loggedInAgents;
}
public void setLoggedInAgents(Long loggedInAgents) {
this.loggedInAgents = loggedInAgents;
}
public Long getBreakAgents() {
return this.breakAgents;
}
public void setBreakAgents(Long breakAgents) {
this.breakAgents = breakAgents;
}
public Long getStatsTime() {
return this.statsTime;
}
public void setStatsTime(Long statsTime) {
this.statsTime = statsTime;
}
public Long getTalkingAgents() {
return this.talkingAgents;
}
public void setTalkingAgents(Long talkingAgents) {
this.talkingAgents = talkingAgents;
}
public Long getWorkingAgents() {
return this.workingAgents;
}
public void setWorkingAgents(Long workingAgents) {
this.workingAgents = workingAgents;
}
public Long getBreakingAgents() {
return this.breakingAgents;
}
public void setBreakingAgents(Long breakingAgents) {
this.breakingAgents = breakingAgents;
}
public Long getOutboundScenarioReadyAgents() {
return this.outboundScenarioReadyAgents;
}
public void setOutboundScenarioReadyAgents(Long outboundScenarioReadyAgents) {
this.outboundScenarioReadyAgents = outboundScenarioReadyAgents;
}
public Long getOutboundScenarioBreakingAgents() {
return this.outboundScenarioBreakingAgents;
}
public void setOutboundScenarioBreakingAgents(Long outboundScenarioBreakingAgents) {
this.outboundScenarioBreakingAgents = outboundScenarioBreakingAgents;
}
public Long getOutboundScenarioTalkingAgents() {
return this.outboundScenarioTalkingAgents;
}
public void setOutboundScenarioTalkingAgents(Long outboundScenarioTalkingAgents) {
this.outboundScenarioTalkingAgents = outboundScenarioTalkingAgents;
}
public Long getOutboundScenarioWorkingAgents() {
return this.outboundScenarioWorkingAgents;
}
public void setOutboundScenarioWorkingAgents(Long outboundScenarioWorkingAgents) {
this.outboundScenarioWorkingAgents = outboundScenarioWorkingAgents;
}
}
@Override
public ListCampaignTrendingReportResponse getInstance(UnmarshallerContext context) {
return ListCampaignTrendingReportResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListCampaignsRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListCampaignsRequest extends RpcAcsRequest<ListCampaignsResponse> {
private String actualStartTimeTo;
private String queueId;
private String actualStartTimeFrom;
private Long pageNumber;
private String planedStartTimeFrom;
private String instanceId;
private String name;
private Long pageSize;
private String planedStartTimeTo;
private String state;
public ListCampaignsRequest() {
super("CCC", "2020-07-01", "ListCampaigns", "CCC");
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 getActualStartTimeTo() {
return this.actualStartTimeTo;
}
public void setActualStartTimeTo(String actualStartTimeTo) {
this.actualStartTimeTo = actualStartTimeTo;
if(actualStartTimeTo != null){
putQueryParameter("ActualStartTimeTo", actualStartTimeTo);
}
}
public String getQueueId() {
return this.queueId;
}
public void setQueueId(String queueId) {
this.queueId = queueId;
if(queueId != null){
putQueryParameter("QueueId", queueId);
}
}
public String getActualStartTimeFrom() {
return this.actualStartTimeFrom;
}
public void setActualStartTimeFrom(String actualStartTimeFrom) {
this.actualStartTimeFrom = actualStartTimeFrom;
if(actualStartTimeFrom != null){
putQueryParameter("ActualStartTimeFrom", actualStartTimeFrom);
}
}
public Long getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public String getPlanedStartTimeFrom() {
return this.planedStartTimeFrom;
}
public void setPlanedStartTimeFrom(String planedStartTimeFrom) {
this.planedStartTimeFrom = planedStartTimeFrom;
if(planedStartTimeFrom != null){
putQueryParameter("PlanedStartTimeFrom", planedStartTimeFrom);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
if(name != null){
putQueryParameter("Name", name);
}
}
public Long getPageSize() {
return this.pageSize;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getPlanedStartTimeTo() {
return this.planedStartTimeTo;
}
public void setPlanedStartTimeTo(String planedStartTimeTo) {
this.planedStartTimeTo = planedStartTimeTo;
if(planedStartTimeTo != null){
putQueryParameter("PlanedStartTimeTo", planedStartTimeTo);
}
}
public String getState() {
return this.state;
}
public void setState(String state) {
this.state = state;
if(state != null){
putQueryParameter("State", state);
}
}
@Override
public Class<ListCampaignsResponse> getResponseClass() {
return ListCampaignsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListCampaignsResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ListCampaignsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListCampaignsResponse extends AcsResponse {
private String requestId;
private String message;
private Long httpStatusCode;
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 Long getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Long 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 Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Long pageNumber;
private Long pageSize;
private Long totalCount;
private List<ListItem> list;
public Long getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
}
public Long getPageSize() {
return this.pageSize;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
}
public Long getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Long totalCount) {
this.totalCount = totalCount;
}
public List<ListItem> getList() {
return this.list;
}
public void setList(List<ListItem> list) {
this.list = list;
}
public static class ListItem {
private Long actualEndTime;
private Long actualStartTime;
private Long casesAborted;
private Long casesUncompleted;
private Long casesConnected;
private Long maxAttemptCount;
private Long minAttemptInterval;
private String name;
private Long planedEndTime;
private Long planedStartTime;
private String queueName;
private Long totalCases;
private String state;
private String campaignId;
private String strategyType;
private String strategyParameters;
private String queueId;
private Boolean simulation;
private Float completionRate;
private String contactFlowId;
public Long getActualEndTime() {
return this.actualEndTime;
}
public void setActualEndTime(Long actualEndTime) {
this.actualEndTime = actualEndTime;
}
public Long getActualStartTime() {
return this.actualStartTime;
}
public void setActualStartTime(Long actualStartTime) {
this.actualStartTime = actualStartTime;
}
public Long getCasesAborted() {
return this.casesAborted;
}
public void setCasesAborted(Long casesAborted) {
this.casesAborted = casesAborted;
}
public Long getCasesUncompleted() {
return this.casesUncompleted;
}
public void setCasesUncompleted(Long casesUncompleted) {
this.casesUncompleted = casesUncompleted;
}
public Long getCasesConnected() {
return this.casesConnected;
}
public void setCasesConnected(Long casesConnected) {
this.casesConnected = casesConnected;
}
public Long getMaxAttemptCount() {
return this.maxAttemptCount;
}
public void setMaxAttemptCount(Long maxAttemptCount) {
this.maxAttemptCount = maxAttemptCount;
}
public Long getMinAttemptInterval() {
return this.minAttemptInterval;
}
public void setMinAttemptInterval(Long minAttemptInterval) {
this.minAttemptInterval = minAttemptInterval;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public Long getPlanedEndTime() {
return this.planedEndTime;
}
public void setPlanedEndTime(Long planedEndTime) {
this.planedEndTime = planedEndTime;
}
public Long getPlanedStartTime() {
return this.planedStartTime;
}
public void setPlanedStartTime(Long planedStartTime) {
this.planedStartTime = planedStartTime;
}
public String getQueueName() {
return this.queueName;
}
public void setQueueName(String queueName) {
this.queueName = queueName;
}
public Long getTotalCases() {
return this.totalCases;
}
public void setTotalCases(Long totalCases) {
this.totalCases = totalCases;
}
public String getState() {
return this.state;
}
public void setState(String state) {
this.state = state;
}
public String getCampaignId() {
return this.campaignId;
}
public void setCampaignId(String campaignId) {
this.campaignId = campaignId;
}
public String getStrategyType() {
return this.strategyType;
}
public void setStrategyType(String strategyType) {
this.strategyType = strategyType;
}
public String getStrategyParameters() {
return this.strategyParameters;
}
public void setStrategyParameters(String strategyParameters) {
this.strategyParameters = strategyParameters;
}
public String getQueueId() {
return this.queueId;
}
public void setQueueId(String queueId) {
this.queueId = queueId;
}
public Boolean getSimulation() {
return this.simulation;
}
public void setSimulation(Boolean simulation) {
this.simulation = simulation;
}
public Float getCompletionRate() {
return this.completionRate;
}
public void setCompletionRate(Float completionRate) {
this.completionRate = completionRate;
}
public String getContactFlowId() {
return this.contactFlowId;
}
public void setContactFlowId(String contactFlowId) {
this.contactFlowId = contactFlowId;
}
}
}
@Override
public ListCampaignsResponse getInstance(UnmarshallerContext context) {
return ListCampaignsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListCasesRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListCasesRequest extends RpcAcsRequest<ListCasesResponse> {
private String instanceId;
private String campaignId;
private String phoneNumber;
private Long pageSize;
private String state;
private Long pageNumber;
public ListCasesRequest() {
super("CCC", "2020-07-01", "ListCases", "CCC");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getCampaignId() {
return this.campaignId;
}
public void setCampaignId(String campaignId) {
this.campaignId = campaignId;
if(campaignId != null){
putQueryParameter("CampaignId", campaignId);
}
}
public String getPhoneNumber() {
return this.phoneNumber;
}
public void setPhoneNumber(String phoneNumber) {
this.phoneNumber = phoneNumber;
if(phoneNumber != null){
putQueryParameter("PhoneNumber", phoneNumber);
}
}
public Long getPageSize() {
return this.pageSize;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getState() {
return this.state;
}
public void setState(String state) {
this.state = state;
if(state != null){
putQueryParameter("State", state);
}
}
public Long getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
@Override
public Class<ListCasesResponse> getResponseClass() {
return ListCasesResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListCasesResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ListCasesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListCasesResponse extends AcsResponse {
private String requestId;
private String message;
private Long httpStatusCode;
private String code;
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 Long getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Long httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Long pageNumber;
private Long pageSize;
private Long totalCount;
private List<ListItem> list;
public Long getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
}
public Long getPageSize() {
return this.pageSize;
}
public void setPageSize(Long pageSize) {
this.pageSize = pageSize;
}
public Long getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Long totalCount) {
this.totalCount = totalCount;
}
public List<ListItem> getList() {
return this.list;
}
public void setList(List<ListItem> list) {
this.list = list;
}
public static class ListItem {
private String abandonType;
private Long attemptCount;
private String failureReason;
private String phoneNumber;
private String state;
private String caseId;
private String customVariables;
private String abandonPhase;
public String getAbandonType() {
return this.abandonType;
}
public void setAbandonType(String abandonType) {
this.abandonType = abandonType;
}
public Long getAttemptCount() {
return this.attemptCount;
}
public void setAttemptCount(Long attemptCount) {
this.attemptCount = attemptCount;
}
public String getFailureReason() {
return this.failureReason;
}
public void setFailureReason(String failureReason) {
this.failureReason = failureReason;
}
public String getPhoneNumber() {
return this.phoneNumber;
}
public void setPhoneNumber(String phoneNumber) {
this.phoneNumber = phoneNumber;
}
public String getState() {
return this.state;
}
public void setState(String state) {
this.state = state;
}
public String getCaseId() {
return this.caseId;
}
public void setCaseId(String caseId) {
this.caseId = caseId;
}
public String getCustomVariables() {
return this.customVariables;
}
public void setCustomVariables(String customVariables) {
this.customVariables = customVariables;
}
public String getAbandonPhase() {
return this.abandonPhase;
}
public void setAbandonPhase(String abandonPhase) {
this.abandonPhase = abandonPhase;
}
}
}
@Override
public ListCasesResponse getInstance(UnmarshallerContext context) {
return ListCasesResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListCategoriesRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListCategoriesRequest extends RpcAcsRequest<ListCategoriesResponse> {
private String instanceId;
private String type;
private String categoryId;
public ListCategoriesRequest() {
super("CCC", "2020-07-01", "ListCategories", "CCC");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putQueryParameter("Type", type);
}
}
public String getCategoryId() {
return this.categoryId;
}
public void setCategoryId(String categoryId) {
this.categoryId = categoryId;
if(categoryId != null){
putQueryParameter("CategoryId", categoryId);
}
}
@Override
public Class<ListCategoriesResponse> getResponseClass() {
return ListCategoriesResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListCategoriesResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ListCategoriesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListCategoriesResponse extends AcsResponse {
private String data;
private String requestId;
private Integer httpStatusCode;
private String code;
private String message;
private List<String> params;
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
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 String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public List<String> getParams() {
return this.params;
}
public void setParams(List<String> params) {
this.params = params;
}
@Override
public ListCategoriesResponse getInstance(UnmarshallerContext context) {
return ListCategoriesResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListCommonTicketFieldsRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListCommonTicketFieldsRequest extends RpcAcsRequest<ListCommonTicketFieldsResponse> {
private String instanceId;
public ListCommonTicketFieldsRequest() {
super("CCC", "2020-07-01", "ListCommonTicketFields", "CCC");
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<ListCommonTicketFieldsResponse> getResponseClass() {
return ListCommonTicketFieldsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListCommonTicketFieldsResponse.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.ccc.model.v20200701;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ListCommonTicketFieldsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListCommonTicketFieldsResponse extends AcsResponse {
@Override
public ListCommonTicketFieldsResponse getInstance(UnmarshallerContext context) {
return ListCommonTicketFieldsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListConfigItemsRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListConfigItemsRequest extends RpcAcsRequest<ListConfigItemsResponse> {
private String instanceId;
private String objectType;
private String objectId;
public ListConfigItemsRequest() {
super("CCC", "2020-07-01", "ListConfigItems", "CCC");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getObjectType() {
return this.objectType;
}
public void setObjectType(String objectType) {
this.objectType = objectType;
if(objectType != null){
putQueryParameter("ObjectType", objectType);
}
}
public String getObjectId() {
return this.objectId;
}
public void setObjectId(String objectId) {
this.objectId = objectId;
if(objectId != null){
putQueryParameter("ObjectId", objectId);
}
}
@Override
public Class<ListConfigItemsResponse> getResponseClass() {
return ListConfigItemsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListConfigItemsResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ListConfigItemsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListConfigItemsResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private List<ConfigItem> data;
private List<String> params;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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 List<ConfigItem> getData() {
return this.data;
}
public void setData(List<ConfigItem> data) {
this.data = data;
}
public List<String> getParams() {
return this.params;
}
public void setParams(List<String> params) {
this.params = params;
}
public static class ConfigItem {
private String objectId;
private String value;
private String objectType;
private String instanceId;
private String name;
public String getObjectId() {
return this.objectId;
}
public void setObjectId(String objectId) {
this.objectId = objectId;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
public String getObjectType() {
return this.objectType;
}
public void setObjectType(String objectType) {
this.objectType = objectType;
}
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 ListConfigItemsResponse getInstance(UnmarshallerContext context) {
return ListConfigItemsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListContactFlowsRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListContactFlowsRequest extends RpcAcsRequest<ListContactFlowsResponse> {
private String orderByField;
private String type;
private Integer pageNumber;
private String instanceId;
private Integer pageSize;
private String sortOrder;
public ListContactFlowsRequest() {
super("CCC", "2020-07-01", "ListContactFlows", "CCC");
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 getOrderByField() {
return this.orderByField;
}
public void setOrderByField(String orderByField) {
this.orderByField = orderByField;
if(orderByField != null){
putQueryParameter("OrderByField", orderByField);
}
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putQueryParameter("Type", type);
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getSortOrder() {
return this.sortOrder;
}
public void setSortOrder(String sortOrder) {
this.sortOrder = sortOrder;
if(sortOrder != null){
putQueryParameter("SortOrder", sortOrder);
}
}
@Override
public Class<ListContactFlowsResponse> getResponseClass() {
return ListContactFlowsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListContactFlowsResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ListContactFlowsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListContactFlowsResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private Data data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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 Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Integer pageNumber;
private Integer pageSize;
private Integer totalCount;
private List<ContactFlow> list;
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<ContactFlow> getList() {
return this.list;
}
public void setList(List<ContactFlow> list) {
this.list = list;
}
public static class ContactFlow {
private String type;
private String definition;
private String draftId;
private String description;
private String updatedTime;
private String editor;
private Boolean published;
private String instanceId;
private String name;
private String contactFlowId;
private String createdTime;
private List<String> numberList;
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getDefinition() {
return this.definition;
}
public void setDefinition(String definition) {
this.definition = definition;
}
public String getDraftId() {
return this.draftId;
}
public void setDraftId(String draftId) {
this.draftId = draftId;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getUpdatedTime() {
return this.updatedTime;
}
public void setUpdatedTime(String updatedTime) {
this.updatedTime = updatedTime;
}
public String getEditor() {
return this.editor;
}
public void setEditor(String editor) {
this.editor = editor;
}
public Boolean getPublished() {
return this.published;
}
public void setPublished(Boolean published) {
this.published = published;
}
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;
}
public String getContactFlowId() {
return this.contactFlowId;
}
public void setContactFlowId(String contactFlowId) {
this.contactFlowId = contactFlowId;
}
public String getCreatedTime() {
return this.createdTime;
}
public void setCreatedTime(String createdTime) {
this.createdTime = createdTime;
}
public List<String> getNumberList() {
return this.numberList;
}
public void setNumberList(List<String> numberList) {
this.numberList = numberList;
}
}
}
@Override
public ListContactFlowsResponse getInstance(UnmarshallerContext context) {
return ListContactFlowsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListCustomCallTaggingRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListCustomCallTaggingRequest extends RpcAcsRequest<ListCustomCallTaggingResponse> {
private Integer pageNumber;
private String searchPattern;
private String instanceId;
private Integer pageSize;
private String callTagNameList;
public ListCustomCallTaggingRequest() {
super("CCC", "2020-07-01", "ListCustomCallTagging", "CCC");
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 getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public String getSearchPattern() {
return this.searchPattern;
}
public void setSearchPattern(String searchPattern) {
this.searchPattern = searchPattern;
if(searchPattern != null){
putQueryParameter("SearchPattern", searchPattern);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getCallTagNameList() {
return this.callTagNameList;
}
public void setCallTagNameList(String callTagNameList) {
this.callTagNameList = callTagNameList;
if(callTagNameList != null){
putQueryParameter("CallTagNameList", callTagNameList);
}
}
@Override
public Class<ListCustomCallTaggingResponse> getResponseClass() {
return ListCustomCallTaggingResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListCustomCallTaggingResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ListCustomCallTaggingResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListCustomCallTaggingResponse extends AcsResponse {
private String requestId;
private Integer httpStatusCode;
private String code;
private String message;
private Data data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
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 String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Integer pageNumber;
private Integer pageSize;
private Integer totalCount;
private List<CustomCallTagging> list;
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<CustomCallTagging> getList() {
return this.list;
}
public void setList(List<CustomCallTagging> list) {
this.list = list;
}
public static class CustomCallTagging {
private String instanceId;
private String number;
private String description;
private String creator;
private String updateTime;
private List<CallTag> callTagList;
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getNumber() {
return this.number;
}
public void setNumber(String number) {
this.number = number;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getCreator() {
return this.creator;
}
public void setCreator(String creator) {
this.creator = creator;
}
public String getUpdateTime() {
return this.updateTime;
}
public void setUpdateTime(String updateTime) {
this.updateTime = updateTime;
}
public List<CallTag> getCallTagList() {
return this.callTagList;
}
public void setCallTagList(List<CallTag> callTagList) {
this.callTagList = callTagList;
}
public static class CallTag {
private String instanceId;
private String tagName;
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getTagName() {
return this.tagName;
}
public void setTagName(String tagName) {
this.tagName = tagName;
}
}
}
}
@Override
public ListCustomCallTaggingResponse getInstance(UnmarshallerContext context) {
return ListCustomCallTaggingResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListDevicesRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListDevicesRequest extends RpcAcsRequest<ListDevicesResponse> {
private String userId;
private String instanceId;
public ListDevicesRequest() {
super("CCC", "2020-07-01", "ListDevices", "CCC");
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 getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
if(userId != null){
putQueryParameter("UserId", userId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<ListDevicesResponse> getResponseClass() {
return ListDevicesResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListDevicesResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ListDevicesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListDevicesResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private List<Device> data;
private List<String> params;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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 List<Device> getData() {
return this.data;
}
public void setData(List<Device> data) {
this.data = data;
}
public List<String> getParams() {
return this.params;
}
public void setParams(List<String> params) {
this.params = params;
}
public static class Device {
private String extension;
private Long expires;
private String contact;
private String deviceId;
private String userId;
private String callId;
private String instanceId;
private String deviceType;
public String getExtension() {
return this.extension;
}
public void setExtension(String extension) {
this.extension = extension;
}
public Long getExpires() {
return this.expires;
}
public void setExpires(Long expires) {
this.expires = expires;
}
public String getContact() {
return this.contact;
}
public void setContact(String contact) {
this.contact = contact;
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getCallId() {
return this.callId;
}
public void setCallId(String callId) {
this.callId = callId;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getDeviceType() {
return this.deviceType;
}
public void setDeviceType(String deviceType) {
this.deviceType = deviceType;
}
}
@Override
public ListDevicesResponse getInstance(UnmarshallerContext context) {
return ListDevicesResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListDoNotCallNumbersRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListDoNotCallNumbersRequest extends RpcAcsRequest<ListDoNotCallNumbersResponse> {
private Integer pageNumber;
private String searchPattern;
private String instanceId;
private String scope;
private Integer pageSize;
public ListDoNotCallNumbersRequest() {
super("CCC", "2020-07-01", "ListDoNotCallNumbers", "CCC");
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 getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
public String getSearchPattern() {
return this.searchPattern;
}
public void setSearchPattern(String searchPattern) {
this.searchPattern = searchPattern;
if(searchPattern != null){
putQueryParameter("SearchPattern", searchPattern);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getScope() {
return this.scope;
}
public void setScope(String scope) {
this.scope = scope;
if(scope != null){
putQueryParameter("Scope", scope);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
@Override
public Class<ListDoNotCallNumbersResponse> getResponseClass() {
return ListDoNotCallNumbersResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListDoNotCallNumbersResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ListDoNotCallNumbersResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListDoNotCallNumbersResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private List<String> params;
private Data data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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 List<String> getParams() {
return this.params;
}
public void setParams(List<String> params) {
this.params = params;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Integer pageNumber;
private Integer pageSize;
private Integer totalCount;
private List<BlockedNumber> list;
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public List<BlockedNumber> getList() {
return this.list;
}
public void setList(List<BlockedNumber> list) {
this.list = list;
}
public static class BlockedNumber {
private String number;
private String scope;
private String remark;
private Long createTime;
private String creator;
private Long createdTime;
public String getNumber() {
return this.number;
}
public void setNumber(String number) {
this.number = number;
}
public String getScope() {
return this.scope;
}
public void setScope(String scope) {
this.scope = scope;
}
public String getRemark() {
return this.remark;
}
public void setRemark(String remark) {
this.remark = remark;
}
public Long getCreateTime() {
return this.createTime;
}
public void setCreateTime(Long createTime) {
this.createTime = createTime;
}
public String getCreator() {
return this.creator;
}
public void setCreator(String creator) {
this.creator = creator;
}
public Long getCreatedTime() {
return this.createdTime;
}
public void setCreatedTime(Long createdTime) {
this.createdTime = createdTime;
}
}
}
@Override
public ListDoNotCallNumbersResponse getInstance(UnmarshallerContext context) {
return ListDoNotCallNumbersResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListDocumentsRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import java.util.List;
import com.google.gson.Gson;
import com.google.gson.annotations.SerializedName;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListDocumentsRequest extends RpcAcsRequest<ListDocumentsResponse> {
private String nextPageToken;
private String searchPattern;
private String instanceId;
private String schemaId;
private String requestId;
private Integer pageSize;
@SerializedName("sorts")
private List<Sorts> sorts;
public ListDocumentsRequest() {
super("CCC", "2020-07-01", "ListDocuments", "CCC");
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 getNextPageToken() {
return this.nextPageToken;
}
public void setNextPageToken(String nextPageToken) {
this.nextPageToken = nextPageToken;
if(nextPageToken != null){
putBodyParameter("NextPageToken", nextPageToken);
}
}
public String getSearchPattern() {
return this.searchPattern;
}
public void setSearchPattern(String searchPattern) {
this.searchPattern = searchPattern;
if(searchPattern != null){
putBodyParameter("SearchPattern", searchPattern);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public String getSchemaId() {
return this.schemaId;
}
public void setSchemaId(String schemaId) {
this.schemaId = schemaId;
if(schemaId != null){
putBodyParameter("SchemaId", schemaId);
}
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
if(requestId != null){
putBodyParameter("RequestId", requestId);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putBodyParameter("PageSize", pageSize.toString());
}
}
public List<Sorts> getSorts() {
return this.sorts;
}
public void setSorts(List<Sorts> sorts) {
this.sorts = sorts;
if (sorts != null) {
putBodyParameter("Sorts" , new Gson().toJson(sorts));
}
}
public static class Sorts {
@SerializedName("PropertyName")
private String propertyName;
@SerializedName("Order")
private String order;
public String getPropertyName() {
return this.propertyName;
}
public void setPropertyName(String propertyName) {
this.propertyName = propertyName;
}
public String getOrder() {
return this.order;
}
public void setOrder(String order) {
this.order = order;
}
}
@Override
public Class<ListDocumentsResponse> getResponseClass() {
return ListDocumentsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListDocumentsResponse.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.ccc.model.v20200701;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ListDocumentsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListDocumentsResponse extends AcsResponse {
@Override
public ListDocumentsResponse getInstance(UnmarshallerContext context) {
return ListDocumentsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListFlashSmsApplicationsRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListFlashSmsApplicationsRequest extends RpcAcsRequest<ListFlashSmsApplicationsResponse> {
private String instanceId;
private String providerId;
private String name;
private Integer pageSize;
private Integer pageNumber;
public ListFlashSmsApplicationsRequest() {
super("CCC", "2020-07-01", "ListFlashSmsApplications", "CCC");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getProviderId() {
return this.providerId;
}
public void setProviderId(String providerId) {
this.providerId = providerId;
if(providerId != null){
putQueryParameter("ProviderId", providerId);
}
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
if(name != null){
putQueryParameter("Name", name);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
if(pageNumber != null){
putQueryParameter("PageNumber", pageNumber.toString());
}
}
@Override
public Class<ListFlashSmsApplicationsResponse> getResponseClass() {
return ListFlashSmsApplicationsResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListFlashSmsApplicationsResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ListFlashSmsApplicationsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListFlashSmsApplicationsResponse extends AcsResponse {
private String requestId;
private Integer httpStatusCode;
private String code;
private String message;
private List<String> params;
private Data data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
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 String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public List<String> getParams() {
return this.params;
}
public void setParams(List<String> params) {
this.params = params;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Integer totalCount;
private Integer pageNumber;
private Integer pageSize;
private List<ListItem> list;
public Integer getTotalCount() {
return this.totalCount;
}
public void setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public void setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
}
public List<ListItem> getList() {
return this.list;
}
public void setList(List<ListItem> list) {
this.list = list;
}
public static class ListItem {
private String instanceId;
private String providerId;
private String applicationId;
private String name;
private String value;
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getProviderId() {
return this.providerId;
}
public void setProviderId(String providerId) {
this.providerId = providerId;
}
public String getApplicationId() {
return this.applicationId;
}
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getValue() {
return this.value;
}
public void setValue(String value) {
this.value = value;
}
}
}
@Override
public ListFlashSmsApplicationsResponse getInstance(UnmarshallerContext context) {
return ListFlashSmsApplicationsResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListFlashSmsTemplatesRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListFlashSmsTemplatesRequest extends RpcAcsRequest<ListFlashSmsTemplatesResponse> {
private String instanceId;
private String providerId;
private String applicationId;
public ListFlashSmsTemplatesRequest() {
super("CCC", "2020-07-01", "ListFlashSmsTemplates", "CCC");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getProviderId() {
return this.providerId;
}
public void setProviderId(String providerId) {
this.providerId = providerId;
if(providerId != null){
putQueryParameter("ProviderId", providerId);
}
}
public String getApplicationId() {
return this.applicationId;
}
public void setApplicationId(String applicationId) {
this.applicationId = applicationId;
if(applicationId != null){
putQueryParameter("ApplicationId", applicationId);
}
}
@Override
public Class<ListFlashSmsTemplatesResponse> getResponseClass() {
return ListFlashSmsTemplatesResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListFlashSmsTemplatesResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ListFlashSmsTemplatesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListFlashSmsTemplatesResponse extends AcsResponse {
private String requestId;
private Integer httpStatusCode;
private String code;
private String message;
private List<DataItem> data;
private List<String> params;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
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 String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public List<DataItem> getData() {
return this.data;
}
public void setData(List<DataItem> data) {
this.data = data;
}
public List<String> getParams() {
return this.params;
}
public void setParams(List<String> params) {
this.params = params;
}
public static class DataItem {
private String templateId;
private String templateName;
public String getTemplateId() {
return this.templateId;
}
public void setTemplateId(String templateId) {
this.templateId = templateId;
}
public String getTemplateName() {
return this.templateName;
}
public void setTemplateName(String templateName) {
this.templateName = templateName;
}
}
@Override
public ListFlashSmsTemplatesResponse getInstance(UnmarshallerContext context) {
return ListFlashSmsTemplatesResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListGroupChatMessagesRequest.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.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class ListGroupChatMessagesRequest extends RpcAcsRequest<ListGroupChatMessagesResponse> {
private String nextPageToken;
private String jobId;
private String instanceId;
private Integer pageSize;
private String sortOrder;
public ListGroupChatMessagesRequest() {
super("CCC", "2020-07-01", "ListGroupChatMessages", "CCC");
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 getNextPageToken() {
return this.nextPageToken;
}
public void setNextPageToken(String nextPageToken) {
this.nextPageToken = nextPageToken;
if(nextPageToken != null){
putQueryParameter("NextPageToken", nextPageToken);
}
}
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
if(jobId != null){
putQueryParameter("JobId", jobId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public Integer getPageSize() {
return this.pageSize;
}
public void setPageSize(Integer pageSize) {
this.pageSize = pageSize;
if(pageSize != null){
putQueryParameter("PageSize", pageSize.toString());
}
}
public String getSortOrder() {
return this.sortOrder;
}
public void setSortOrder(String sortOrder) {
this.sortOrder = sortOrder;
if(sortOrder != null){
putQueryParameter("SortOrder", sortOrder);
}
}
@Override
public Class<ListGroupChatMessagesResponse> getResponseClass() {
return ListGroupChatMessagesResponse.class;
}
}
|
0
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model
|
java-sources/com/aliyun/aliyun-java-sdk-ccc/2.10.6/com/aliyuncs/ccc/model/v20200701/ListGroupChatMessagesResponse.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.ccc.model.v20200701;
import java.util.List;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.ListGroupChatMessagesResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ListGroupChatMessagesResponse extends AcsResponse {
private String requestId;
private Integer httpStatusCode;
private String message;
private String code;
private Data data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
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 Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String nextPageToken;
private List<GroupChatMessage> messages;
public String getNextPageToken() {
return this.nextPageToken;
}
public void setNextPageToken(String nextPageToken) {
this.nextPageToken = nextPageToken;
}
public List<GroupChatMessage> getMessages() {
return this.messages;
}
public void setMessages(List<GroupChatMessage> messages) {
this.messages = messages;
}
public static class GroupChatMessage {
private String jobId;
private String senderId;
private String senderType;
private Long timestamp;
private String content;
private String senderName;
private String senderAvatarUrl;
private Boolean recalled;
public String getJobId() {
return this.jobId;
}
public void setJobId(String jobId) {
this.jobId = jobId;
}
public String getSenderId() {
return this.senderId;
}
public void setSenderId(String senderId) {
this.senderId = senderId;
}
public String getSenderType() {
return this.senderType;
}
public void setSenderType(String senderType) {
this.senderType = senderType;
}
public Long getTimestamp() {
return this.timestamp;
}
public void setTimestamp(Long timestamp) {
this.timestamp = timestamp;
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
public String getSenderName() {
return this.senderName;
}
public void setSenderName(String senderName) {
this.senderName = senderName;
}
public String getSenderAvatarUrl() {
return this.senderAvatarUrl;
}
public void setSenderAvatarUrl(String senderAvatarUrl) {
this.senderAvatarUrl = senderAvatarUrl;
}
public Boolean getRecalled() {
return this.recalled;
}
public void setRecalled(Boolean recalled) {
this.recalled = recalled;
}
}
}
@Override
public ListGroupChatMessagesResponse getInstance(UnmarshallerContext context) {
return ListGroupChatMessagesResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.