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/PickOutboundNumbersRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 PickOutboundNumbersRequest extends RpcAcsRequest<PickOutboundNumbersResponse> { private Integer count; private String instanceId; private String skillGroupIdList; private String calledNumber; public PickOutboundNumbersRequest() { super("CCC", "2020-07-01", "PickOutboundNumbers", "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 getCount() { return this.count; } public void setCount(Integer count) { this.count = count; if(count != null){ putQueryParameter("Count", count.toString()); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } 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); } } @Override public Class<PickOutboundNumbersResponse> getResponseClass() { return PickOutboundNumbersResponse.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/PickOutboundNumbersResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.PickOutboundNumbersResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class PickOutboundNumbersResponse extends AcsResponse { private String code; private Integer httpStatusCode; private String message; private String requestId; private List<NumberPair> 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<NumberPair> getData() { return this.data; } public void setData(List<NumberPair> data) { this.data = data; } public static class NumberPair { private Callee callee; private Caller caller; public Callee getCallee() { return this.callee; } public void setCallee(Callee callee) { this.callee = callee; } public Caller getCaller() { return this.caller; } public void setCaller(Caller caller) { this.caller = caller; } public static class Callee { 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; } } public static class Caller { 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 PickOutboundNumbersResponse getInstance(UnmarshallerContext context) { return PickOutboundNumbersResponseUnmarshaller.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/PollUserStatusRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 PollUserStatusRequest extends RpcAcsRequest<PollUserStatusResponse> { private String userId; private String deviceId; private String instanceId; public PollUserStatusRequest() { super("CCC", "2020-07-01", "PollUserStatus", "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 getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } @Override public Class<PollUserStatusResponse> getResponseClass() { return PollUserStatusResponse.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/PollUserStatusResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.PollUserStatusResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class PollUserStatusResponse 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 List<ChatContext> chatContexts; private CallContext callContext; private UserContext userContext; public Long getContextId() { return this.contextId; } public void setContextId(Long contextId) { this.contextId = contextId; } public List<ChatContext> getChatContexts() { return this.chatContexts; } public void setChatContexts(List<ChatContext> chatContexts) { this.chatContexts = chatContexts; } 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 ChatContext { private String instanceId; private String jobId; private String chatType; private String callVariables; private List<ChatMember> members; 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 String getChatType() { return this.chatType; } public void setChatType(String chatType) { this.chatType = chatType; } public String getCallVariables() { return this.callVariables; } public void setCallVariables(String callVariables) { this.callVariables = callVariables; } public List<ChatMember> getMembers() { return this.members; } public void setMembers(List<ChatMember> members) { this.members = members; } public static class ChatMember { private Integer index; private String userId; private String userType; private String status; private String skillGroupId; private String releaseInitiator; private String releaseReason; public Integer getIndex() { return this.index; } public void setIndex(Integer index) { this.index = index; } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; } public String getUserType() { return this.userType; } public void setUserType(String userType) { this.userType = userType; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getSkillGroupId() { return this.skillGroupId; } public void setSkillGroupId(String skillGroupId) { this.skillGroupId = skillGroupId; } public String getReleaseInitiator() { return this.releaseInitiator; } public void setReleaseInitiator(String releaseInitiator) { this.releaseInitiator = releaseInitiator; } public String getReleaseReason() { return this.releaseReason; } public void setReleaseReason(String releaseReason) { this.releaseReason = releaseReason; } } } public static class CallContext { private String callType; private String instanceId; private String jobId; private String callVariables; 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 String getCallVariables() { return this.callVariables; } public void setCallVariables(String callVariables) { this.callVariables = callVariables; } 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 channelVariables; 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 getChannelVariables() { return this.channelVariables; } public void setChannelVariables(String channelVariables) { this.channelVariables = channelVariables; } 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<JobStatus> parallelJobList; 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<JobStatus> getParallelJobList() { return this.parallelJobList; } public void setParallelJobList(List<JobStatus> parallelJobList) { this.parallelJobList = parallelJobList; } public List<String> getSignedSkillGroupIdList() { return this.signedSkillGroupIdList; } public void setSignedSkillGroupIdList(List<String> signedSkillGroupIdList) { this.signedSkillGroupIdList = signedSkillGroupIdList; } public static class JobStatus { private String jobId; private String status; private Long timestamp; public String getJobId() { return this.jobId; } public void setJobId(String jobId) { this.jobId = jobId; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public Long getTimestamp() { return this.timestamp; } public void setTimestamp(Long timestamp) { this.timestamp = timestamp; } } } } @Override public PollUserStatusResponse getInstance(UnmarshallerContext context) { return PollUserStatusResponseUnmarshaller.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/ProcessAliMeCallbackOfStagingRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.ccc.Endpoint; /** * @author auto create * @version */ public class ProcessAliMeCallbackOfStagingRequest extends RpcAcsRequest<ProcessAliMeCallbackOfStagingResponse> { private String data; private String token; public ProcessAliMeCallbackOfStagingRequest() { super("CCC", "2020-07-01", "ProcessAliMeCallbackOfStaging", "CCC"); setProtocol(ProtocolType.HTTPS); 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 getData() { return this.data; } public void setData(String data) { this.data = data; if(data != null){ putQueryParameter("Data", data); } } public String getToken() { return this.token; } public void setToken(String token) { this.token = token; if(token != null){ putQueryParameter("Token", token); } } @Override public Class<ProcessAliMeCallbackOfStagingResponse> getResponseClass() { return ProcessAliMeCallbackOfStagingResponse.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/ProcessAliMeCallbackOfStagingResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.ProcessAliMeCallbackOfStagingResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ProcessAliMeCallbackOfStagingResponse extends AcsResponse { private String requestId; private String code; private Integer httpStatusCode; private String message; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public 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 Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String result; public String getResult() { return this.result; } public void setResult(String result) { this.result = result; } } @Override public ProcessAliMeCallbackOfStagingResponse getInstance(UnmarshallerContext context) { return ProcessAliMeCallbackOfStagingResponseUnmarshaller.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/PublishContactFlowRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 PublishContactFlowRequest extends RpcAcsRequest<PublishContactFlowResponse> { private String contactFlowId; private String draftId; private String instanceId; public PublishContactFlowRequest() { super("CCC", "2020-07-01", "PublishContactFlow", "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 getDraftId() { return this.draftId; } public void setDraftId(String draftId) { this.draftId = draftId; if(draftId != null){ putQueryParameter("DraftId", draftId); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } @Override public Class<PublishContactFlowResponse> getResponseClass() { return PublishContactFlowResponse.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/PublishContactFlowResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.PublishContactFlowResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class PublishContactFlowResponse 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 PublishContactFlowResponse getInstance(UnmarshallerContext context) { return PublishContactFlowResponseUnmarshaller.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/ReadyForServiceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 ReadyForServiceRequest extends RpcAcsRequest<ReadyForServiceResponse> { private Boolean outboundScenario; private String userId; private String deviceId; private String instanceId; public ReadyForServiceRequest() { super("CCC", "2020-07-01", "ReadyForService", "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 Boolean getOutboundScenario() { return this.outboundScenario; } public void setOutboundScenario(Boolean outboundScenario) { this.outboundScenario = outboundScenario; if(outboundScenario != null){ putQueryParameter("OutboundScenario", outboundScenario.toString()); } } 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 getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } @Override public Class<ReadyForServiceResponse> getResponseClass() { return ReadyForServiceResponse.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/ReadyForServiceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.ReadyForServiceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ReadyForServiceResponse 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 extension; private String workMode; private String deviceId; private String jobId; private String userId; private String breakCode; private String instanceId; private Boolean outboundScenario; private String userState; private List<String> signedSkillGroupIdList; public String getExtension() { return this.extension; } public void setExtension(String extension) { this.extension = extension; } 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 getJobId() { return this.jobId; } public void setJobId(String jobId) { this.jobId = jobId; } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; } 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 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 ReadyForServiceResponse getInstance(UnmarshallerContext context) { return ReadyForServiceResponseUnmarshaller.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/RedialCallRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 RedialCallRequest extends RpcAcsRequest<RedialCallResponse> { private String callee; private String userId; private String deviceId; private String tags; private Integer timeoutSeconds; private String jobId; private String caller; private String instanceId; public RedialCallRequest() { super("CCC", "2020-07-01", "RedialCall", "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 getCallee() { return this.callee; } public void setCallee(String callee) { this.callee = callee; if(callee != null){ putQueryParameter("Callee", callee); } } 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 getTags() { return this.tags; } public void setTags(String tags) { this.tags = tags; if(tags != null){ putQueryParameter("Tags", tags); } } 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 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); } } @Override public Class<RedialCallResponse> getResponseClass() { return RedialCallResponse.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/RedialCallResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.RedialCallResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RedialCallResponse 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 String releaseInitiator; private String channelState; private String destination; private String userId; private String channelFlags; 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 getChannelFlags() { return this.channelFlags; } public void setChannelFlags(String channelFlags) { this.channelFlags = channelFlags; } 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 String workMode; private String deviceId; private String jobId; private String userId; private String breakCode; private String instanceId; private Boolean outboundScenario; private String userState; private List<String> signedSkillGroupIdList; public String getExtension() { return this.extension; } public void setExtension(String extension) { this.extension = extension; } 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 getJobId() { return this.jobId; } public void setJobId(String jobId) { this.jobId = jobId; } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; } 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 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 RedialCallResponse getInstance(UnmarshallerContext context) { return RedialCallResponseUnmarshaller.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/RegisterDeviceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 RegisterDeviceRequest extends RpcAcsRequest<RegisterDeviceResponse> { private String userId; private String deviceId; private String password; private String instanceId; public RegisterDeviceRequest() { super("CCC", "2020-07-01", "RegisterDevice", "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 getPassword() { return this.password; } public void setPassword(String password) { this.password = password; if(password != null){ putQueryParameter("Password", password); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } @Override public Class<RegisterDeviceResponse> getResponseClass() { return RegisterDeviceResponse.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/RegisterDeviceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.RegisterDeviceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RegisterDeviceResponse 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 RegisterDeviceResponse getInstance(UnmarshallerContext context) { return RegisterDeviceResponseUnmarshaller.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/RegisterDevicesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 RegisterDevicesRequest extends RpcAcsRequest<RegisterDevicesResponse> { private String userIdListJson; private String deviceId; private String password; private String instanceId; public RegisterDevicesRequest() { super("CCC", "2020-07-01", "RegisterDevices", "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 getUserIdListJson() { return this.userIdListJson; } public void setUserIdListJson(String userIdListJson) { this.userIdListJson = userIdListJson; if(userIdListJson != null){ putQueryParameter("UserIdListJson", userIdListJson); } } public String getDeviceId() { return this.deviceId; } public void setDeviceId(String deviceId) { this.deviceId = deviceId; if(deviceId != null){ putQueryParameter("DeviceId", deviceId); } } public String getPassword() { return this.password; } public void setPassword(String password) { this.password = password; if(password != null){ putQueryParameter("Password", password); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } @Override public Class<RegisterDevicesResponse> getResponseClass() { return RegisterDevicesResponse.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/RegisterDevicesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.RegisterDevicesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RegisterDevicesResponse 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 RegisterDevicesResponse getInstance(UnmarshallerContext context) { return RegisterDevicesResponseUnmarshaller.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/RejectChatRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 RejectChatRequest extends RpcAcsRequest<RejectChatResponse> { private String jobId; private String instanceId; public RejectChatRequest() { super("CCC", "2020-07-01", "RejectChat", "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 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<RejectChatResponse> getResponseClass() { return RejectChatResponse.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/RejectChatResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.RejectChatResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RejectChatResponse 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 RejectChatResponse getInstance(UnmarshallerContext context) { return RejectChatResponseUnmarshaller.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/RejectTicketRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 RejectTicketRequest extends RpcAcsRequest<RejectTicketResponse> { private String instanceId; private String comment; private String ticketId; public RejectTicketRequest() { super("CCC", "2020-07-01", "RejectTicket", "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 getComment() { return this.comment; } public void setComment(String comment) { this.comment = comment; if(comment != null){ putQueryParameter("Comment", comment); } } public String getTicketId() { return this.ticketId; } public void setTicketId(String ticketId) { this.ticketId = ticketId; if(ticketId != null){ putQueryParameter("TicketId", ticketId); } } @Override public Class<RejectTicketResponse> getResponseClass() { return RejectTicketResponse.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/RejectTicketResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.RejectTicketResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RejectTicketResponse extends AcsResponse { @Override public RejectTicketResponse getInstance(UnmarshallerContext context) { return RejectTicketResponseUnmarshaller.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/ReleaseCallRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 ReleaseCallRequest extends RpcAcsRequest<ReleaseCallResponse> { private String userId; private String deviceId; private String jobId; private String instanceId; private String channelId; public ReleaseCallRequest() { super("CCC", "2020-07-01", "ReleaseCall", "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 getChannelId() { return this.channelId; } public void setChannelId(String channelId) { this.channelId = channelId; if(channelId != null){ putQueryParameter("ChannelId", channelId); } } @Override public Class<ReleaseCallResponse> getResponseClass() { return ReleaseCallResponse.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/ReleaseCallResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.ReleaseCallResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ReleaseCallResponse 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 jobId; private String instanceId; private List<ChannelContext> channelContexts; public String getJobId() { return this.jobId; } public void setJobId(String jobId) { this.jobId = jobId; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } 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 Long timestamp; private String releaseReason; private String callType; private String jobId; private String channelId; private String originator; private String userExtension; private String channelVariables; 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 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 String getChannelVariables() { return this.channelVariables; } public void setChannelVariables(String channelVariables) { this.channelVariables = channelVariables; } } } public static class UserContext { private String extension; private String workMode; private String deviceId; private String jobId; private String userId; private String breakCode; private String instanceId; private Boolean outboundScenario; private String userState; private List<String> signedSkillGroupIdList; public String getExtension() { return this.extension; } public void setExtension(String extension) { this.extension = extension; } 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 getJobId() { return this.jobId; } public void setJobId(String jobId) { this.jobId = jobId; } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; } 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 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 ReleaseCallResponse getInstance(UnmarshallerContext context) { return ReleaseCallResponseUnmarshaller.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/ReleaseChatRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 ReleaseChatRequest extends RpcAcsRequest<ReleaseChatResponse> { private String userType; private String userId; private String token; private String jobId; private String instanceId; public ReleaseChatRequest() { super("CCC", "2020-07-01", "ReleaseChat", "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 getUserType() { return this.userType; } public void setUserType(String userType) { this.userType = userType; if(userType != null){ putQueryParameter("UserType", userType); } } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; if(userId != null){ putQueryParameter("UserId", userId); } } public String getToken() { return this.token; } public void setToken(String token) { this.token = token; if(token != null){ putQueryParameter("Token", token); } } 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<ReleaseChatResponse> getResponseClass() { return ReleaseChatResponse.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/ReleaseChatResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.ReleaseChatResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ReleaseChatResponse 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 ReleaseChatResponse getInstance(UnmarshallerContext context) { return ReleaseChatResponseUnmarshaller.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/RemoveBlacklistCallTaggingRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 RemoveBlacklistCallTaggingRequest extends RpcAcsRequest<RemoveBlacklistCallTaggingResponse> { private String number; private String jobId; private String instanceId; public RemoveBlacklistCallTaggingRequest() { super("CCC", "2020-07-01", "RemoveBlacklistCallTagging", "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 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<RemoveBlacklistCallTaggingResponse> getResponseClass() { return RemoveBlacklistCallTaggingResponse.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/RemoveBlacklistCallTaggingResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.RemoveBlacklistCallTaggingResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RemoveBlacklistCallTaggingResponse extends AcsResponse { private String requestId; private Integer httpStatusCode; private String code; private String message; 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; } @Override public RemoveBlacklistCallTaggingResponse getInstance(UnmarshallerContext context) { return RemoveBlacklistCallTaggingResponseUnmarshaller.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/RemoveDoNotCallNumbersRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 RemoveDoNotCallNumbersRequest extends RpcAcsRequest<RemoveDoNotCallNumbersResponse> { private String numberList; private String instanceId; public RemoveDoNotCallNumbersRequest() { super("CCC", "2020-07-01", "RemoveDoNotCallNumbers", "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 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); } } @Override public Class<RemoveDoNotCallNumbersResponse> getResponseClass() { return RemoveDoNotCallNumbersResponse.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/RemoveDoNotCallNumbersResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.RemoveDoNotCallNumbersResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RemoveDoNotCallNumbersResponse extends AcsResponse { private Integer httpStatusCode; private String code; private String message; private String data; private String requestId; 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 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 List<String> getParams() { return this.params; } public void setParams(List<String> params) { this.params = params; } @Override public RemoveDoNotCallNumbersResponse getInstance(UnmarshallerContext context) { return RemoveDoNotCallNumbersResponseUnmarshaller.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/RemovePersonalNumbersFromUserRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 RemovePersonalNumbersFromUserRequest extends RpcAcsRequest<RemovePersonalNumbersFromUserResponse> { private String userId; private String numberList; private String instanceId; public RemovePersonalNumbersFromUserRequest() { super("CCC", "2020-07-01", "RemovePersonalNumbersFromUser", "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 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); } } @Override public Class<RemovePersonalNumbersFromUserResponse> getResponseClass() { return RemovePersonalNumbersFromUserResponse.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/RemovePersonalNumbersFromUserResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.RemovePersonalNumbersFromUserResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RemovePersonalNumbersFromUserResponse 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 RemovePersonalNumbersFromUserResponse getInstance(UnmarshallerContext context) { return RemovePersonalNumbersFromUserResponseUnmarshaller.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/RemovePhoneNumberFromSkillGroupsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 RemovePhoneNumberFromSkillGroupsRequest extends RpcAcsRequest<RemovePhoneNumberFromSkillGroupsResponse> { private String number; private String instanceId; private String skillGroupIdList; public RemovePhoneNumberFromSkillGroupsRequest() { super("CCC", "2020-07-01", "RemovePhoneNumberFromSkillGroups", "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); } } public String getSkillGroupIdList() { return this.skillGroupIdList; } public void setSkillGroupIdList(String skillGroupIdList) { this.skillGroupIdList = skillGroupIdList; if(skillGroupIdList != null){ putQueryParameter("SkillGroupIdList", skillGroupIdList); } } @Override public Class<RemovePhoneNumberFromSkillGroupsResponse> getResponseClass() { return RemovePhoneNumberFromSkillGroupsResponse.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/RemovePhoneNumberFromSkillGroupsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.RemovePhoneNumberFromSkillGroupsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RemovePhoneNumberFromSkillGroupsResponse 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 RemovePhoneNumberFromSkillGroupsResponse getInstance(UnmarshallerContext context) { return RemovePhoneNumberFromSkillGroupsResponseUnmarshaller.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/RemovePhoneNumbersFromSkillGroupRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 RemovePhoneNumbersFromSkillGroupRequest extends RpcAcsRequest<RemovePhoneNumbersFromSkillGroupResponse> { private String numberList; private String instanceId; private String skillGroupId; public RemovePhoneNumbersFromSkillGroupRequest() { super("CCC", "2020-07-01", "RemovePhoneNumbersFromSkillGroup", "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 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 getSkillGroupId() { return this.skillGroupId; } public void setSkillGroupId(String skillGroupId) { this.skillGroupId = skillGroupId; if(skillGroupId != null){ putQueryParameter("SkillGroupId", skillGroupId); } } @Override public Class<RemovePhoneNumbersFromSkillGroupResponse> getResponseClass() { return RemovePhoneNumbersFromSkillGroupResponse.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/RemovePhoneNumbersFromSkillGroupResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.RemovePhoneNumbersFromSkillGroupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RemovePhoneNumbersFromSkillGroupResponse 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 RemovePhoneNumbersFromSkillGroupResponse getInstance(UnmarshallerContext context) { return RemovePhoneNumbersFromSkillGroupResponseUnmarshaller.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/RemovePhoneNumbersRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 RemovePhoneNumbersRequest extends RpcAcsRequest<RemovePhoneNumbersResponse> { private String numberList; private String instanceId; private Boolean force; public RemovePhoneNumbersRequest() { super("CCC", "2020-07-01", "RemovePhoneNumbers", "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 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 Boolean getForce() { return this.force; } public void setForce(Boolean force) { this.force = force; if(force != null){ putQueryParameter("Force", force.toString()); } } @Override public Class<RemovePhoneNumbersResponse> getResponseClass() { return RemovePhoneNumbersResponse.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/RemovePhoneNumbersResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.RemovePhoneNumbersResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RemovePhoneNumbersResponse extends AcsResponse { private Integer httpStatusCode; private String code; private String message; private String requestId; private List<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 List<String> getData() { return this.data; } public void setData(List<String> data) { this.data = data; } public List<String> getParams() { return this.params; } public void setParams(List<String> params) { this.params = params; } @Override public RemovePhoneNumbersResponse getInstance(UnmarshallerContext context) { return RemovePhoneNumbersResponseUnmarshaller.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/RemoveSkillGroupsFromUserRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 RemoveSkillGroupsFromUserRequest extends RpcAcsRequest<RemoveSkillGroupsFromUserResponse> { private String userId; private String instanceId; private String skillGroupIdList; public RemoveSkillGroupsFromUserRequest() { super("CCC", "2020-07-01", "RemoveSkillGroupsFromUser", "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); } } public String getSkillGroupIdList() { return this.skillGroupIdList; } public void setSkillGroupIdList(String skillGroupIdList) { this.skillGroupIdList = skillGroupIdList; if(skillGroupIdList != null){ putQueryParameter("SkillGroupIdList", skillGroupIdList); } } @Override public Class<RemoveSkillGroupsFromUserResponse> getResponseClass() { return RemoveSkillGroupsFromUserResponse.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/RemoveSkillGroupsFromUserResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.RemoveSkillGroupsFromUserResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RemoveSkillGroupsFromUserResponse extends AcsResponse { private Integer httpStatusCode; private String code; private String message; private String data; private String 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 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; } @Override public RemoveSkillGroupsFromUserResponse getInstance(UnmarshallerContext context) { return RemoveSkillGroupsFromUserResponseUnmarshaller.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/RemoveUsersFromSkillGroupRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 RemoveUsersFromSkillGroupRequest extends RpcAcsRequest<RemoveUsersFromSkillGroupResponse> { private String userIdList; private String instanceId; private String skillGroupId; public RemoveUsersFromSkillGroupRequest() { super("CCC", "2020-07-01", "RemoveUsersFromSkillGroup", "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 getUserIdList() { return this.userIdList; } public void setUserIdList(String userIdList) { this.userIdList = userIdList; if(userIdList != null){ putQueryParameter("UserIdList", userIdList); } } 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<RemoveUsersFromSkillGroupResponse> getResponseClass() { return RemoveUsersFromSkillGroupResponse.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/RemoveUsersFromSkillGroupResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.RemoveUsersFromSkillGroupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RemoveUsersFromSkillGroupResponse 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 RemoveUsersFromSkillGroupResponse getInstance(UnmarshallerContext context) { return RemoveUsersFromSkillGroupResponseUnmarshaller.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/RemoveUsersRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 RemoveUsersRequest extends RpcAcsRequest<RemoveUsersResponse> { private String userIdList; private String notificationEmail; private String instanceId; private String filePath; private Boolean force; public RemoveUsersRequest() { super("CCC", "2020-07-01", "RemoveUsers", "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 getUserIdList() { return this.userIdList; } public void setUserIdList(String userIdList) { this.userIdList = userIdList; if(userIdList != null){ putQueryParameter("UserIdList", userIdList); } } public String getNotificationEmail() { return this.notificationEmail; } public void setNotificationEmail(String notificationEmail) { this.notificationEmail = notificationEmail; if(notificationEmail != null){ putQueryParameter("NotificationEmail", notificationEmail); } } 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); } } public Boolean getForce() { return this.force; } public void setForce(Boolean force) { this.force = force; if(force != null){ putQueryParameter("Force", force.toString()); } } @Override public Class<RemoveUsersResponse> getResponseClass() { return RemoveUsersResponse.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/RemoveUsersResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.RemoveUsersResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RemoveUsersResponse 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 RemoveUsersResponse getInstance(UnmarshallerContext context) { return RemoveUsersResponseUnmarshaller.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/ResetAgentStateRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 ResetAgentStateRequest extends RpcAcsRequest<ResetAgentStateResponse> { private String userId; private String deviceId; private String instanceId; public ResetAgentStateRequest() { super("CCC", "2020-07-01", "ResetAgentState", "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 getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } @Override public Class<ResetAgentStateResponse> getResponseClass() { return ResetAgentStateResponse.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/ResetAgentStateResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.ResetAgentStateResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ResetAgentStateResponse 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 extension; private String workMode; private String deviceId; private String jobId; private String userId; private String breakCode; private String instanceId; private Boolean outboundScenario; private String userState; private List<String> signedSkillGroupIdList; public String getExtension() { return this.extension; } public void setExtension(String extension) { this.extension = extension; } 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 getJobId() { return this.jobId; } public void setJobId(String jobId) { this.jobId = jobId; } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; } 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 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 ResetAgentStateResponse getInstance(UnmarshallerContext context) { return ResetAgentStateResponseUnmarshaller.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/ResetUserPasswordRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 ResetUserPasswordRequest extends RpcAcsRequest<ResetUserPasswordResponse> { private String userId; private String password; private String instanceId; public ResetUserPasswordRequest() { super("CCC", "2020-07-01", "ResetUserPassword", "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 getPassword() { return this.password; } public void setPassword(String password) { this.password = password; if(password != null){ putQueryParameter("Password", password); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } @Override public Class<ResetUserPasswordResponse> getResponseClass() { return ResetUserPasswordResponse.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/ResetUserPasswordResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.ResetUserPasswordResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ResetUserPasswordResponse 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 ResetUserPasswordResponse getInstance(UnmarshallerContext context) { return ResetUserPasswordResponseUnmarshaller.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/RestoreArchivedRecordingsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 RestoreArchivedRecordingsRequest extends RpcAcsRequest<RestoreArchivedRecordingsResponse> { private String contactIds; private String instanceId; public RestoreArchivedRecordingsRequest() { super("CCC", "2020-07-01", "RestoreArchivedRecordings", "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 getContactIds() { return this.contactIds; } public void setContactIds(String contactIds) { this.contactIds = contactIds; if(contactIds != null){ putQueryParameter("ContactIds", contactIds); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } @Override public Class<RestoreArchivedRecordingsResponse> getResponseClass() { return RestoreArchivedRecordingsResponse.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/RestoreArchivedRecordingsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.RestoreArchivedRecordingsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RestoreArchivedRecordingsResponse extends AcsResponse { private String code; private Integer httpStatusCode; private String message; private String requestId; private List<RecordingRestoreDetail> 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<RecordingRestoreDetail> getData() { return this.data; } public void setData(List<RecordingRestoreDetail> data) { this.data = data; } public static class RecordingRestoreDetail { private String exists; private String contactId; private String status; private String storageType; public String getExists() { return this.exists; } public void setExists(String exists) { this.exists = exists; } public String getContactId() { return this.contactId; } public void setContactId(String contactId) { this.contactId = contactId; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getStorageType() { return this.storageType; } public void setStorageType(String storageType) { this.storageType = storageType; } } @Override public RestoreArchivedRecordingsResponse getInstance(UnmarshallerContext context) { return RestoreArchivedRecordingsResponseUnmarshaller.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/ResubmitTicketRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 ResubmitTicketRequest extends RpcAcsRequest<ResubmitTicketResponse> { private String instanceId; private String comment; private String ticketId; public ResubmitTicketRequest() { super("CCC", "2020-07-01", "ResubmitTicket", "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 getComment() { return this.comment; } public void setComment(String comment) { this.comment = comment; if(comment != null){ putQueryParameter("Comment", comment); } } public String getTicketId() { return this.ticketId; } public void setTicketId(String ticketId) { this.ticketId = ticketId; if(ticketId != null){ putQueryParameter("TicketId", ticketId); } } @Override public Class<ResubmitTicketResponse> getResponseClass() { return ResubmitTicketResponse.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/ResubmitTicketResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.ResubmitTicketResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ResubmitTicketResponse extends AcsResponse { @Override public ResubmitTicketResponse getInstance(UnmarshallerContext context) { return ResubmitTicketResponseUnmarshaller.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/ResumeCampaignRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 ResumeCampaignRequest extends RpcAcsRequest<ResumeCampaignResponse> { private String instanceId; private String campaignId; public ResumeCampaignRequest() { super("CCC", "2020-07-01", "ResumeCampaign", "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); } } @Override public Class<ResumeCampaignResponse> getResponseClass() { return ResumeCampaignResponse.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/ResumeCampaignResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.ResumeCampaignResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ResumeCampaignResponse extends AcsResponse { private String requestId; private String code; private String message; private String 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 String getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; } @Override public ResumeCampaignResponse getInstance(UnmarshallerContext context) { return ResumeCampaignResponseUnmarshaller.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/RetrieveCallRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 RetrieveCallRequest extends RpcAcsRequest<RetrieveCallResponse> { private String userId; private String deviceId; private String jobId; private String instanceId; private String channelId; public RetrieveCallRequest() { super("CCC", "2020-07-01", "RetrieveCall", "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 getChannelId() { return this.channelId; } public void setChannelId(String channelId) { this.channelId = channelId; if(channelId != null){ putQueryParameter("ChannelId", channelId); } } @Override public Class<RetrieveCallResponse> getResponseClass() { return RetrieveCallResponse.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/RetrieveCallResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.RetrieveCallResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RetrieveCallResponse 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 RetrieveCallResponse getInstance(UnmarshallerContext context) { return RetrieveCallResponseUnmarshaller.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/SaveDocumentRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 SaveDocumentRequest extends RpcAcsRequest<SaveDocumentResponse> { private String instanceId; private String schemaId; private String requestId; private String documentJson; private String documentId; public SaveDocumentRequest() { super("CCC", "2020-07-01", "SaveDocument", "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); } } public String getDocumentJson() { return this.documentJson; } public void setDocumentJson(String documentJson) { this.documentJson = documentJson; if(documentJson != null){ putBodyParameter("DocumentJson", documentJson); } } public String getDocumentId() { return this.documentId; } public void setDocumentId(String documentId) { this.documentId = documentId; if(documentId != null){ putBodyParameter("DocumentId", documentId); } } @Override public Class<SaveDocumentResponse> getResponseClass() { return SaveDocumentResponse.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/SaveDocumentResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.SaveDocumentResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SaveDocumentResponse 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 SaveDocumentResponse getInstance(UnmarshallerContext context) { return SaveDocumentResponseUnmarshaller.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/SaveRTCStatsV2Request.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 SaveRTCStatsV2Request extends RpcAcsRequest<SaveRTCStatsV2Response> { private String callId; private String senderReport; private String instanceId; private String receiverReport; private String googAddress; private String generalInfo; public SaveRTCStatsV2Request() { super("CCC", "2020-07-01", "SaveRTCStatsV2", "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 getCallId() { return this.callId; } public void setCallId(String callId) { this.callId = callId; if(callId != null){ putQueryParameter("CallId", callId); } } public String getSenderReport() { return this.senderReport; } public void setSenderReport(String senderReport) { this.senderReport = senderReport; if(senderReport != null){ putQueryParameter("SenderReport", senderReport); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } public String getReceiverReport() { return this.receiverReport; } public void setReceiverReport(String receiverReport) { this.receiverReport = receiverReport; if(receiverReport != null){ putQueryParameter("ReceiverReport", receiverReport); } } public String getGoogAddress() { return this.googAddress; } public void setGoogAddress(String googAddress) { this.googAddress = googAddress; if(googAddress != null){ putQueryParameter("GoogAddress", googAddress); } } public String getGeneralInfo() { return this.generalInfo; } public void setGeneralInfo(String generalInfo) { this.generalInfo = generalInfo; if(generalInfo != null){ putQueryParameter("GeneralInfo", generalInfo); } } @Override public Class<SaveRTCStatsV2Response> getResponseClass() { return SaveRTCStatsV2Response.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/SaveRTCStatsV2Response.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.SaveRTCStatsV2ResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SaveRTCStatsV2Response extends AcsResponse { private Long httpStatusCode; private String requestId; private Boolean success; private String code; private String message; private Long timeStamp; private Long rowCount; public Long getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(Long httpStatusCode) { this.httpStatusCode = httpStatusCode; } 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 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 Long getTimeStamp() { return this.timeStamp; } public void setTimeStamp(Long timeStamp) { this.timeStamp = timeStamp; } public Long getRowCount() { return this.rowCount; } public void setRowCount(Long rowCount) { this.rowCount = rowCount; } @Override public SaveRTCStatsV2Response getInstance(UnmarshallerContext context) { return SaveRTCStatsV2ResponseUnmarshaller.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/SaveTerminalLogRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 SaveTerminalLogRequest extends RpcAcsRequest<SaveTerminalLogResponse> { private String callId; private String content; private String uniqueRequestId; private String jobId; private String instanceId; private String appName; private Integer dataType; private String status; private String methodName; public SaveTerminalLogRequest() { super("CCC", "2020-07-01", "SaveTerminalLog", "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 getCallId() { return this.callId; } public void setCallId(String callId) { this.callId = callId; if(callId != null){ putQueryParameter("CallId", callId); } } public String getContent() { return this.content; } public void setContent(String content) { this.content = content; if(content != null){ putQueryParameter("Content", content); } } public String getUniqueRequestId() { return this.uniqueRequestId; } public void setUniqueRequestId(String uniqueRequestId) { this.uniqueRequestId = uniqueRequestId; if(uniqueRequestId != null){ putQueryParameter("UniqueRequestId", uniqueRequestId); } } 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 getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; if(appName != null){ putQueryParameter("AppName", appName); } } public Integer getDataType() { return this.dataType; } public void setDataType(Integer dataType) { this.dataType = dataType; if(dataType != null){ putQueryParameter("DataType", dataType.toString()); } } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; if(status != null){ putQueryParameter("Status", status); } } public String getMethodName() { return this.methodName; } public void setMethodName(String methodName) { this.methodName = methodName; if(methodName != null){ putQueryParameter("MethodName", methodName); } } @Override public Class<SaveTerminalLogResponse> getResponseClass() { return SaveTerminalLogResponse.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/SaveTerminalLogResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.SaveTerminalLogResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SaveTerminalLogResponse extends AcsResponse { private Long httpStatusCode; private String requestId; private Boolean success; private String code; private String message; private Long timeStamp; public Long getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(Long httpStatusCode) { this.httpStatusCode = httpStatusCode; } 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 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 Long getTimeStamp() { return this.timeStamp; } public void setTimeStamp(Long timeStamp) { this.timeStamp = timeStamp; } @Override public SaveTerminalLogResponse getInstance(UnmarshallerContext context) { return SaveTerminalLogResponseUnmarshaller.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/SaveWebRTCStatsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 SaveWebRTCStatsRequest extends RpcAcsRequest<SaveWebRTCStatsResponse> { private String callId; private String senderReport; private String instanceId; private String receiverReport; private String googAddress; private String generalInfo; public SaveWebRTCStatsRequest() { super("CCC", "2020-07-01", "SaveWebRTCStats", "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 getCallId() { return this.callId; } public void setCallId(String callId) { this.callId = callId; if(callId != null){ putQueryParameter("CallId", callId); } } public String getSenderReport() { return this.senderReport; } public void setSenderReport(String senderReport) { this.senderReport = senderReport; if(senderReport != null){ putQueryParameter("SenderReport", senderReport); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } public String getReceiverReport() { return this.receiverReport; } public void setReceiverReport(String receiverReport) { this.receiverReport = receiverReport; if(receiverReport != null){ putQueryParameter("ReceiverReport", receiverReport); } } public String getGoogAddress() { return this.googAddress; } public void setGoogAddress(String googAddress) { this.googAddress = googAddress; if(googAddress != null){ putQueryParameter("GoogAddress", googAddress); } } public String getGeneralInfo() { return this.generalInfo; } public void setGeneralInfo(String generalInfo) { this.generalInfo = generalInfo; if(generalInfo != null){ putQueryParameter("GeneralInfo", generalInfo); } } @Override public Class<SaveWebRTCStatsResponse> getResponseClass() { return SaveWebRTCStatsResponse.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/SaveWebRTCStatsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.SaveWebRTCStatsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SaveWebRTCStatsResponse extends AcsResponse { private Long httpStatusCode; private String requestId; private Boolean success; private String code; private String message; private Long timeStamp; private Long rowCount; public Long getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(Long httpStatusCode) { this.httpStatusCode = httpStatusCode; } 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 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 Long getTimeStamp() { return this.timeStamp; } public void setTimeStamp(Long timeStamp) { this.timeStamp = timeStamp; } public Long getRowCount() { return this.rowCount; } public void setRowCount(Long rowCount) { this.rowCount = rowCount; } @Override public SaveWebRTCStatsResponse getInstance(UnmarshallerContext context) { return SaveWebRTCStatsResponseUnmarshaller.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/SaveWebRtcInfoRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 SaveWebRtcInfoRequest extends RpcAcsRequest<SaveWebRtcInfoResponse> { private String callId; private String content; private String contentType; private String jobId; private String instanceId; public SaveWebRtcInfoRequest() { super("CCC", "2020-07-01", "SaveWebRtcInfo", "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 getCallId() { return this.callId; } public void setCallId(String callId) { this.callId = callId; if(callId != null){ putQueryParameter("CallId", callId); } } public String getContent() { return this.content; } public void setContent(String content) { this.content = content; if(content != null){ putQueryParameter("Content", content); } } public String getContentType() { return this.contentType; } public void setContentType(String contentType) { this.contentType = contentType; if(contentType != null){ putQueryParameter("ContentType", contentType); } } 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<SaveWebRtcInfoResponse> getResponseClass() { return SaveWebRtcInfoResponse.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/SaveWebRtcInfoResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.SaveWebRtcInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SaveWebRtcInfoResponse extends AcsResponse { private Long httpStatusCode; private String requestId; private Boolean success; private String code; private String message; private Long timeStamp; private Long rowCount; public Long getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(Long httpStatusCode) { this.httpStatusCode = httpStatusCode; } 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 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 Long getTimeStamp() { return this.timeStamp; } public void setTimeStamp(Long timeStamp) { this.timeStamp = timeStamp; } public Long getRowCount() { return this.rowCount; } public void setRowCount(Long rowCount) { this.rowCount = rowCount; } @Override public SaveWebRtcInfoResponse getInstance(UnmarshallerContext context) { return SaveWebRtcInfoResponseUnmarshaller.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/SendDtmfSignalingRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 SendDtmfSignalingRequest extends RpcAcsRequest<SendDtmfSignalingResponse> { private String dtmf; private String userId; private String deviceId; private String jobId; private String instanceId; private String channelId; public SendDtmfSignalingRequest() { super("CCC", "2020-07-01", "SendDtmfSignaling", "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 getDtmf() { return this.dtmf; } public void setDtmf(String dtmf) { this.dtmf = dtmf; if(dtmf != null){ putQueryParameter("Dtmf", dtmf); } } 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 getChannelId() { return this.channelId; } public void setChannelId(String channelId) { this.channelId = channelId; if(channelId != null){ putQueryParameter("ChannelId", channelId); } } @Override public Class<SendDtmfSignalingResponse> getResponseClass() { return SendDtmfSignalingResponse.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/SendDtmfSignalingResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.SendDtmfSignalingResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SendDtmfSignalingResponse 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 SendDtmfSignalingResponse getInstance(UnmarshallerContext context) { return SendDtmfSignalingResponseUnmarshaller.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/SignInGroupRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 SignInGroupRequest extends RpcAcsRequest<SignInGroupResponse> { private String signedSkillGroupIdList; private String chatDeviceId; private String userId; private String deviceId; private Boolean additivity; private String instanceId; public SignInGroupRequest() { super("CCC", "2020-07-01", "SignInGroup", "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 getSignedSkillGroupIdList() { return this.signedSkillGroupIdList; } public void setSignedSkillGroupIdList(String signedSkillGroupIdList) { this.signedSkillGroupIdList = signedSkillGroupIdList; if(signedSkillGroupIdList != null){ putQueryParameter("SignedSkillGroupIdList", signedSkillGroupIdList); } } public String getChatDeviceId() { return this.chatDeviceId; } public void setChatDeviceId(String chatDeviceId) { this.chatDeviceId = chatDeviceId; if(chatDeviceId != null){ putQueryParameter("ChatDeviceId", chatDeviceId); } } 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 Boolean getAdditivity() { return this.additivity; } public void setAdditivity(Boolean additivity) { this.additivity = additivity; if(additivity != null){ putQueryParameter("Additivity", additivity.toString()); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } @Override public Class<SignInGroupResponse> getResponseClass() { return SignInGroupResponse.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/SignInGroupResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.SignInGroupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SignInGroupResponse 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 extension; private String workMode; private String deviceId; private String jobId; private String userId; private String breakCode; private String instanceId; private Boolean outboundScenario; private String userState; private String chatDeviceId; private List<String> signedSkillGroupIdList; public String getExtension() { return this.extension; } public void setExtension(String extension) { this.extension = extension; } 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 getJobId() { return this.jobId; } public void setJobId(String jobId) { this.jobId = jobId; } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; } 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 getUserState() { return this.userState; } public void setUserState(String userState) { this.userState = userState; } public String getChatDeviceId() { return this.chatDeviceId; } public void setChatDeviceId(String chatDeviceId) { this.chatDeviceId = chatDeviceId; } public List<String> getSignedSkillGroupIdList() { return this.signedSkillGroupIdList; } public void setSignedSkillGroupIdList(List<String> signedSkillGroupIdList) { this.signedSkillGroupIdList = signedSkillGroupIdList; } } @Override public SignInGroupResponse getInstance(UnmarshallerContext context) { return SignInGroupResponseUnmarshaller.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/SignOutGroupRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 SignOutGroupRequest extends RpcAcsRequest<SignOutGroupResponse> { private String userId; private String deviceId; private String instanceId; public SignOutGroupRequest() { super("CCC", "2020-07-01", "SignOutGroup", "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 getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } @Override public Class<SignOutGroupResponse> getResponseClass() { return SignOutGroupResponse.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/SignOutGroupResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.SignOutGroupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SignOutGroupResponse 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 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 SignOutGroupResponse getInstance(UnmarshallerContext context) { return SignOutGroupResponseUnmarshaller.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/StartBack2BackCallRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 StartBack2BackCallRequest extends RpcAcsRequest<StartBack2BackCallResponse> { private String callee; private String broker; private String additionalBroker; private String tags; private Integer timeoutSeconds; private String caller; private String instanceId; public StartBack2BackCallRequest() { super("CCC", "2020-07-01", "StartBack2BackCall", "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 getCallee() { return this.callee; } public void setCallee(String callee) { this.callee = callee; if(callee != null){ putQueryParameter("Callee", callee); } } public String getBroker() { return this.broker; } public void setBroker(String broker) { this.broker = broker; if(broker != null){ putQueryParameter("Broker", broker); } } public String getAdditionalBroker() { return this.additionalBroker; } public void setAdditionalBroker(String additionalBroker) { this.additionalBroker = additionalBroker; if(additionalBroker != null){ putQueryParameter("AdditionalBroker", additionalBroker); } } public String getTags() { return this.tags; } public void setTags(String tags) { this.tags = tags; if(tags != null){ putQueryParameter("Tags", tags); } } public Integer getTimeoutSeconds() { return this.timeoutSeconds; } public void setTimeoutSeconds(Integer timeoutSeconds) { this.timeoutSeconds = timeoutSeconds; if(timeoutSeconds != null){ putQueryParameter("TimeoutSeconds", timeoutSeconds.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); } } @Override public Class<StartBack2BackCallResponse> getResponseClass() { return StartBack2BackCallResponse.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/StartBack2BackCallResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.StartBack2BackCallResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class StartBack2BackCallResponse 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 channelFlags; 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 getChannelFlags() { return this.channelFlags; } public void setChannelFlags(String channelFlags) { this.channelFlags = channelFlags; } 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 deviceState; 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 getDeviceState() { return this.deviceState; } public void setDeviceState(String deviceState) { this.deviceState = deviceState; } 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 StartBack2BackCallResponse getInstance(UnmarshallerContext context) { return StartBack2BackCallResponseUnmarshaller.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/StartChatRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 StartChatRequest extends RpcAcsRequest<StartChatResponse> { @SerializedName("userList") private List<UserList> userList; private String token; private String instanceId; private String accessChannelId; public StartChatRequest() { super("CCC", "2020-07-01", "StartChat", "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 List<UserList> getUserList() { return this.userList; } public void setUserList(List<UserList> userList) { this.userList = userList; if (userList != null) { putQueryParameter("UserList" , new Gson().toJson(userList)); } } 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 getAccessChannelId() { return this.accessChannelId; } public void setAccessChannelId(String accessChannelId) { this.accessChannelId = accessChannelId; if(accessChannelId != null){ putQueryParameter("AccessChannelId", accessChannelId); } } public static class UserList { @SerializedName("AvatarUrl") private String avatarUrl; @SerializedName("Nickname") private String nickname; @SerializedName("UserType") private String userType; @SerializedName("UserId") private String userId; public String getAvatarUrl() { return this.avatarUrl; } public void setAvatarUrl(String avatarUrl) { this.avatarUrl = avatarUrl; } public String getNickname() { return this.nickname; } public void setNickname(String nickname) { this.nickname = nickname; } public String getUserType() { return this.userType; } public void setUserType(String userType) { this.userType = userType; } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; } } @Override public Class<StartChatResponse> getResponseClass() { return StartChatResponse.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/StartChatResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.StartChatResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class StartChatResponse 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 chatConversationId; private String jobId; public String getChatConversationId() { return this.chatConversationId; } public void setChatConversationId(String chatConversationId) { this.chatConversationId = chatConversationId; } public String getJobId() { return this.jobId; } public void setJobId(String jobId) { this.jobId = jobId; } } @Override public StartChatResponse getInstance(UnmarshallerContext context) { return StartChatResponseUnmarshaller.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/StartConferenceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 StartConferenceRequest extends RpcAcsRequest<StartConferenceResponse> { private String userId; private String tags; private Integer timeoutSeconds; private String instanceId; private String participantListJson; public StartConferenceRequest() { super("CCC", "2020-07-01", "StartConference", "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 getTags() { return this.tags; } public void setTags(String tags) { this.tags = tags; if(tags != null){ putQueryParameter("Tags", tags); } } 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); } } public String getParticipantListJson() { return this.participantListJson; } public void setParticipantListJson(String participantListJson) { this.participantListJson = participantListJson; if(participantListJson != null){ putQueryParameter("ParticipantListJson", participantListJson); } } @Override public Class<StartConferenceResponse> getResponseClass() { return StartConferenceResponse.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/StartConferenceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.StartConferenceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class StartConferenceResponse 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 channelFlags; 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 getChannelFlags() { return this.channelFlags; } public void setChannelFlags(String channelFlags) { this.channelFlags = channelFlags; } 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 deviceState; 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 getDeviceState() { return this.deviceState; } public void setDeviceState(String deviceState) { this.deviceState = deviceState; } 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 StartConferenceResponse getInstance(UnmarshallerContext context) { return StartConferenceResponseUnmarshaller.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/StartEditContactFlowRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 StartEditContactFlowRequest extends RpcAcsRequest<StartEditContactFlowResponse> { private String contactFlowId; private String instanceId; public StartEditContactFlowRequest() { super("CCC", "2020-07-01", "StartEditContactFlow", "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 getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } @Override public Class<StartEditContactFlowResponse> getResponseClass() { return StartEditContactFlowResponse.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/StartEditContactFlowResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.StartEditContactFlowResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class StartEditContactFlowResponse extends AcsResponse { private Integer httpStatusCode; private String code; private String message; private String data; private String 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 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; } @Override public StartEditContactFlowResponse getInstance(UnmarshallerContext context) { return StartEditContactFlowResponseUnmarshaller.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/StartPredictiveCallRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 StartPredictiveCallRequest extends RpcAcsRequest<StartPredictiveCallResponse> { private String contactFlowId; private String callee; private String maskedCallee; private String contactFlowVariables; private String tags; private Integer timeoutSeconds; private String caller; private String instanceId; private String skillGroupId; public StartPredictiveCallRequest() { super("CCC", "2020-07-01", "StartPredictiveCall", "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 getCallee() { return this.callee; } public void setCallee(String callee) { this.callee = callee; if(callee != null){ putQueryParameter("Callee", callee); } } public String getMaskedCallee() { return this.maskedCallee; } public void setMaskedCallee(String maskedCallee) { this.maskedCallee = maskedCallee; if(maskedCallee != null){ putQueryParameter("MaskedCallee", maskedCallee); } } public String getContactFlowVariables() { return this.contactFlowVariables; } public void setContactFlowVariables(String contactFlowVariables) { this.contactFlowVariables = contactFlowVariables; if(contactFlowVariables != null){ putQueryParameter("ContactFlowVariables", contactFlowVariables); } } public String getTags() { return this.tags; } public void setTags(String tags) { this.tags = tags; if(tags != null){ putQueryParameter("Tags", tags); } } public Integer getTimeoutSeconds() { return this.timeoutSeconds; } public void setTimeoutSeconds(Integer timeoutSeconds) { this.timeoutSeconds = timeoutSeconds; if(timeoutSeconds != null){ putQueryParameter("TimeoutSeconds", timeoutSeconds.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 getSkillGroupId() { return this.skillGroupId; } public void setSkillGroupId(String skillGroupId) { this.skillGroupId = skillGroupId; if(skillGroupId != null){ putQueryParameter("SkillGroupId", skillGroupId); } } @Override public Class<StartPredictiveCallResponse> getResponseClass() { return StartPredictiveCallResponse.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/StartPredictiveCallResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.StartPredictiveCallResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class StartPredictiveCallResponse 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 channelFlags; 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 getChannelFlags() { return this.channelFlags; } public void setChannelFlags(String channelFlags) { this.channelFlags = channelFlags; } 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 deviceState; 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 getDeviceState() { return this.deviceState; } public void setDeviceState(String deviceState) { this.deviceState = deviceState; } 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 StartPredictiveCallResponse getInstance(UnmarshallerContext context) { return StartPredictiveCallResponseUnmarshaller.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/StartPrivacyCallRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 StartPrivacyCallRequest extends RpcAcsRequest<StartPrivacyCallResponse> { private String callee; private String caller; private String instanceId; private String appId; public StartPrivacyCallRequest() { super("CCC", "2020-07-01", "StartPrivacyCall", "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 getCallee() { return this.callee; } public void setCallee(String callee) { this.callee = callee; if(callee != null){ putQueryParameter("Callee", callee); } } 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 getAppId() { return this.appId; } public void setAppId(String appId) { this.appId = appId; if(appId != null){ putQueryParameter("AppId", appId); } } @Override public Class<StartPrivacyCallResponse> getResponseClass() { return StartPrivacyCallResponse.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/StartPrivacyCallResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.StartPrivacyCallResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class StartPrivacyCallResponse extends AcsResponse { private String code; private Integer httpStatusCode; private String message; private String requestId; private String 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 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 StartPrivacyCallResponse getInstance(UnmarshallerContext context) { return StartPrivacyCallResponseUnmarshaller.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/SubmitCampaignRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 SubmitCampaignRequest extends RpcAcsRequest<SubmitCampaignResponse> { private String instanceId; private String campaignId; public SubmitCampaignRequest() { super("CCC", "2020-07-01", "SubmitCampaign", "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); } } @Override public Class<SubmitCampaignResponse> getResponseClass() { return SubmitCampaignResponse.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/SubmitCampaignResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.SubmitCampaignResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SubmitCampaignResponse extends AcsResponse { private String requestId; private String code; private String message; private String 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 String getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; } @Override public SubmitCampaignResponse getInstance(UnmarshallerContext context) { return SubmitCampaignResponseUnmarshaller.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/SwitchToConferenceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 SwitchToConferenceRequest extends RpcAcsRequest<SwitchToConferenceResponse> { private String userId; private String deviceId; private String jobId; private String instanceId; public SwitchToConferenceRequest() { super("CCC", "2020-07-01", "SwitchToConference", "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); } } @Override public Class<SwitchToConferenceResponse> getResponseClass() { return SwitchToConferenceResponse.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/SwitchToConferenceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.SwitchToConferenceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SwitchToConferenceResponse 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 skillGroupId; private String userId; private String channelFlags; private Long timestamp; private String releaseReason; private String callType; private String jobId; private String channelId; private String originator; private String userExtension; 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 getSkillGroupId() { return this.skillGroupId; } public void setSkillGroupId(String skillGroupId) { this.skillGroupId = skillGroupId; } 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 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 Long heartbeat; private String extension; private String workMode; private String deviceId; private String userId; private String breakCode; private String instanceId; private Boolean outboundScenario; private String deviceState; private String mobile; private String jobId; private String userState; private List<String> signedSkillGroupIdList; public Long getHeartbeat() { return this.heartbeat; } public void setHeartbeat(Long heartbeat) { this.heartbeat = heartbeat; } public String getExtension() { return this.extension; } public void setExtension(String extension) { this.extension = extension; } 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 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 getDeviceState() { return this.deviceState; } public void setDeviceState(String deviceState) { this.deviceState = deviceState; } 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 SwitchToConferenceResponse getInstance(UnmarshallerContext context) { return SwitchToConferenceResponseUnmarshaller.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/TakeBreakRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 TakeBreakRequest extends RpcAcsRequest<TakeBreakResponse> { private String code; private String userId; private String deviceId; private String instanceId; public TakeBreakRequest() { super("CCC", "2020-07-01", "TakeBreak", "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 getCode() { return this.code; } public void setCode(String code) { this.code = code; if(code != null){ putQueryParameter("Code", code); } } 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 getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } @Override public Class<TakeBreakResponse> getResponseClass() { return TakeBreakResponse.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/TakeBreakResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.TakeBreakResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class TakeBreakResponse 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 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 TakeBreakResponse getInstance(UnmarshallerContext context) { return TakeBreakResponseUnmarshaller.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/TerminateTicketRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 TerminateTicketRequest extends RpcAcsRequest<TerminateTicketResponse> { private String instanceId; private String comment; private String ticketId; public TerminateTicketRequest() { super("CCC", "2020-07-01", "TerminateTicket", "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 getComment() { return this.comment; } public void setComment(String comment) { this.comment = comment; if(comment != null){ putQueryParameter("Comment", comment); } } public String getTicketId() { return this.ticketId; } public void setTicketId(String ticketId) { this.ticketId = ticketId; if(ticketId != null){ putQueryParameter("TicketId", ticketId); } } @Override public Class<TerminateTicketResponse> getResponseClass() { return TerminateTicketResponse.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/TerminateTicketResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.TerminateTicketResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class TerminateTicketResponse extends AcsResponse { @Override public TerminateTicketResponse getInstance(UnmarshallerContext context) { return TerminateTicketResponseUnmarshaller.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/TransferTicketTaskRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 TransferTicketTaskRequest extends RpcAcsRequest<TransferTicketTaskResponse> { private String instanceId; private String comment; private String assignee; private String ticketId; private String taskId; public TransferTicketTaskRequest() { super("CCC", "2020-07-01", "TransferTicketTask", "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 getComment() { return this.comment; } public void setComment(String comment) { this.comment = comment; if(comment != null){ putQueryParameter("Comment", comment); } } public String getAssignee() { return this.assignee; } public void setAssignee(String assignee) { this.assignee = assignee; if(assignee != null){ putQueryParameter("Assignee", assignee); } } public String getTicketId() { return this.ticketId; } public void setTicketId(String ticketId) { this.ticketId = ticketId; if(ticketId != null){ putQueryParameter("TicketId", ticketId); } } public String getTaskId() { return this.taskId; } public void setTaskId(String taskId) { this.taskId = taskId; if(taskId != null){ putQueryParameter("TaskId", taskId); } } @Override public Class<TransferTicketTaskResponse> getResponseClass() { return TransferTicketTaskResponse.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/TransferTicketTaskResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.TransferTicketTaskResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class TransferTicketTaskResponse extends AcsResponse { @Override public TransferTicketTaskResponse getInstance(UnmarshallerContext context) { return TransferTicketTaskResponseUnmarshaller.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/UnmuteCallRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 UnmuteCallRequest extends RpcAcsRequest<UnmuteCallResponse> { private String userId; private String deviceId; private String jobId; private String instanceId; private String channelId; public UnmuteCallRequest() { super("CCC", "2020-07-01", "UnmuteCall", "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 getChannelId() { return this.channelId; } public void setChannelId(String channelId) { this.channelId = channelId; if(channelId != null){ putQueryParameter("ChannelId", channelId); } } @Override public Class<UnmuteCallResponse> getResponseClass() { return UnmuteCallResponse.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/UnmuteCallResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.UnmuteCallResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UnmuteCallResponse 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 Long heartbeat; private String extension; private String workMode; private String mobile; private String deviceId; private String jobId; private String userId; private String breakCode; private String instanceId; private Boolean outboundScenario; private String userState; private List<String> signedSkillGroupIdList; public Long getHeartbeat() { return this.heartbeat; } public void setHeartbeat(Long heartbeat) { this.heartbeat = heartbeat; } public String getExtension() { return this.extension; } public void setExtension(String extension) { this.extension = extension; } 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 getDeviceId() { return this.deviceId; } public void setDeviceId(String deviceId) { this.deviceId = deviceId; } public String getJobId() { return this.jobId; } public void setJobId(String jobId) { this.jobId = jobId; } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; } 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 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 UnmuteCallResponse getInstance(UnmarshallerContext context) { return UnmuteCallResponseUnmarshaller.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/UnregisterDeviceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 UnregisterDeviceRequest extends RpcAcsRequest<UnregisterDeviceResponse> { private String userId; private String instanceId; public UnregisterDeviceRequest() { super("CCC", "2020-07-01", "UnregisterDevice", "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<UnregisterDeviceResponse> getResponseClass() { return UnregisterDeviceResponse.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/UnregisterDeviceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.UnregisterDeviceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UnregisterDeviceResponse 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 UnregisterDeviceResponse getInstance(UnmarshallerContext context) { return UnregisterDeviceResponseUnmarshaller.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/UpdateCampaignRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 UpdateCampaignRequest extends RpcAcsRequest<UpdateCampaignResponse> { private String contactFlowId; private String instanceId; private String campaignId; private String name; private String endTime; private String startTime; private String strategyParameters; private String callableTime; public UpdateCampaignRequest() { super("CCC", "2020-07-01", "UpdateCampaign", "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 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 getName() { return this.name; } public void setName(String name) { this.name = name; if(name != null){ putQueryParameter("Name", name); } } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; if(endTime != null){ putQueryParameter("EndTime", endTime); } } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; if(startTime != null){ putQueryParameter("StartTime", startTime); } } public String getStrategyParameters() { return this.strategyParameters; } public void setStrategyParameters(String strategyParameters) { this.strategyParameters = strategyParameters; if(strategyParameters != null){ putQueryParameter("StrategyParameters", strategyParameters); } } public String getCallableTime() { return this.callableTime; } public void setCallableTime(String callableTime) { this.callableTime = callableTime; if(callableTime != null){ putQueryParameter("CallableTime", callableTime); } } @Override public Class<UpdateCampaignResponse> getResponseClass() { return UpdateCampaignResponse.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/UpdateCampaignResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.UpdateCampaignResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdateCampaignResponse extends AcsResponse { private String requestId; private String code; private String message; private Long 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 Long getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(Long httpStatusCode) { this.httpStatusCode = httpStatusCode; } @Override public UpdateCampaignResponse getInstance(UnmarshallerContext context) { return UpdateCampaignResponseUnmarshaller.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/UpdateConfigItemsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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 UpdateConfigItemsRequest extends RpcAcsRequest<UpdateConfigItemsResponse> { private String configItems; private String instanceId; private String objectType; private String objectId; public UpdateConfigItemsRequest() { super("CCC", "2020-07-01", "UpdateConfigItems", "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 getConfigItems() { return this.configItems; } public void setConfigItems(String configItems) { this.configItems = configItems; if(configItems != null){ putQueryParameter("ConfigItems", configItems); } } 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<UpdateConfigItemsResponse> getResponseClass() { return UpdateConfigItemsResponse.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/UpdateConfigItemsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS 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.UpdateConfigItemsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdateConfigItemsResponse 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 UpdateConfigItemsResponse getInstance(UnmarshallerContext context) { return UpdateConfigItemsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }