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/CreateCampaignRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 CreateCampaignRequest extends RpcAcsRequest<CreateCampaignResponse> {
private String queueId;
private String contactFlowId;
private Boolean simulation;
private Boolean executingUntilTimeout;
private String endTime;
private String startTime;
private Long maxAttemptCount;
private String strategyParameters;
private String caseFileKey;
private Long minAttemptInterval;
private String instanceId;
private String simulationParameters;
private String name;
private String strategyType;
private String caseList;
private String callableTime;
public CreateCampaignRequest() {
super("CCC", "2020-07-01", "CreateCampaign", "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 getQueueId() {
return this.queueId;
}
public void setQueueId(String queueId) {
this.queueId = queueId;
if(queueId != null){
putQueryParameter("QueueId", queueId);
}
}
public String getContactFlowId() {
return this.contactFlowId;
}
public void setContactFlowId(String contactFlowId) {
this.contactFlowId = contactFlowId;
if(contactFlowId != null){
putQueryParameter("ContactFlowId", contactFlowId);
}
}
public Boolean getSimulation() {
return this.simulation;
}
public void setSimulation(Boolean simulation) {
this.simulation = simulation;
if(simulation != null){
putQueryParameter("Simulation", simulation.toString());
}
}
public Boolean getExecutingUntilTimeout() {
return this.executingUntilTimeout;
}
public void setExecutingUntilTimeout(Boolean executingUntilTimeout) {
this.executingUntilTimeout = executingUntilTimeout;
if(executingUntilTimeout != null){
putQueryParameter("ExecutingUntilTimeout", executingUntilTimeout.toString());
}
}
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 Long getMaxAttemptCount() {
return this.maxAttemptCount;
}
public void setMaxAttemptCount(Long maxAttemptCount) {
this.maxAttemptCount = maxAttemptCount;
if(maxAttemptCount != null){
putQueryParameter("MaxAttemptCount", maxAttemptCount.toString());
}
}
public String getStrategyParameters() {
return this.strategyParameters;
}
public void setStrategyParameters(String strategyParameters) {
this.strategyParameters = strategyParameters;
if(strategyParameters != null){
putQueryParameter("StrategyParameters", strategyParameters);
}
}
public String getCaseFileKey() {
return this.caseFileKey;
}
public void setCaseFileKey(String caseFileKey) {
this.caseFileKey = caseFileKey;
if(caseFileKey != null){
putQueryParameter("CaseFileKey", caseFileKey);
}
}
public Long getMinAttemptInterval() {
return this.minAttemptInterval;
}
public void setMinAttemptInterval(Long minAttemptInterval) {
this.minAttemptInterval = minAttemptInterval;
if(minAttemptInterval != null){
putQueryParameter("MinAttemptInterval", minAttemptInterval.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getSimulationParameters() {
return this.simulationParameters;
}
public void setSimulationParameters(String simulationParameters) {
this.simulationParameters = simulationParameters;
if(simulationParameters != null){
putQueryParameter("SimulationParameters", simulationParameters);
}
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
if(name != null){
putQueryParameter("Name", name);
}
}
public String getStrategyType() {
return this.strategyType;
}
public void setStrategyType(String strategyType) {
this.strategyType = strategyType;
if(strategyType != null){
putQueryParameter("StrategyType", strategyType);
}
}
public String getCaseList() {
return this.caseList;
}
public void setCaseList(String caseList) {
this.caseList = caseList;
if(caseList != null){
putQueryParameter("CaseList", caseList);
}
}
public String getCallableTime() {
return this.callableTime;
}
public void setCallableTime(String callableTime) {
this.callableTime = callableTime;
if(callableTime != null){
putQueryParameter("CallableTime", callableTime);
}
}
@Override
public Class<CreateCampaignResponse> getResponseClass() {
return CreateCampaignResponse.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/CreateCampaignResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.CreateCampaignResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateCampaignResponse extends AcsResponse {
private String requestId;
private String data;
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 getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public 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 CreateCampaignResponse getInstance(UnmarshallerContext context) {
return CreateCampaignResponseUnmarshaller.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/CreateContactFlowRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 CreateContactFlowRequest extends RpcAcsRequest<CreateContactFlowResponse> {
private String description;
private String type;
private String instanceId;
private String name;
private String definition;
public CreateContactFlowRequest() {
super("CCC", "2020-07-01", "CreateContactFlow", "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 getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
if(description != null){
putQueryParameter("Description", description);
}
}
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
if(type != null){
putQueryParameter("Type", type);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
if(name != null){
putQueryParameter("Name", name);
}
}
public String getDefinition() {
return this.definition;
}
public void setDefinition(String definition) {
this.definition = definition;
if(definition != null){
putQueryParameter("Definition", definition);
}
}
@Override
public Class<CreateContactFlowResponse> getResponseClass() {
return CreateContactFlowResponse.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/CreateContactFlowResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.CreateContactFlowResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateContactFlowResponse 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 CreateContactFlowResponse getInstance(UnmarshallerContext context) {
return CreateContactFlowResponseUnmarshaller.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/CreateCustomCallTaggingRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 CreateCustomCallTaggingRequest extends RpcAcsRequest<CreateCustomCallTaggingResponse> {
private String instanceId;
private String customNumberList;
public CreateCustomCallTaggingRequest() {
super("CCC", "2020-07-01", "CreateCustomCallTagging", "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 getCustomNumberList() {
return this.customNumberList;
}
public void setCustomNumberList(String customNumberList) {
this.customNumberList = customNumberList;
if(customNumberList != null){
putQueryParameter("CustomNumberList", customNumberList);
}
}
@Override
public Class<CreateCustomCallTaggingResponse> getResponseClass() {
return CreateCustomCallTaggingResponse.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/CreateCustomCallTaggingResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.CreateCustomCallTaggingResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateCustomCallTaggingResponse extends AcsResponse {
private String requestId;
private Integer httpStatusCode;
private String code;
private String message;
private List<FailureItem> data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public List<FailureItem> getData() {
return this.data;
}
public void setData(List<FailureItem> data) {
this.data = data;
}
public static class FailureItem {
private String item;
private String reason;
public String getItem() {
return this.item;
}
public void setItem(String item) {
this.item = item;
}
public String getReason() {
return this.reason;
}
public void setReason(String reason) {
this.reason = reason;
}
}
@Override
public CreateCustomCallTaggingResponse getInstance(UnmarshallerContext context) {
return CreateCustomCallTaggingResponseUnmarshaller.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/CreateInstanceRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 CreateInstanceRequest extends RpcAcsRequest<CreateInstanceResponse> {
private String adminRamIdList;
private String domainName;
private String description;
private String numberList;
private String name;
public CreateInstanceRequest() {
super("CCC", "2020-07-01", "CreateInstance", "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 getAdminRamIdList() {
return this.adminRamIdList;
}
public void setAdminRamIdList(String adminRamIdList) {
this.adminRamIdList = adminRamIdList;
if(adminRamIdList != null){
putQueryParameter("AdminRamIdList", adminRamIdList);
}
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
if(domainName != null){
putQueryParameter("DomainName", domainName);
}
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
if(description != null){
putQueryParameter("Description", description);
}
}
public String getNumberList() {
return this.numberList;
}
public void setNumberList(String numberList) {
this.numberList = numberList;
if(numberList != null){
putQueryParameter("NumberList", numberList);
}
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
if(name != null){
putQueryParameter("Name", name);
}
}
@Override
public Class<CreateInstanceResponse> getResponseClass() {
return CreateInstanceResponse.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/CreateInstanceResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.CreateInstanceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateInstanceResponse 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 CreateInstanceResponse getInstance(UnmarshallerContext context) {
return CreateInstanceResponseUnmarshaller.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/CreateSchemaRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 CreateSchemaRequest extends RpcAcsRequest<CreateSchemaResponse> {
private String description;
private String instanceId;
private String requestId;
private String id;
@SerializedName("properties")
private List<Properties> properties;
public CreateSchemaRequest() {
super("CCC", "2020-07-01", "CreateSchema", "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 getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
if(description != null){
putBodyParameter("Description", description);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
if(requestId != null){
putBodyParameter("RequestId", requestId);
}
}
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
if(id != null){
putBodyParameter("Id", id);
}
}
public List<Properties> getProperties() {
return this.properties;
}
public void setProperties(List<Properties> properties) {
this.properties = properties;
if (properties != null) {
putBodyParameter("Properties" , new Gson().toJson(properties));
}
}
public static class Properties {
@SerializedName("MinLength")
private Integer minLength;
@SerializedName("MaxLength")
private Integer maxLength;
@SerializedName("Pattern")
private String pattern;
@SerializedName("Description")
private String description;
@SerializedName("DisplayOrder")
private Integer displayOrder;
@SerializedName("PatternErrorMessage")
private String patternErrorMessage;
@SerializedName("EditorType")
private String editorType;
@SerializedName("Required")
private Boolean required;
@SerializedName("ReadOnly")
private Boolean readOnly;
@SerializedName("DataType")
private String dataType;
@SerializedName("Array")
private Boolean array;
@SerializedName("DisplayName")
private String displayName;
@SerializedName("Name")
private String name;
@SerializedName("Maximum")
private Double maximum;
@SerializedName("Disabled")
private Boolean disabled;
@SerializedName("Attributes")
private String attributes;
@SerializedName("Minimum")
private Double minimum;
public Integer getMinLength() {
return this.minLength;
}
public void setMinLength(Integer minLength) {
this.minLength = minLength;
}
public Integer getMaxLength() {
return this.maxLength;
}
public void setMaxLength(Integer maxLength) {
this.maxLength = maxLength;
}
public String getPattern() {
return this.pattern;
}
public void setPattern(String pattern) {
this.pattern = pattern;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public Integer getDisplayOrder() {
return this.displayOrder;
}
public void setDisplayOrder(Integer displayOrder) {
this.displayOrder = displayOrder;
}
public String getPatternErrorMessage() {
return this.patternErrorMessage;
}
public void setPatternErrorMessage(String patternErrorMessage) {
this.patternErrorMessage = patternErrorMessage;
}
public String getEditorType() {
return this.editorType;
}
public void setEditorType(String editorType) {
this.editorType = editorType;
}
public Boolean getRequired() {
return this.required;
}
public void setRequired(Boolean required) {
this.required = required;
}
public Boolean getReadOnly() {
return this.readOnly;
}
public void setReadOnly(Boolean readOnly) {
this.readOnly = readOnly;
}
public String getDataType() {
return this.dataType;
}
public void setDataType(String dataType) {
this.dataType = dataType;
}
public Boolean getArray() {
return this.array;
}
public void setArray(Boolean array) {
this.array = array;
}
public String getDisplayName() {
return this.displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public Double getMaximum() {
return this.maximum;
}
public void setMaximum(Double maximum) {
this.maximum = maximum;
}
public Boolean getDisabled() {
return this.disabled;
}
public void setDisabled(Boolean disabled) {
this.disabled = disabled;
}
public String getAttributes() {
return this.attributes;
}
public void setAttributes(String attributes) {
this.attributes = attributes;
}
public Double getMinimum() {
return this.minimum;
}
public void setMinimum(Double minimum) {
this.minimum = minimum;
}
}
@Override
public Class<CreateSchemaResponse> getResponseClass() {
return CreateSchemaResponse.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/CreateSchemaResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.CreateSchemaResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateSchemaResponse 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 CreateSchemaResponse getInstance(UnmarshallerContext context) {
return CreateSchemaResponseUnmarshaller.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/CreateSkillGroupRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class CreateSkillGroupRequest extends RpcAcsRequest<CreateSkillGroupResponse> {
private String description;
private String instanceId;
private String displayName;
private String name;
private String mediaType;
public CreateSkillGroupRequest() {
super("CCC", "2020-07-01", "CreateSkillGroup", "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 getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
if(description != null){
putQueryParameter("Description", description);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getDisplayName() {
return this.displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
if(displayName != null){
putQueryParameter("DisplayName", displayName);
}
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
if(name != null){
putQueryParameter("Name", name);
}
}
public String getMediaType() {
return this.mediaType;
}
public void setMediaType(String mediaType) {
this.mediaType = mediaType;
if(mediaType != null){
putQueryParameter("MediaType", mediaType);
}
}
@Override
public Class<CreateSkillGroupResponse> getResponseClass() {
return CreateSkillGroupResponse.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/CreateSkillGroupResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.ccc.model.v20200701;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.CreateSkillGroupResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateSkillGroupResponse 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 instanceId;
private String description;
private String name;
private String skillGroupId;
private String mediaType;
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getSkillGroupId() {
return this.skillGroupId;
}
public void setSkillGroupId(String skillGroupId) {
this.skillGroupId = skillGroupId;
}
public String getMediaType() {
return this.mediaType;
}
public void setMediaType(String mediaType) {
this.mediaType = mediaType;
}
}
@Override
public CreateSkillGroupResponse getInstance(UnmarshallerContext context) {
return CreateSkillGroupResponseUnmarshaller.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/CreateTicketRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 CreateTicketRequest extends RpcAcsRequest<CreateTicketResponse> {
private String contactId;
private String source;
private String templateId;
private String title;
private String instanceId;
private String customerId;
private String context;
public CreateTicketRequest() {
super("CCC", "2020-07-01", "CreateTicket", "CCC");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getContactId() {
return this.contactId;
}
public void setContactId(String contactId) {
this.contactId = contactId;
if(contactId != null){
putQueryParameter("ContactId", contactId);
}
}
public String getSource() {
return this.source;
}
public void setSource(String source) {
this.source = source;
if(source != null){
putQueryParameter("Source", source);
}
}
public String getTemplateId() {
return this.templateId;
}
public void setTemplateId(String templateId) {
this.templateId = templateId;
if(templateId != null){
putQueryParameter("TemplateId", templateId);
}
}
public String getTitle() {
return this.title;
}
public void setTitle(String title) {
this.title = title;
if(title != null){
putQueryParameter("Title", title);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getCustomerId() {
return this.customerId;
}
public void setCustomerId(String customerId) {
this.customerId = customerId;
if(customerId != null){
putQueryParameter("CustomerId", customerId);
}
}
public String getContext() {
return this.context;
}
public void setContext(String context) {
this.context = context;
if(context != null){
putQueryParameter("Context", context);
}
}
@Override
public Class<CreateTicketResponse> getResponseClass() {
return CreateTicketResponse.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/CreateTicketResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.CreateTicketResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateTicketResponse extends AcsResponse {
private Integer httpStatusCode;
private String code;
private String message;
private String requestId;
private String data;
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getData() {
return this.data;
}
public void setData(String data) {
this.data = data;
}
@Override
public CreateTicketResponse getInstance(UnmarshallerContext context) {
return CreateTicketResponseUnmarshaller.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/CreateUserRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 CreateUserRequest extends RpcAcsRequest<CreateUserResponse> {
private String avatarUrl;
private String roleId;
private String nickname;
private Boolean resetPassword;
private String displayId;
private String email;
private String loginName;
private String mobile;
private String workMode;
private String instanceId;
private String displayName;
private String skillLevelList;
public CreateUserRequest() {
super("CCC", "2020-07-01", "CreateUser", "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 getAvatarUrl() {
return this.avatarUrl;
}
public void setAvatarUrl(String avatarUrl) {
this.avatarUrl = avatarUrl;
if(avatarUrl != null){
putQueryParameter("AvatarUrl", avatarUrl);
}
}
public String getRoleId() {
return this.roleId;
}
public void setRoleId(String roleId) {
this.roleId = roleId;
if(roleId != null){
putQueryParameter("RoleId", roleId);
}
}
public String getNickname() {
return this.nickname;
}
public void setNickname(String nickname) {
this.nickname = nickname;
if(nickname != null){
putQueryParameter("Nickname", nickname);
}
}
public Boolean getResetPassword() {
return this.resetPassword;
}
public void setResetPassword(Boolean resetPassword) {
this.resetPassword = resetPassword;
if(resetPassword != null){
putQueryParameter("ResetPassword", resetPassword.toString());
}
}
public String getDisplayId() {
return this.displayId;
}
public void setDisplayId(String displayId) {
this.displayId = displayId;
if(displayId != null){
putQueryParameter("DisplayId", displayId);
}
}
public String getEmail() {
return this.email;
}
public void setEmail(String email) {
this.email = email;
if(email != null){
putQueryParameter("Email", email);
}
}
public String getLoginName() {
return this.loginName;
}
public void setLoginName(String loginName) {
this.loginName = loginName;
if(loginName != null){
putQueryParameter("LoginName", loginName);
}
}
public String getMobile() {
return this.mobile;
}
public void setMobile(String mobile) {
this.mobile = mobile;
if(mobile != null){
putQueryParameter("Mobile", mobile);
}
}
public String getWorkMode() {
return this.workMode;
}
public void setWorkMode(String workMode) {
this.workMode = workMode;
if(workMode != null){
putQueryParameter("WorkMode", workMode);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getDisplayName() {
return this.displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
if(displayName != null){
putQueryParameter("DisplayName", displayName);
}
}
public String getSkillLevelList() {
return this.skillLevelList;
}
public void setSkillLevelList(String skillLevelList) {
this.skillLevelList = skillLevelList;
if(skillLevelList != null){
putQueryParameter("SkillLevelList", skillLevelList);
}
}
@Override
public Class<CreateUserResponse> getResponseClass() {
return CreateUserResponse.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/CreateUserResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.CreateUserResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class CreateUserResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private List<String> params;
private Data data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<String> getParams() {
return this.params;
}
public void setParams(List<String> params) {
this.params = params;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String displayName;
private String extension;
private String email;
private String loginName;
private String workMode;
private String mobile;
private String userId;
private String avatarUrl;
private String nickname;
public String getDisplayName() {
return this.displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
public String getExtension() {
return this.extension;
}
public void setExtension(String extension) {
this.extension = extension;
}
public String getEmail() {
return this.email;
}
public void setEmail(String email) {
this.email = email;
}
public String getLoginName() {
return this.loginName;
}
public void setLoginName(String loginName) {
this.loginName = loginName;
}
public String getWorkMode() {
return this.workMode;
}
public void setWorkMode(String workMode) {
this.workMode = workMode;
}
public String getMobile() {
return this.mobile;
}
public void setMobile(String mobile) {
this.mobile = mobile;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String 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;
}
}
@Override
public CreateUserResponse getInstance(UnmarshallerContext context) {
return CreateUserResponseUnmarshaller.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/DeleteAudioFileRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DeleteAudioFileRequest extends RpcAcsRequest<DeleteAudioFileResponse> {
private String instanceId;
private String audioResourceId;
public DeleteAudioFileRequest() {
super("CCC", "2020-07-01", "DeleteAudioFile", "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 getAudioResourceId() {
return this.audioResourceId;
}
public void setAudioResourceId(String audioResourceId) {
this.audioResourceId = audioResourceId;
if(audioResourceId != null){
putQueryParameter("AudioResourceId", audioResourceId);
}
}
@Override
public Class<DeleteAudioFileResponse> getResponseClass() {
return DeleteAudioFileResponse.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/DeleteAudioFileResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DeleteAudioFileResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteAudioFileResponse 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 DeleteAudioFileResponse getInstance(UnmarshallerContext context) {
return DeleteAudioFileResponseUnmarshaller.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/DeleteCallTagRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DeleteCallTagRequest extends RpcAcsRequest<DeleteCallTagResponse> {
private String tagName;
private String instanceId;
public DeleteCallTagRequest() {
super("CCC", "2020-07-01", "DeleteCallTag", "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 getTagName() {
return this.tagName;
}
public void setTagName(String tagName) {
this.tagName = tagName;
if(tagName != null){
putQueryParameter("TagName", tagName);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<DeleteCallTagResponse> getResponseClass() {
return DeleteCallTagResponse.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/DeleteCallTagResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DeleteCallTagResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteCallTagResponse 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 DeleteCallTagResponse getInstance(UnmarshallerContext context) {
return DeleteCallTagResponseUnmarshaller.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/DeleteContactFlowRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DeleteContactFlowRequest extends RpcAcsRequest<DeleteContactFlowResponse> {
private String contactFlowId;
private String instanceId;
public DeleteContactFlowRequest() {
super("CCC", "2020-07-01", "DeleteContactFlow", "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<DeleteContactFlowResponse> getResponseClass() {
return DeleteContactFlowResponse.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/DeleteContactFlowResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DeleteContactFlowResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteContactFlowResponse 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 DeleteContactFlowResponse getInstance(UnmarshallerContext context) {
return DeleteContactFlowResponseUnmarshaller.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/DeleteCustomCallTaggingRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DeleteCustomCallTaggingRequest extends RpcAcsRequest<DeleteCustomCallTaggingResponse> {
private String number;
private String instanceId;
public DeleteCustomCallTaggingRequest() {
super("CCC", "2020-07-01", "DeleteCustomCallTagging", "CCC");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getNumber() {
return this.number;
}
public void setNumber(String number) {
this.number = number;
if(number != null){
putQueryParameter("Number", number);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<DeleteCustomCallTaggingResponse> getResponseClass() {
return DeleteCustomCallTaggingResponse.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/DeleteCustomCallTaggingResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DeleteCustomCallTaggingResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteCustomCallTaggingResponse 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 DeleteCustomCallTaggingResponse getInstance(UnmarshallerContext context) {
return DeleteCustomCallTaggingResponseUnmarshaller.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/DeleteDocumentRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DeleteDocumentRequest extends RpcAcsRequest<DeleteDocumentResponse> {
private String instanceId;
private String schemaId;
private String requestId;
private String documentId;
public DeleteDocumentRequest() {
super("CCC", "2020-07-01", "DeleteDocument", "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 getDocumentId() {
return this.documentId;
}
public void setDocumentId(String documentId) {
this.documentId = documentId;
if(documentId != null){
putBodyParameter("DocumentId", documentId);
}
}
@Override
public Class<DeleteDocumentResponse> getResponseClass() {
return DeleteDocumentResponse.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/DeleteDocumentResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DeleteDocumentResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteDocumentResponse extends AcsResponse {
private String requestId;
private Integer httpStatusCode;
private String code;
private String message;
private List<String> params;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public List<String> getParams() {
return this.params;
}
public void setParams(List<String> params) {
this.params = params;
}
@Override
public DeleteDocumentResponse getInstance(UnmarshallerContext context) {
return DeleteDocumentResponseUnmarshaller.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/DeleteDocumentsRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DeleteDocumentsRequest extends RpcAcsRequest<DeleteDocumentsResponse> {
@SerializedName("documentIds")
private List<String> documentIds;
private String instanceId;
private String schemaId;
private String requestId;
public DeleteDocumentsRequest() {
super("CCC", "2020-07-01", "DeleteDocuments", "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<String> getDocumentIds() {
return this.documentIds;
}
public void setDocumentIds(List<String> documentIds) {
this.documentIds = documentIds;
if (documentIds != null) {
putBodyParameter("DocumentIds" , new Gson().toJson(documentIds));
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public String getSchemaId() {
return this.schemaId;
}
public void setSchemaId(String schemaId) {
this.schemaId = schemaId;
if(schemaId != null){
putBodyParameter("SchemaId", schemaId);
}
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
if(requestId != null){
putBodyParameter("RequestId", requestId);
}
}
@Override
public Class<DeleteDocumentsResponse> getResponseClass() {
return DeleteDocumentsResponse.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/DeleteDocumentsResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DeleteDocumentsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteDocumentsResponse extends AcsResponse {
private String requestId;
private Integer httpStatusCode;
private String code;
private String message;
private List<String> params;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public List<String> getParams() {
return this.params;
}
public void setParams(List<String> params) {
this.params = params;
}
@Override
public DeleteDocumentsResponse getInstance(UnmarshallerContext context) {
return DeleteDocumentsResponseUnmarshaller.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/DeleteSchemaPropertyRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DeleteSchemaPropertyRequest extends RpcAcsRequest<DeleteSchemaPropertyResponse> {
private String propertyName;
private String instanceId;
private String schemaId;
private String requestId;
public DeleteSchemaPropertyRequest() {
super("CCC", "2020-07-01", "DeleteSchemaProperty", "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 getPropertyName() {
return this.propertyName;
}
public void setPropertyName(String propertyName) {
this.propertyName = propertyName;
if(propertyName != null){
putBodyParameter("PropertyName", propertyName);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public String getSchemaId() {
return this.schemaId;
}
public void setSchemaId(String schemaId) {
this.schemaId = schemaId;
if(schemaId != null){
putBodyParameter("SchemaId", schemaId);
}
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
if(requestId != null){
putBodyParameter("RequestId", requestId);
}
}
@Override
public Class<DeleteSchemaPropertyResponse> getResponseClass() {
return DeleteSchemaPropertyResponse.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/DeleteSchemaPropertyResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DeleteSchemaPropertyResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteSchemaPropertyResponse extends AcsResponse {
private String requestId;
private Integer httpStatusCode;
private String code;
private String message;
private List<String> params;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public List<String> getParams() {
return this.params;
}
public void setParams(List<String> params) {
this.params = params;
}
@Override
public DeleteSchemaPropertyResponse getInstance(UnmarshallerContext context) {
return DeleteSchemaPropertyResponseUnmarshaller.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/DeleteSchemaRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DeleteSchemaRequest extends RpcAcsRequest<DeleteSchemaResponse> {
private String instanceId;
private String schemaId;
private String requestId;
public DeleteSchemaRequest() {
super("CCC", "2020-07-01", "DeleteSchema", "CCC");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public String getSchemaId() {
return this.schemaId;
}
public void setSchemaId(String schemaId) {
this.schemaId = schemaId;
if(schemaId != null){
putBodyParameter("SchemaId", schemaId);
}
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
if(requestId != null){
putBodyParameter("RequestId", requestId);
}
}
@Override
public Class<DeleteSchemaResponse> getResponseClass() {
return DeleteSchemaResponse.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/DeleteSchemaResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DeleteSchemaResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteSchemaResponse extends AcsResponse {
private String requestId;
private Integer httpStatusCode;
private String code;
private String message;
private List<String> params;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public List<String> getParams() {
return this.params;
}
public void setParams(List<String> params) {
this.params = params;
}
@Override
public DeleteSchemaResponse getInstance(UnmarshallerContext context) {
return DeleteSchemaResponseUnmarshaller.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/DeleteSkillGroupRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.ccc.model.v20200701;
import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;
import com.aliyuncs.ccc.Endpoint;
/**
* @author auto create
* @version
*/
public class DeleteSkillGroupRequest extends RpcAcsRequest<DeleteSkillGroupResponse> {
private String instanceId;
private String skillGroupId;
private Boolean force;
public DeleteSkillGroupRequest() {
super("CCC", "2020-07-01", "DeleteSkillGroup", "CCC");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getSkillGroupId() {
return this.skillGroupId;
}
public void setSkillGroupId(String skillGroupId) {
this.skillGroupId = skillGroupId;
if(skillGroupId != null){
putQueryParameter("SkillGroupId", skillGroupId);
}
}
public Boolean getForce() {
return this.force;
}
public void setForce(Boolean force) {
this.force = force;
if(force != null){
putQueryParameter("Force", force.toString());
}
}
@Override
public Class<DeleteSkillGroupResponse> getResponseClass() {
return DeleteSkillGroupResponse.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/DeleteSkillGroupResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.aliyuncs.ccc.model.v20200701;
import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccc.transform.v20200701.DeleteSkillGroupResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteSkillGroupResponse 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 DeleteSkillGroupResponse getInstance(UnmarshallerContext context) {
return DeleteSkillGroupResponseUnmarshaller.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/DeleteTicketRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DeleteTicketRequest extends RpcAcsRequest<DeleteTicketResponse> {
private String instanceId;
private String ticketId;
public DeleteTicketRequest() {
super("CCC", "2020-07-01", "DeleteTicket", "CCC");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getTicketId() {
return this.ticketId;
}
public void setTicketId(String ticketId) {
this.ticketId = ticketId;
if(ticketId != null){
putQueryParameter("TicketId", ticketId);
}
}
@Override
public Class<DeleteTicketResponse> getResponseClass() {
return DeleteTicketResponse.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/DeleteTicketResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DeleteTicketResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteTicketResponse extends AcsResponse {
@Override
public DeleteTicketResponse getInstance(UnmarshallerContext context) {
return DeleteTicketResponseUnmarshaller.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/DeleteTicketTemplateRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DeleteTicketTemplateRequest extends RpcAcsRequest<DeleteTicketTemplateResponse> {
private String instanceId;
private String templateId;
public DeleteTicketTemplateRequest() {
super("CCC", "2020-07-01", "DeleteTicketTemplate", "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 getTemplateId() {
return this.templateId;
}
public void setTemplateId(String templateId) {
this.templateId = templateId;
if(templateId != null){
putQueryParameter("TemplateId", templateId);
}
}
@Override
public Class<DeleteTicketTemplateResponse> getResponseClass() {
return DeleteTicketTemplateResponse.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/DeleteTicketTemplateResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DeleteTicketTemplateResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DeleteTicketTemplateResponse extends AcsResponse {
@Override
public DeleteTicketTemplateResponse getInstance(UnmarshallerContext context) {
return DeleteTicketTemplateResponseUnmarshaller.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/DisableSchemaPropertyRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DisableSchemaPropertyRequest extends RpcAcsRequest<DisableSchemaPropertyResponse> {
private String propertyName;
private String instanceId;
private String schemaId;
private String requestId;
public DisableSchemaPropertyRequest() {
super("CCC", "2020-07-01", "DisableSchemaProperty", "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 getPropertyName() {
return this.propertyName;
}
public void setPropertyName(String propertyName) {
this.propertyName = propertyName;
if(propertyName != null){
putBodyParameter("PropertyName", propertyName);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public String getSchemaId() {
return this.schemaId;
}
public void setSchemaId(String schemaId) {
this.schemaId = schemaId;
if(schemaId != null){
putBodyParameter("SchemaId", schemaId);
}
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
if(requestId != null){
putBodyParameter("RequestId", requestId);
}
}
@Override
public Class<DisableSchemaPropertyResponse> getResponseClass() {
return DisableSchemaPropertyResponse.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/DisableSchemaPropertyResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DisableSchemaPropertyResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DisableSchemaPropertyResponse extends AcsResponse {
private String requestId;
private Integer httpStatusCode;
private String code;
private String message;
private List<String> params;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public List<String> getParams() {
return this.params;
}
public void setParams(List<String> params) {
this.params = params;
}
@Override
public DisableSchemaPropertyResponse getInstance(UnmarshallerContext context) {
return DisableSchemaPropertyResponseUnmarshaller.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/DisableTicketTemplateRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DisableTicketTemplateRequest extends RpcAcsRequest<DisableTicketTemplateResponse> {
private String instanceId;
private String templateId;
public DisableTicketTemplateRequest() {
super("CCC", "2020-07-01", "DisableTicketTemplate", "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 getTemplateId() {
return this.templateId;
}
public void setTemplateId(String templateId) {
this.templateId = templateId;
if(templateId != null){
putQueryParameter("TemplateId", templateId);
}
}
@Override
public Class<DisableTicketTemplateResponse> getResponseClass() {
return DisableTicketTemplateResponse.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/DisableTicketTemplateResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DisableTicketTemplateResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DisableTicketTemplateResponse extends AcsResponse {
@Override
public DisableTicketTemplateResponse getInstance(UnmarshallerContext context) {
return DisableTicketTemplateResponseUnmarshaller.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/DiscardEditingContactFlowRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 DiscardEditingContactFlowRequest extends RpcAcsRequest<DiscardEditingContactFlowResponse> {
private String contactFlowId;
private String draftId;
private String instanceId;
public DiscardEditingContactFlowRequest() {
super("CCC", "2020-07-01", "DiscardEditingContactFlow", "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<DiscardEditingContactFlowResponse> getResponseClass() {
return DiscardEditingContactFlowResponse.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/DiscardEditingContactFlowResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.DiscardEditingContactFlowResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class DiscardEditingContactFlowResponse 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 DiscardEditingContactFlowResponse getInstance(UnmarshallerContext context) {
return DiscardEditingContactFlowResponseUnmarshaller.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/EnableSchemaPropertyRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 EnableSchemaPropertyRequest extends RpcAcsRequest<EnableSchemaPropertyResponse> {
private String propertyName;
private String instanceId;
private String schemaId;
private String requestId;
public EnableSchemaPropertyRequest() {
super("CCC", "2020-07-01", "EnableSchemaProperty", "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 getPropertyName() {
return this.propertyName;
}
public void setPropertyName(String propertyName) {
this.propertyName = propertyName;
if(propertyName != null){
putBodyParameter("PropertyName", propertyName);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public String getSchemaId() {
return this.schemaId;
}
public void setSchemaId(String schemaId) {
this.schemaId = schemaId;
if(schemaId != null){
putBodyParameter("SchemaId", schemaId);
}
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
if(requestId != null){
putBodyParameter("RequestId", requestId);
}
}
@Override
public Class<EnableSchemaPropertyResponse> getResponseClass() {
return EnableSchemaPropertyResponse.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/EnableSchemaPropertyResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.EnableSchemaPropertyResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class EnableSchemaPropertyResponse extends AcsResponse {
private String requestId;
private Integer httpStatusCode;
private String code;
private String message;
private List<String> params;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public List<String> getParams() {
return this.params;
}
public void setParams(List<String> params) {
this.params = params;
}
@Override
public EnableSchemaPropertyResponse getInstance(UnmarshallerContext context) {
return EnableSchemaPropertyResponseUnmarshaller.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/EnableTicketTemplateRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 EnableTicketTemplateRequest extends RpcAcsRequest<EnableTicketTemplateResponse> {
private String instanceId;
private String templateId;
public EnableTicketTemplateRequest() {
super("CCC", "2020-07-01", "EnableTicketTemplate", "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 getTemplateId() {
return this.templateId;
}
public void setTemplateId(String templateId) {
this.templateId = templateId;
if(templateId != null){
putQueryParameter("TemplateId", templateId);
}
}
@Override
public Class<EnableTicketTemplateResponse> getResponseClass() {
return EnableTicketTemplateResponse.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/EnableTicketTemplateResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.EnableTicketTemplateResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class EnableTicketTemplateResponse extends AcsResponse {
@Override
public EnableTicketTemplateResponse getInstance(UnmarshallerContext context) {
return EnableTicketTemplateResponseUnmarshaller.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/EndConferenceRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 EndConferenceRequest extends RpcAcsRequest<EndConferenceResponse> {
private String userId;
private String jobId;
private String instanceId;
public EndConferenceRequest() {
super("CCC", "2020-07-01", "EndConference", "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 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<EndConferenceResponse> getResponseClass() {
return EndConferenceResponse.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/EndConferenceResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.EndConferenceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class EndConferenceResponse 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;
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 static class UserContext {
private String extension;
private String deviceState;
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 getDeviceState() {
return this.deviceState;
}
public void setDeviceState(String deviceState) {
this.deviceState = deviceState;
}
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 EndConferenceResponse getInstance(UnmarshallerContext context) {
return EndConferenceResponseUnmarshaller.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/ExportCustomCallTaggingRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 ExportCustomCallTaggingRequest extends RpcAcsRequest<ExportCustomCallTaggingResponse> {
private String instanceId;
public ExportCustomCallTaggingRequest() {
super("CCC", "2020-07-01", "ExportCustomCallTagging", "CCC");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<ExportCustomCallTaggingResponse> getResponseClass() {
return ExportCustomCallTaggingResponse.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/ExportCustomCallTaggingResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.ExportCustomCallTaggingResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ExportCustomCallTaggingResponse 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 ExportCustomCallTaggingResponse getInstance(UnmarshallerContext context) {
return ExportCustomCallTaggingResponseUnmarshaller.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/ExportDoNotCallNumbersRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 ExportDoNotCallNumbersRequest extends RpcAcsRequest<ExportDoNotCallNumbersResponse> {
private String searchPattern;
private String instanceId;
private String scope;
public ExportDoNotCallNumbersRequest() {
super("CCC", "2020-07-01", "ExportDoNotCallNumbers", "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 getSearchPattern() {
return this.searchPattern;
}
public void setSearchPattern(String searchPattern) {
this.searchPattern = searchPattern;
if(searchPattern != null){
putQueryParameter("SearchPattern", searchPattern);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getScope() {
return this.scope;
}
public void setScope(String scope) {
this.scope = scope;
if(scope != null){
putQueryParameter("Scope", scope);
}
}
@Override
public Class<ExportDoNotCallNumbersResponse> getResponseClass() {
return ExportDoNotCallNumbersResponse.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/ExportDoNotCallNumbersResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.ExportDoNotCallNumbersResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class ExportDoNotCallNumbersResponse 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 ExportDoNotCallNumbersResponse getInstance(UnmarshallerContext context) {
return ExportDoNotCallNumbersResponseUnmarshaller.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/FinishTicketTaskRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 FinishTicketTaskRequest extends RpcAcsRequest<FinishTicketTaskResponse> {
private String instanceId;
private String comment;
private String ticketId;
private String taskId;
public FinishTicketTaskRequest() {
super("CCC", "2020-07-01", "FinishTicketTask", "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);
}
}
public String getTaskId() {
return this.taskId;
}
public void setTaskId(String taskId) {
this.taskId = taskId;
if(taskId != null){
putQueryParameter("TaskId", taskId);
}
}
@Override
public Class<FinishTicketTaskResponse> getResponseClass() {
return FinishTicketTaskResponse.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/FinishTicketTaskResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.FinishTicketTaskResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class FinishTicketTaskResponse extends AcsResponse {
@Override
public FinishTicketTaskResponse getInstance(UnmarshallerContext context) {
return FinishTicketTaskResponseUnmarshaller.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/GetAccessChannelOfStagingRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 GetAccessChannelOfStagingRequest extends RpcAcsRequest<GetAccessChannelOfStagingResponse> {
private String searchPattern;
public GetAccessChannelOfStagingRequest() {
super("CCC", "2020-07-01", "GetAccessChannelOfStaging", "CCC");
setProtocol(ProtocolType.HTTPS);
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getSearchPattern() {
return this.searchPattern;
}
public void setSearchPattern(String searchPattern) {
this.searchPattern = searchPattern;
if(searchPattern != null){
putQueryParameter("SearchPattern", searchPattern);
}
}
@Override
public Class<GetAccessChannelOfStagingResponse> getResponseClass() {
return GetAccessChannelOfStagingResponse.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/GetAccessChannelOfStagingResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.GetAccessChannelOfStagingResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetAccessChannelOfStagingResponse extends AcsResponse {
private String requestId;
private String code;
private String message;
private Integer httpStatusCode;
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 String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String token;
public String getToken() {
return this.token;
}
public void setToken(String token) {
this.token = token;
}
}
@Override
public GetAccessChannelOfStagingResponse getInstance(UnmarshallerContext context) {
return GetAccessChannelOfStagingResponseUnmarshaller.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/GetAudioFileDownloadUrlRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 GetAudioFileDownloadUrlRequest extends RpcAcsRequest<GetAudioFileDownloadUrlResponse> {
private String instanceId;
private String audioResourceId;
public GetAudioFileDownloadUrlRequest() {
super("CCC", "2020-07-01", "GetAudioFileDownloadUrl", "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 getAudioResourceId() {
return this.audioResourceId;
}
public void setAudioResourceId(String audioResourceId) {
this.audioResourceId = audioResourceId;
if(audioResourceId != null){
putQueryParameter("AudioResourceId", audioResourceId);
}
}
@Override
public Class<GetAudioFileDownloadUrlResponse> getResponseClass() {
return GetAudioFileDownloadUrlResponse.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/GetAudioFileDownloadUrlResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.GetAudioFileDownloadUrlResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetAudioFileDownloadUrlResponse 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 GetAudioFileDownloadUrlResponse getInstance(UnmarshallerContext context) {
return GetAudioFileDownloadUrlResponseUnmarshaller.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/GetAudioFileRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 GetAudioFileRequest extends RpcAcsRequest<GetAudioFileResponse> {
private String instanceId;
private String audioResourceId;
public GetAudioFileRequest() {
super("CCC", "2020-07-01", "GetAudioFile", "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 getAudioResourceId() {
return this.audioResourceId;
}
public void setAudioResourceId(String audioResourceId) {
this.audioResourceId = audioResourceId;
if(audioResourceId != null){
putQueryParameter("AudioResourceId", audioResourceId);
}
}
@Override
public Class<GetAudioFileResponse> getResponseClass() {
return GetAudioFileResponse.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/GetAudioFileResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.GetAudioFileResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetAudioFileResponse extends AcsResponse {
private Integer httpStatusCode;
private String requestId;
private String code;
private String message;
private Data data;
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String audioFileName;
private String ossFileKey;
private String updatedTime;
private String audioResourceId;
private String instanceId;
private String name;
private String createdTime;
public String getAudioFileName() {
return this.audioFileName;
}
public void setAudioFileName(String audioFileName) {
this.audioFileName = audioFileName;
}
public String getOssFileKey() {
return this.ossFileKey;
}
public void setOssFileKey(String ossFileKey) {
this.ossFileKey = ossFileKey;
}
public String getUpdatedTime() {
return this.updatedTime;
}
public void setUpdatedTime(String updatedTime) {
this.updatedTime = updatedTime;
}
public String getAudioResourceId() {
return this.audioResourceId;
}
public void setAudioResourceId(String audioResourceId) {
this.audioResourceId = audioResourceId;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getCreatedTime() {
return this.createdTime;
}
public void setCreatedTime(String createdTime) {
this.createdTime = createdTime;
}
}
@Override
public GetAudioFileResponse getInstance(UnmarshallerContext context) {
return GetAudioFileResponseUnmarshaller.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/GetAudioFileUploadParametersRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 GetAudioFileUploadParametersRequest extends RpcAcsRequest<GetAudioFileUploadParametersResponse> {
private String instanceId;
private String audioFileName;
public GetAudioFileUploadParametersRequest() {
super("CCC", "2020-07-01", "GetAudioFileUploadParameters", "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 getAudioFileName() {
return this.audioFileName;
}
public void setAudioFileName(String audioFileName) {
this.audioFileName = audioFileName;
if(audioFileName != null){
putQueryParameter("AudioFileName", audioFileName);
}
}
@Override
public Class<GetAudioFileUploadParametersResponse> getResponseClass() {
return GetAudioFileUploadParametersResponse.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/GetAudioFileUploadParametersResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.GetAudioFileUploadParametersResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetAudioFileUploadParametersResponse extends AcsResponse {
private Integer httpStatusCode;
private String code;
private String message;
private String requestId;
private Data data;
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String filePath;
private String signature;
private String host;
private String policy;
private Integer expireTime;
private String accessKeyId;
public String getFilePath() {
return this.filePath;
}
public void setFilePath(String filePath) {
this.filePath = filePath;
}
public String getSignature() {
return this.signature;
}
public void setSignature(String signature) {
this.signature = signature;
}
public String getHost() {
return this.host;
}
public void setHost(String host) {
this.host = host;
}
public String getPolicy() {
return this.policy;
}
public void setPolicy(String policy) {
this.policy = policy;
}
public Integer getExpireTime() {
return this.expireTime;
}
public void setExpireTime(Integer expireTime) {
this.expireTime = expireTime;
}
public String getAccessKeyId() {
return this.accessKeyId;
}
public void setAccessKeyId(String accessKeyId) {
this.accessKeyId = accessKeyId;
}
}
@Override
public GetAudioFileUploadParametersResponse getInstance(UnmarshallerContext context) {
return GetAudioFileUploadParametersResponseUnmarshaller.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/GetCallDetailRecordRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 GetCallDetailRecordRequest extends RpcAcsRequest<GetCallDetailRecordResponse> {
private String contactId;
private String instanceId;
public GetCallDetailRecordRequest() {
super("CCC", "2020-07-01", "GetCallDetailRecord", "CCC");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getContactId() {
return this.contactId;
}
public void setContactId(String contactId) {
this.contactId = contactId;
if(contactId != null){
putQueryParameter("ContactId", contactId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<GetCallDetailRecordResponse> getResponseClass() {
return GetCallDetailRecordResponse.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/GetCallDetailRecordResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.GetCallDetailRecordResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetCallDetailRecordResponse 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 releaseInitiator;
private String contactDisposition;
private String contactType;
private String agentIds;
private Long callDuration;
private Boolean recordingReady;
private Long establishedTime;
private String instanceId;
private Boolean satisfactionSurveyOffered;
private String calledNumber;
private String agentNames;
private Integer satisfaction;
private Long startTime;
private String contactId;
private String satisfactionSurveyChannel;
private Long releaseTime;
private String callingNumber;
private String skillGroupNames;
private String skillGroupIds;
private String callerLocation;
private String calleeLocation;
private String earlyMediaState;
private String releaseReason;
private List<AgentEventsItem> agentEvents;
private List<IvrEventsItem> ivrEvents;
private List<QueueEventsItem> queueEvents;
private List<CustomerEventsItem> customerEvents;
public String getReleaseInitiator() {
return this.releaseInitiator;
}
public void setReleaseInitiator(String releaseInitiator) {
this.releaseInitiator = releaseInitiator;
}
public String getContactDisposition() {
return this.contactDisposition;
}
public void setContactDisposition(String contactDisposition) {
this.contactDisposition = contactDisposition;
}
public String getContactType() {
return this.contactType;
}
public void setContactType(String contactType) {
this.contactType = contactType;
}
public String getAgentIds() {
return this.agentIds;
}
public void setAgentIds(String agentIds) {
this.agentIds = agentIds;
}
public Long getCallDuration() {
return this.callDuration;
}
public void setCallDuration(Long callDuration) {
this.callDuration = callDuration;
}
public Boolean getRecordingReady() {
return this.recordingReady;
}
public void setRecordingReady(Boolean recordingReady) {
this.recordingReady = recordingReady;
}
public Long getEstablishedTime() {
return this.establishedTime;
}
public void setEstablishedTime(Long establishedTime) {
this.establishedTime = establishedTime;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public Boolean getSatisfactionSurveyOffered() {
return this.satisfactionSurveyOffered;
}
public void setSatisfactionSurveyOffered(Boolean satisfactionSurveyOffered) {
this.satisfactionSurveyOffered = satisfactionSurveyOffered;
}
public String getCalledNumber() {
return this.calledNumber;
}
public void setCalledNumber(String calledNumber) {
this.calledNumber = calledNumber;
}
public String getAgentNames() {
return this.agentNames;
}
public void setAgentNames(String agentNames) {
this.agentNames = agentNames;
}
public Integer getSatisfaction() {
return this.satisfaction;
}
public void setSatisfaction(Integer satisfaction) {
this.satisfaction = satisfaction;
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
}
public String getContactId() {
return this.contactId;
}
public void setContactId(String contactId) {
this.contactId = contactId;
}
public String getSatisfactionSurveyChannel() {
return this.satisfactionSurveyChannel;
}
public void setSatisfactionSurveyChannel(String satisfactionSurveyChannel) {
this.satisfactionSurveyChannel = satisfactionSurveyChannel;
}
public Long getReleaseTime() {
return this.releaseTime;
}
public void setReleaseTime(Long releaseTime) {
this.releaseTime = releaseTime;
}
public String getCallingNumber() {
return this.callingNumber;
}
public void setCallingNumber(String callingNumber) {
this.callingNumber = callingNumber;
}
public String getSkillGroupNames() {
return this.skillGroupNames;
}
public void setSkillGroupNames(String skillGroupNames) {
this.skillGroupNames = skillGroupNames;
}
public String getSkillGroupIds() {
return this.skillGroupIds;
}
public void setSkillGroupIds(String skillGroupIds) {
this.skillGroupIds = skillGroupIds;
}
public String getCallerLocation() {
return this.callerLocation;
}
public void setCallerLocation(String callerLocation) {
this.callerLocation = callerLocation;
}
public String getCalleeLocation() {
return this.calleeLocation;
}
public void setCalleeLocation(String calleeLocation) {
this.calleeLocation = calleeLocation;
}
public String getEarlyMediaState() {
return this.earlyMediaState;
}
public void setEarlyMediaState(String earlyMediaState) {
this.earlyMediaState = earlyMediaState;
}
public String getReleaseReason() {
return this.releaseReason;
}
public void setReleaseReason(String releaseReason) {
this.releaseReason = releaseReason;
}
public List<AgentEventsItem> getAgentEvents() {
return this.agentEvents;
}
public void setAgentEvents(List<AgentEventsItem> agentEvents) {
this.agentEvents = agentEvents;
}
public List<IvrEventsItem> getIvrEvents() {
return this.ivrEvents;
}
public void setIvrEvents(List<IvrEventsItem> ivrEvents) {
this.ivrEvents = ivrEvents;
}
public List<QueueEventsItem> getQueueEvents() {
return this.queueEvents;
}
public void setQueueEvents(List<QueueEventsItem> queueEvents) {
this.queueEvents = queueEvents;
}
public List<CustomerEventsItem> getCustomerEvents() {
return this.customerEvents;
}
public void setCustomerEvents(List<CustomerEventsItem> customerEvents) {
this.customerEvents = customerEvents;
}
public static class AgentEventsItem {
private String agentName;
private String agentId;
private String skillGroupId;
private List<EventSequenceItem> eventSequence;
public String getAgentName() {
return this.agentName;
}
public void setAgentName(String agentName) {
this.agentName = agentName;
}
public String getAgentId() {
return this.agentId;
}
public void setAgentId(String agentId) {
this.agentId = agentId;
}
public String getSkillGroupId() {
return this.skillGroupId;
}
public void setSkillGroupId(String skillGroupId) {
this.skillGroupId = skillGroupId;
}
public List<EventSequenceItem> getEventSequence() {
return this.eventSequence;
}
public void setEventSequence(List<EventSequenceItem> eventSequence) {
this.eventSequence = eventSequence;
}
public static class EventSequenceItem {
private String event;
private Long eventTime;
private Long duration;
public String getEvent() {
return this.event;
}
public void setEvent(String event) {
this.event = event;
}
public Long getEventTime() {
return this.eventTime;
}
public void setEventTime(Long eventTime) {
this.eventTime = eventTime;
}
public Long getDuration() {
return this.duration;
}
public void setDuration(Long duration) {
this.duration = duration;
}
}
}
public static class IvrEventsItem {
private String flowId;
private String flowType;
private List<EventSequenceItem2> eventSequence1;
public String getFlowId() {
return this.flowId;
}
public void setFlowId(String flowId) {
this.flowId = flowId;
}
public String getFlowType() {
return this.flowType;
}
public void setFlowType(String flowType) {
this.flowType = flowType;
}
public List<EventSequenceItem2> getEventSequence1() {
return this.eventSequence1;
}
public void setEventSequence1(List<EventSequenceItem2> eventSequence1) {
this.eventSequence1 = eventSequence1;
}
public static class EventSequenceItem2 {
private String event;
private Long eventTime;
public String getEvent() {
return this.event;
}
public void setEvent(String event) {
this.event = event;
}
public Long getEventTime() {
return this.eventTime;
}
public void setEventTime(Long eventTime) {
this.eventTime = eventTime;
}
}
}
public static class QueueEventsItem {
private String queueId;
private String queueName;
private String flowId;
private Integer queueType;
private List<EventSequenceItem4> eventSequence3;
public String getQueueId() {
return this.queueId;
}
public void setQueueId(String queueId) {
this.queueId = queueId;
}
public String getQueueName() {
return this.queueName;
}
public void setQueueName(String queueName) {
this.queueName = queueName;
}
public String getFlowId() {
return this.flowId;
}
public void setFlowId(String flowId) {
this.flowId = flowId;
}
public Integer getQueueType() {
return this.queueType;
}
public void setQueueType(Integer queueType) {
this.queueType = queueType;
}
public List<EventSequenceItem4> getEventSequence3() {
return this.eventSequence3;
}
public void setEventSequence3(List<EventSequenceItem4> eventSequence3) {
this.eventSequence3 = eventSequence3;
}
public static class EventSequenceItem4 {
private String event;
private Long eventTime;
public String getEvent() {
return this.event;
}
public void setEvent(String event) {
this.event = event;
}
public Long getEventTime() {
return this.eventTime;
}
public void setEventTime(Long eventTime) {
this.eventTime = eventTime;
}
}
}
public static class CustomerEventsItem {
private String customerId;
private List<EventSequenceItem6> eventSequence5;
public String getCustomerId() {
return this.customerId;
}
public void setCustomerId(String customerId) {
this.customerId = customerId;
}
public List<EventSequenceItem6> getEventSequence5() {
return this.eventSequence5;
}
public void setEventSequence5(List<EventSequenceItem6> eventSequence5) {
this.eventSequence5 = eventSequence5;
}
public static class EventSequenceItem6 {
private String event;
private Long eventTime;
public String getEvent() {
return this.event;
}
public void setEvent(String event) {
this.event = event;
}
public Long getEventTime() {
return this.eventTime;
}
public void setEventTime(Long eventTime) {
this.eventTime = eventTime;
}
}
}
}
@Override
public GetCallDetailRecordResponse getInstance(UnmarshallerContext context) {
return GetCallDetailRecordResponseUnmarshaller.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/GetCampaignRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 GetCampaignRequest extends RpcAcsRequest<GetCampaignResponse> {
private String instanceId;
private String campaignId;
public GetCampaignRequest() {
super("CCC", "2020-07-01", "GetCampaign", "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<GetCampaignResponse> getResponseClass() {
return GetCampaignResponse.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/GetCampaignResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.GetCampaignResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetCampaignResponse extends AcsResponse {
private String requestId;
private Long httpStatusCode;
private String code;
private Data data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Long getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Long httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Long actualEndTime;
private Long actualStartTime;
private Long casesAborted;
private Long casesUncompleted;
private Long casesConnected;
private Long maxAttemptCount;
private Long minAttemptInterval;
private String name;
private Long planedEndTime;
private Long planedStartTime;
private String queueName;
private Long totalCases;
private String state;
private String campaignId;
private String strategyType;
private String strategyParameters;
private String queueId;
private Boolean simulation;
private String simulationParameters;
private Long casesUncompletedAfterAttempted;
private String casesUncompletedAfterAttempt;
private Float completionRate;
private String contactFlowId;
public Long getActualEndTime() {
return this.actualEndTime;
}
public void setActualEndTime(Long actualEndTime) {
this.actualEndTime = actualEndTime;
}
public Long getActualStartTime() {
return this.actualStartTime;
}
public void setActualStartTime(Long actualStartTime) {
this.actualStartTime = actualStartTime;
}
public Long getCasesAborted() {
return this.casesAborted;
}
public void setCasesAborted(Long casesAborted) {
this.casesAborted = casesAborted;
}
public Long getCasesUncompleted() {
return this.casesUncompleted;
}
public void setCasesUncompleted(Long casesUncompleted) {
this.casesUncompleted = casesUncompleted;
}
public Long getCasesConnected() {
return this.casesConnected;
}
public void setCasesConnected(Long casesConnected) {
this.casesConnected = casesConnected;
}
public Long getMaxAttemptCount() {
return this.maxAttemptCount;
}
public void setMaxAttemptCount(Long maxAttemptCount) {
this.maxAttemptCount = maxAttemptCount;
}
public Long getMinAttemptInterval() {
return this.minAttemptInterval;
}
public void setMinAttemptInterval(Long minAttemptInterval) {
this.minAttemptInterval = minAttemptInterval;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public Long getPlanedEndTime() {
return this.planedEndTime;
}
public void setPlanedEndTime(Long planedEndTime) {
this.planedEndTime = planedEndTime;
}
public Long getPlanedStartTime() {
return this.planedStartTime;
}
public void setPlanedStartTime(Long planedStartTime) {
this.planedStartTime = planedStartTime;
}
public String getQueueName() {
return this.queueName;
}
public void setQueueName(String queueName) {
this.queueName = queueName;
}
public Long getTotalCases() {
return this.totalCases;
}
public void setTotalCases(Long totalCases) {
this.totalCases = totalCases;
}
public String getState() {
return this.state;
}
public void setState(String state) {
this.state = state;
}
public String getCampaignId() {
return this.campaignId;
}
public void setCampaignId(String campaignId) {
this.campaignId = campaignId;
}
public String getStrategyType() {
return this.strategyType;
}
public void setStrategyType(String strategyType) {
this.strategyType = strategyType;
}
public String getStrategyParameters() {
return this.strategyParameters;
}
public void setStrategyParameters(String strategyParameters) {
this.strategyParameters = strategyParameters;
}
public String getQueueId() {
return this.queueId;
}
public void setQueueId(String queueId) {
this.queueId = queueId;
}
public Boolean getSimulation() {
return this.simulation;
}
public void setSimulation(Boolean simulation) {
this.simulation = simulation;
}
public String getSimulationParameters() {
return this.simulationParameters;
}
public void setSimulationParameters(String simulationParameters) {
this.simulationParameters = simulationParameters;
}
public Long getCasesUncompletedAfterAttempted() {
return this.casesUncompletedAfterAttempted;
}
public void setCasesUncompletedAfterAttempted(Long casesUncompletedAfterAttempted) {
this.casesUncompletedAfterAttempted = casesUncompletedAfterAttempted;
}
public String getCasesUncompletedAfterAttempt() {
return this.casesUncompletedAfterAttempt;
}
public void setCasesUncompletedAfterAttempt(String casesUncompletedAfterAttempt) {
this.casesUncompletedAfterAttempt = casesUncompletedAfterAttempt;
}
public Float getCompletionRate() {
return this.completionRate;
}
public void setCompletionRate(Float completionRate) {
this.completionRate = completionRate;
}
public String getContactFlowId() {
return this.contactFlowId;
}
public void setContactFlowId(String contactFlowId) {
this.contactFlowId = contactFlowId;
}
}
@Override
public GetCampaignResponse getInstance(UnmarshallerContext context) {
return GetCampaignResponseUnmarshaller.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/GetCaseFileUploadUrlRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 GetCaseFileUploadUrlRequest extends RpcAcsRequest<GetCaseFileUploadUrlResponse> {
private String instanceId;
private String fileName;
public GetCaseFileUploadUrlRequest() {
super("CCC", "2020-07-01", "GetCaseFileUploadUrl", "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 getFileName() {
return this.fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
if(fileName != null){
putQueryParameter("FileName", fileName);
}
}
@Override
public Class<GetCaseFileUploadUrlResponse> getResponseClass() {
return GetCaseFileUploadUrlResponse.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/GetCaseFileUploadUrlResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.GetCaseFileUploadUrlResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetCaseFileUploadUrlResponse extends AcsResponse {
private Integer httpStatusCode;
private String code;
private String message;
private String requestId;
private Data data;
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String url;
private String caseFileKey;
public String getUrl() {
return this.url;
}
public void setUrl(String url) {
this.url = url;
}
public String getCaseFileKey() {
return this.caseFileKey;
}
public void setCaseFileKey(String caseFileKey) {
this.caseFileKey = caseFileKey;
}
}
@Override
public GetCaseFileUploadUrlResponse getInstance(UnmarshallerContext context) {
return GetCaseFileUploadUrlResponseUnmarshaller.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/GetChatMediaUrlRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 GetChatMediaUrlRequest extends RpcAcsRequest<GetChatMediaUrlResponse> {
private String mediaId;
private String instanceId;
private String requestId;
public GetChatMediaUrlRequest() {
super("CCC", "2020-07-01", "GetChatMediaUrl", "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 getMediaId() {
return this.mediaId;
}
public void setMediaId(String mediaId) {
this.mediaId = mediaId;
if(mediaId != null){
putBodyParameter("MediaId", mediaId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
if(requestId != null){
putBodyParameter("RequestId", requestId);
}
}
@Override
public Class<GetChatMediaUrlResponse> getResponseClass() {
return GetChatMediaUrlResponse.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/GetChatMediaUrlResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.GetChatMediaUrlResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetChatMediaUrlResponse 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 GetChatMediaUrlResponse getInstance(UnmarshallerContext context) {
return GetChatMediaUrlResponseUnmarshaller.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/GetContactFlowRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 GetContactFlowRequest extends RpcAcsRequest<GetContactFlowResponse> {
private String contactFlowId;
private String draftId;
private String instanceId;
public GetContactFlowRequest() {
super("CCC", "2020-07-01", "GetContactFlow", "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<GetContactFlowResponse> getResponseClass() {
return GetContactFlowResponse.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/GetContactFlowResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.GetContactFlowResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetContactFlowResponse 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 type;
private String definition;
private String draftId;
private String description;
private String updatedTime;
private String editor;
private Boolean published;
private String instanceId;
private String name;
private String contactFlowId;
private String createdTime;
public String getType() {
return this.type;
}
public void setType(String type) {
this.type = type;
}
public String getDefinition() {
return this.definition;
}
public void setDefinition(String definition) {
this.definition = definition;
}
public String getDraftId() {
return this.draftId;
}
public void setDraftId(String draftId) {
this.draftId = draftId;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getUpdatedTime() {
return this.updatedTime;
}
public void setUpdatedTime(String updatedTime) {
this.updatedTime = updatedTime;
}
public String getEditor() {
return this.editor;
}
public void setEditor(String editor) {
this.editor = editor;
}
public Boolean getPublished() {
return this.published;
}
public void setPublished(Boolean published) {
this.published = published;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getContactFlowId() {
return this.contactFlowId;
}
public void setContactFlowId(String contactFlowId) {
this.contactFlowId = contactFlowId;
}
public String getCreatedTime() {
return this.createdTime;
}
public void setCreatedTime(String createdTime) {
this.createdTime = createdTime;
}
}
@Override
public GetContactFlowResponse getInstance(UnmarshallerContext context) {
return GetContactFlowResponseUnmarshaller.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/GetConversationDetailRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 GetConversationDetailRequest extends RpcAcsRequest<GetConversationDetailResponse> {
private String contactId;
private String instanceId;
public GetConversationDetailRequest() {
super("CCC", "2020-07-01", "GetConversationDetail", "CCC");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getContactId() {
return this.contactId;
}
public void setContactId(String contactId) {
this.contactId = contactId;
if(contactId != null){
putQueryParameter("ContactId", contactId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<GetConversationDetailResponse> getResponseClass() {
return GetConversationDetailResponse.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/GetConversationDetailResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.GetConversationDetailResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetConversationDetailResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private List<Phrase> phrases;
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<Phrase> getPhrases() {
return this.phrases;
}
public void setPhrases(List<Phrase> phrases) {
this.phrases = phrases;
}
public static class Phrase {
private String identity;
private String role;
private Integer begin;
private Integer end;
private String words;
public String getIdentity() {
return this.identity;
}
public void setIdentity(String identity) {
this.identity = identity;
}
public String getRole() {
return this.role;
}
public void setRole(String role) {
this.role = role;
}
public Integer getBegin() {
return this.begin;
}
public void setBegin(Integer begin) {
this.begin = begin;
}
public Integer getEnd() {
return this.end;
}
public void setEnd(Integer end) {
this.end = end;
}
public String getWords() {
return this.words;
}
public void setWords(String words) {
this.words = words;
}
}
@Override
public GetConversationDetailResponse getInstance(UnmarshallerContext context) {
return GetConversationDetailResponseUnmarshaller.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/GetDataChannelCredentialsRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 GetDataChannelCredentialsRequest extends RpcAcsRequest<GetDataChannelCredentialsResponse> {
private String deviceId;
private String instanceId;
public GetDataChannelCredentialsRequest() {
super("CCC", "2020-07-01", "GetDataChannelCredentials", "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 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<GetDataChannelCredentialsResponse> getResponseClass() {
return GetDataChannelCredentialsResponse.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/GetDataChannelCredentialsResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.GetDataChannelCredentialsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetDataChannelCredentialsResponse 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 deviceId;
private String topic;
private String clientId;
private String endpoint;
private String userName;
private String password;
private Long expiredTime;
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String getTopic() {
return this.topic;
}
public void setTopic(String topic) {
this.topic = topic;
}
public String getClientId() {
return this.clientId;
}
public void setClientId(String clientId) {
this.clientId = clientId;
}
public String getEndpoint() {
return this.endpoint;
}
public void setEndpoint(String endpoint) {
this.endpoint = endpoint;
}
public String getUserName() {
return this.userName;
}
public void setUserName(String userName) {
this.userName = userName;
}
public String getPassword() {
return this.password;
}
public void setPassword(String password) {
this.password = password;
}
public Long getExpiredTime() {
return this.expiredTime;
}
public void setExpiredTime(Long expiredTime) {
this.expiredTime = expiredTime;
}
}
@Override
public GetDataChannelCredentialsResponse getInstance(UnmarshallerContext context) {
return GetDataChannelCredentialsResponseUnmarshaller.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/GetDoNotCallFileUploadParametersRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 GetDoNotCallFileUploadParametersRequest extends RpcAcsRequest<GetDoNotCallFileUploadParametersResponse> {
private String instanceId;
private String fileName;
public GetDoNotCallFileUploadParametersRequest() {
super("CCC", "2020-07-01", "GetDoNotCallFileUploadParameters", "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 getFileName() {
return this.fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
if(fileName != null){
putQueryParameter("FileName", fileName);
}
}
@Override
public Class<GetDoNotCallFileUploadParametersResponse> getResponseClass() {
return GetDoNotCallFileUploadParametersResponse.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/GetDoNotCallFileUploadParametersResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.GetDoNotCallFileUploadParametersResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetDoNotCallFileUploadParametersResponse extends AcsResponse {
private Integer httpStatusCode;
private String code;
private String message;
private String requestId;
private Boolean success;
private Data data;
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Boolean getSuccess() {
return this.success;
}
public void setSuccess(Boolean success) {
this.success = success;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String filePath;
private String signature;
private String host;
private String policy;
private Integer expireTime;
private String accessKeyId;
public String getFilePath() {
return this.filePath;
}
public void setFilePath(String filePath) {
this.filePath = filePath;
}
public String getSignature() {
return this.signature;
}
public void setSignature(String signature) {
this.signature = signature;
}
public String getHost() {
return this.host;
}
public void setHost(String host) {
this.host = host;
}
public String getPolicy() {
return this.policy;
}
public void setPolicy(String policy) {
this.policy = policy;
}
public Integer getExpireTime() {
return this.expireTime;
}
public void setExpireTime(Integer expireTime) {
this.expireTime = expireTime;
}
public String getAccessKeyId() {
return this.accessKeyId;
}
public void setAccessKeyId(String accessKeyId) {
this.accessKeyId = accessKeyId;
}
}
@Override
public GetDoNotCallFileUploadParametersResponse getInstance(UnmarshallerContext context) {
return GetDoNotCallFileUploadParametersResponseUnmarshaller.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/GetDocumentUploadParametersRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 GetDocumentUploadParametersRequest extends RpcAcsRequest<GetDocumentUploadParametersResponse> {
private String fileName;
private String instanceId;
private String requestId;
public GetDocumentUploadParametersRequest() {
super("CCC", "2020-07-01", "GetDocumentUploadParameters", "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 getFileName() {
return this.fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
if(fileName != null){
putBodyParameter("FileName", fileName);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putBodyParameter("InstanceId", instanceId);
}
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
if(requestId != null){
putBodyParameter("RequestId", requestId);
}
}
@Override
public Class<GetDocumentUploadParametersResponse> getResponseClass() {
return GetDocumentUploadParametersResponse.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/GetDocumentUploadParametersResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.GetDocumentUploadParametersResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetDocumentUploadParametersResponse extends AcsResponse {
private String requestId;
private Integer httpStatusCode;
private String code;
private String message;
private List<String> params;
private Data data;
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public List<String> getParams() {
return this.params;
}
public void setParams(List<String> params) {
this.params = params;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String accessKeyId;
private String policy;
private String signature;
private String filePath;
private String host;
private Integer expireTime;
public String getAccessKeyId() {
return this.accessKeyId;
}
public void setAccessKeyId(String accessKeyId) {
this.accessKeyId = accessKeyId;
}
public String getPolicy() {
return this.policy;
}
public void setPolicy(String policy) {
this.policy = policy;
}
public String getSignature() {
return this.signature;
}
public void setSignature(String signature) {
this.signature = signature;
}
public String getFilePath() {
return this.filePath;
}
public void setFilePath(String filePath) {
this.filePath = filePath;
}
public String getHost() {
return this.host;
}
public void setHost(String host) {
this.host = host;
}
public Integer getExpireTime() {
return this.expireTime;
}
public void setExpireTime(Integer expireTime) {
this.expireTime = expireTime;
}
}
@Override
public GetDocumentUploadParametersResponse getInstance(UnmarshallerContext context) {
return GetDocumentUploadParametersResponseUnmarshaller.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/GetEarlyMediaRecordingRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 GetEarlyMediaRecordingRequest extends RpcAcsRequest<GetEarlyMediaRecordingResponse> {
private String contactId;
private String instanceId;
public GetEarlyMediaRecordingRequest() {
super("CCC", "2020-07-01", "GetEarlyMediaRecording", "CCC");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getContactId() {
return this.contactId;
}
public void setContactId(String contactId) {
this.contactId = contactId;
if(contactId != null){
putQueryParameter("ContactId", contactId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<GetEarlyMediaRecordingResponse> getResponseClass() {
return GetEarlyMediaRecordingResponse.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/GetEarlyMediaRecordingResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.GetEarlyMediaRecordingResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetEarlyMediaRecordingResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private Data data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String fileUrl;
private String fileName;
public String getFileUrl() {
return this.fileUrl;
}
public void setFileUrl(String fileUrl) {
this.fileUrl = fileUrl;
}
public String getFileName() {
return this.fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
}
@Override
public GetEarlyMediaRecordingResponse getInstance(UnmarshallerContext context) {
return GetEarlyMediaRecordingResponseUnmarshaller.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/GetHistoricalCallerReportRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 GetHistoricalCallerReportRequest extends RpcAcsRequest<GetHistoricalCallerReportResponse> {
private Long stopTime;
private Long startTime;
private String callingNumber;
private String instanceId;
public GetHistoricalCallerReportRequest() {
super("CCC", "2020-07-01", "GetHistoricalCallerReport", "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 Long getStopTime() {
return this.stopTime;
}
public void setStopTime(Long stopTime) {
this.stopTime = stopTime;
if(stopTime != null){
putQueryParameter("StopTime", stopTime.toString());
}
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime.toString());
}
}
public String getCallingNumber() {
return this.callingNumber;
}
public void setCallingNumber(String callingNumber) {
this.callingNumber = callingNumber;
if(callingNumber != null){
putQueryParameter("CallingNumber", callingNumber);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<GetHistoricalCallerReportResponse> getResponseClass() {
return GetHistoricalCallerReportResponse.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/GetHistoricalCallerReportResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.GetHistoricalCallerReportResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetHistoricalCallerReportResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private Data data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Long lastCallingTime;
private Long totalCalls;
public Long getLastCallingTime() {
return this.lastCallingTime;
}
public void setLastCallingTime(Long lastCallingTime) {
this.lastCallingTime = lastCallingTime;
}
public Long getTotalCalls() {
return this.totalCalls;
}
public void setTotalCalls(Long totalCalls) {
this.totalCalls = totalCalls;
}
}
@Override
public GetHistoricalCallerReportResponse getInstance(UnmarshallerContext context) {
return GetHistoricalCallerReportResponseUnmarshaller.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/GetHistoricalCampaignReportRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 GetHistoricalCampaignReportRequest extends RpcAcsRequest<GetHistoricalCampaignReportResponse> {
private String campaignId;
private String instanceId;
public GetHistoricalCampaignReportRequest() {
super("CCC", "2020-07-01", "GetHistoricalCampaignReport", "CCC");
setMethod(MethodType.GET);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getCampaignId() {
return this.campaignId;
}
public void setCampaignId(String campaignId) {
this.campaignId = campaignId;
if(campaignId != null){
putQueryParameter("CampaignId", campaignId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<GetHistoricalCampaignReportResponse> getResponseClass() {
return GetHistoricalCampaignReportResponse.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/GetHistoricalCampaignReportResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.GetHistoricalCampaignReportResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetHistoricalCampaignReportResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private Data data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private Long callsConnected;
private Long callsDialed;
private Long callsAbandoned;
private Float connectedRate;
private Float answerRate;
private Float abandonedRate;
private Float abandonRate;
private Float occupancyRate;
public Long getCallsConnected() {
return this.callsConnected;
}
public void setCallsConnected(Long callsConnected) {
this.callsConnected = callsConnected;
}
public Long getCallsDialed() {
return this.callsDialed;
}
public void setCallsDialed(Long callsDialed) {
this.callsDialed = callsDialed;
}
public Long getCallsAbandoned() {
return this.callsAbandoned;
}
public void setCallsAbandoned(Long callsAbandoned) {
this.callsAbandoned = callsAbandoned;
}
public Float getConnectedRate() {
return this.connectedRate;
}
public void setConnectedRate(Float connectedRate) {
this.connectedRate = connectedRate;
}
public Float getAnswerRate() {
return this.answerRate;
}
public void setAnswerRate(Float answerRate) {
this.answerRate = answerRate;
}
public Float getAbandonedRate() {
return this.abandonedRate;
}
public void setAbandonedRate(Float abandonedRate) {
this.abandonedRate = abandonedRate;
}
public Float getAbandonRate() {
return this.abandonRate;
}
public void setAbandonRate(Float abandonRate) {
this.abandonRate = abandonRate;
}
public Float getOccupancyRate() {
return this.occupancyRate;
}
public void setOccupancyRate(Float occupancyRate) {
this.occupancyRate = occupancyRate;
}
}
@Override
public GetHistoricalCampaignReportResponse getInstance(UnmarshallerContext context) {
return GetHistoricalCampaignReportResponseUnmarshaller.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/GetHistoricalInstanceReportRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 GetHistoricalInstanceReportRequest extends RpcAcsRequest<GetHistoricalInstanceReportResponse> {
private Long endTime;
private Long startTime;
private String instanceId;
private String mediaType;
public GetHistoricalInstanceReportRequest() {
super("CCC", "2020-07-01", "GetHistoricalInstanceReport", "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 Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
if(endTime != null){
putQueryParameter("EndTime", endTime.toString());
}
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getMediaType() {
return this.mediaType;
}
public void setMediaType(String mediaType) {
this.mediaType = mediaType;
if(mediaType != null){
putQueryParameter("MediaType", mediaType);
}
}
@Override
public Class<GetHistoricalInstanceReportResponse> getResponseClass() {
return GetHistoricalInstanceReportResponse.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/GetHistoricalInstanceReportResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.GetHistoricalInstanceReportResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetHistoricalInstanceReportResponse 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 Inbound inbound;
private Outbound outbound;
private Overall overall;
private Internal internal;
public Inbound getInbound() {
return this.inbound;
}
public void setInbound(Inbound inbound) {
this.inbound = inbound;
}
public Outbound getOutbound() {
return this.outbound;
}
public void setOutbound(Outbound outbound) {
this.outbound = outbound;
}
public Overall getOverall() {
return this.overall;
}
public void setOverall(Overall overall) {
this.overall = overall;
}
public Internal getInternal() {
return this.internal;
}
public void setInternal(Internal internal) {
this.internal = internal;
}
public static class Inbound {
private Float averageRingTime;
private Long callsVoicemail;
private Long maxAbandonedInIVRTime;
private Long callsHandled;
private Long callsIVRException;
private Long callsAbandonedInIVR;
private Long maxWorkTime;
private Long totalHoldTime;
private Long maxAbandonTime;
private Float averageAbandonTime;
private Long callsRinged;
private Long callsQueuingFailed;
private Long totalRingTime;
private Float abandonRate;
private Long totalTalkTime;
private Long maxAbandonedInRingTime;
private Long callsBlindTransferred;
private Float averageAbandonedInIVRTime;
private Float averageAbandonedInQueueTime;
private Long maxWaitTime;
private Float averageTalkTime;
private Long callsAttendedTransferred;
private Long totalAbandonedInIVRTime;
private Long callsQueuingOverflow;
private Long callsAbandonedInRing;
private Long totalAbandonedInRingTime;
private Long totalWorkTime;
private Float averageWaitTime;
private Float averageWorkTime;
private Long callsQueued;
private Float averageAbandonedInRingTime;
private Float satisfactionIndex;
private Long callsAbandoned;
private Long maxAbandonedInQueueTime;
private Long callsAbandonedInVoiceNavigator;
private Long totalWaitTime;
private Long maxTalkTime;
private Long maxRingTime;
private Long totalAbandonTime;
private Long callsOffered;
private Long callsQueuingTimeout;
private Float serviceLevel20;
private Long maxHoldTime;
private Long callsForwardToOutsideNumber;
private Float satisfactionRate;
private Long callsHold;
private Long satisfactionSurveysOffered;
private Float handleRate;
private Long satisfactionSurveysResponded;
private Float averageHoldTime;
private Long callsAbandonedInQueue;
private Long totalAbandonedInQueueTime;
private Long callsCausedIVRException;
private Long callsToVoicemail;
private Float serviceLevel15;
private Float serviceLevel30;
private Long totalMessagesSent;
private Long totalMessagesSentByAgent;
private Long totalMessagesSentByCustomer;
private Float averageFirstResponseTime;
private Float averageResponseTime;
private List<AccessChannelTypeDetail> accessChannelTypeDetailList;
public Float getAverageRingTime() {
return this.averageRingTime;
}
public void setAverageRingTime(Float averageRingTime) {
this.averageRingTime = averageRingTime;
}
public Long getCallsVoicemail() {
return this.callsVoicemail;
}
public void setCallsVoicemail(Long callsVoicemail) {
this.callsVoicemail = callsVoicemail;
}
public Long getMaxAbandonedInIVRTime() {
return this.maxAbandonedInIVRTime;
}
public void setMaxAbandonedInIVRTime(Long maxAbandonedInIVRTime) {
this.maxAbandonedInIVRTime = maxAbandonedInIVRTime;
}
public Long getCallsHandled() {
return this.callsHandled;
}
public void setCallsHandled(Long callsHandled) {
this.callsHandled = callsHandled;
}
public Long getCallsIVRException() {
return this.callsIVRException;
}
public void setCallsIVRException(Long callsIVRException) {
this.callsIVRException = callsIVRException;
}
public Long getCallsAbandonedInIVR() {
return this.callsAbandonedInIVR;
}
public void setCallsAbandonedInIVR(Long callsAbandonedInIVR) {
this.callsAbandonedInIVR = callsAbandonedInIVR;
}
public Long getMaxWorkTime() {
return this.maxWorkTime;
}
public void setMaxWorkTime(Long maxWorkTime) {
this.maxWorkTime = maxWorkTime;
}
public Long getTotalHoldTime() {
return this.totalHoldTime;
}
public void setTotalHoldTime(Long totalHoldTime) {
this.totalHoldTime = totalHoldTime;
}
public Long getMaxAbandonTime() {
return this.maxAbandonTime;
}
public void setMaxAbandonTime(Long maxAbandonTime) {
this.maxAbandonTime = maxAbandonTime;
}
public Float getAverageAbandonTime() {
return this.averageAbandonTime;
}
public void setAverageAbandonTime(Float averageAbandonTime) {
this.averageAbandonTime = averageAbandonTime;
}
public Long getCallsRinged() {
return this.callsRinged;
}
public void setCallsRinged(Long callsRinged) {
this.callsRinged = callsRinged;
}
public Long getCallsQueuingFailed() {
return this.callsQueuingFailed;
}
public void setCallsQueuingFailed(Long callsQueuingFailed) {
this.callsQueuingFailed = callsQueuingFailed;
}
public Long getTotalRingTime() {
return this.totalRingTime;
}
public void setTotalRingTime(Long totalRingTime) {
this.totalRingTime = totalRingTime;
}
public Float getAbandonRate() {
return this.abandonRate;
}
public void setAbandonRate(Float abandonRate) {
this.abandonRate = abandonRate;
}
public Long getTotalTalkTime() {
return this.totalTalkTime;
}
public void setTotalTalkTime(Long totalTalkTime) {
this.totalTalkTime = totalTalkTime;
}
public Long getMaxAbandonedInRingTime() {
return this.maxAbandonedInRingTime;
}
public void setMaxAbandonedInRingTime(Long maxAbandonedInRingTime) {
this.maxAbandonedInRingTime = maxAbandonedInRingTime;
}
public Long getCallsBlindTransferred() {
return this.callsBlindTransferred;
}
public void setCallsBlindTransferred(Long callsBlindTransferred) {
this.callsBlindTransferred = callsBlindTransferred;
}
public Float getAverageAbandonedInIVRTime() {
return this.averageAbandonedInIVRTime;
}
public void setAverageAbandonedInIVRTime(Float averageAbandonedInIVRTime) {
this.averageAbandonedInIVRTime = averageAbandonedInIVRTime;
}
public Float getAverageAbandonedInQueueTime() {
return this.averageAbandonedInQueueTime;
}
public void setAverageAbandonedInQueueTime(Float averageAbandonedInQueueTime) {
this.averageAbandonedInQueueTime = averageAbandonedInQueueTime;
}
public Long getMaxWaitTime() {
return this.maxWaitTime;
}
public void setMaxWaitTime(Long maxWaitTime) {
this.maxWaitTime = maxWaitTime;
}
public Float getAverageTalkTime() {
return this.averageTalkTime;
}
public void setAverageTalkTime(Float averageTalkTime) {
this.averageTalkTime = averageTalkTime;
}
public Long getCallsAttendedTransferred() {
return this.callsAttendedTransferred;
}
public void setCallsAttendedTransferred(Long callsAttendedTransferred) {
this.callsAttendedTransferred = callsAttendedTransferred;
}
public Long getTotalAbandonedInIVRTime() {
return this.totalAbandonedInIVRTime;
}
public void setTotalAbandonedInIVRTime(Long totalAbandonedInIVRTime) {
this.totalAbandonedInIVRTime = totalAbandonedInIVRTime;
}
public Long getCallsQueuingOverflow() {
return this.callsQueuingOverflow;
}
public void setCallsQueuingOverflow(Long callsQueuingOverflow) {
this.callsQueuingOverflow = callsQueuingOverflow;
}
public Long getCallsAbandonedInRing() {
return this.callsAbandonedInRing;
}
public void setCallsAbandonedInRing(Long callsAbandonedInRing) {
this.callsAbandonedInRing = callsAbandonedInRing;
}
public Long getTotalAbandonedInRingTime() {
return this.totalAbandonedInRingTime;
}
public void setTotalAbandonedInRingTime(Long totalAbandonedInRingTime) {
this.totalAbandonedInRingTime = totalAbandonedInRingTime;
}
public Long getTotalWorkTime() {
return this.totalWorkTime;
}
public void setTotalWorkTime(Long totalWorkTime) {
this.totalWorkTime = totalWorkTime;
}
public Float getAverageWaitTime() {
return this.averageWaitTime;
}
public void setAverageWaitTime(Float averageWaitTime) {
this.averageWaitTime = averageWaitTime;
}
public Float getAverageWorkTime() {
return this.averageWorkTime;
}
public void setAverageWorkTime(Float averageWorkTime) {
this.averageWorkTime = averageWorkTime;
}
public Long getCallsQueued() {
return this.callsQueued;
}
public void setCallsQueued(Long callsQueued) {
this.callsQueued = callsQueued;
}
public Float getAverageAbandonedInRingTime() {
return this.averageAbandonedInRingTime;
}
public void setAverageAbandonedInRingTime(Float averageAbandonedInRingTime) {
this.averageAbandonedInRingTime = averageAbandonedInRingTime;
}
public Float getSatisfactionIndex() {
return this.satisfactionIndex;
}
public void setSatisfactionIndex(Float satisfactionIndex) {
this.satisfactionIndex = satisfactionIndex;
}
public Long getCallsAbandoned() {
return this.callsAbandoned;
}
public void setCallsAbandoned(Long callsAbandoned) {
this.callsAbandoned = callsAbandoned;
}
public Long getMaxAbandonedInQueueTime() {
return this.maxAbandonedInQueueTime;
}
public void setMaxAbandonedInQueueTime(Long maxAbandonedInQueueTime) {
this.maxAbandonedInQueueTime = maxAbandonedInQueueTime;
}
public Long getCallsAbandonedInVoiceNavigator() {
return this.callsAbandonedInVoiceNavigator;
}
public void setCallsAbandonedInVoiceNavigator(Long callsAbandonedInVoiceNavigator) {
this.callsAbandonedInVoiceNavigator = callsAbandonedInVoiceNavigator;
}
public Long getTotalWaitTime() {
return this.totalWaitTime;
}
public void setTotalWaitTime(Long totalWaitTime) {
this.totalWaitTime = totalWaitTime;
}
public Long getMaxTalkTime() {
return this.maxTalkTime;
}
public void setMaxTalkTime(Long maxTalkTime) {
this.maxTalkTime = maxTalkTime;
}
public Long getMaxRingTime() {
return this.maxRingTime;
}
public void setMaxRingTime(Long maxRingTime) {
this.maxRingTime = maxRingTime;
}
public Long getTotalAbandonTime() {
return this.totalAbandonTime;
}
public void setTotalAbandonTime(Long totalAbandonTime) {
this.totalAbandonTime = totalAbandonTime;
}
public Long getCallsOffered() {
return this.callsOffered;
}
public void setCallsOffered(Long callsOffered) {
this.callsOffered = callsOffered;
}
public Long getCallsQueuingTimeout() {
return this.callsQueuingTimeout;
}
public void setCallsQueuingTimeout(Long callsQueuingTimeout) {
this.callsQueuingTimeout = callsQueuingTimeout;
}
public Float getServiceLevel20() {
return this.serviceLevel20;
}
public void setServiceLevel20(Float serviceLevel20) {
this.serviceLevel20 = serviceLevel20;
}
public Long getMaxHoldTime() {
return this.maxHoldTime;
}
public void setMaxHoldTime(Long maxHoldTime) {
this.maxHoldTime = maxHoldTime;
}
public Long getCallsForwardToOutsideNumber() {
return this.callsForwardToOutsideNumber;
}
public void setCallsForwardToOutsideNumber(Long callsForwardToOutsideNumber) {
this.callsForwardToOutsideNumber = callsForwardToOutsideNumber;
}
public Float getSatisfactionRate() {
return this.satisfactionRate;
}
public void setSatisfactionRate(Float satisfactionRate) {
this.satisfactionRate = satisfactionRate;
}
public Long getCallsHold() {
return this.callsHold;
}
public void setCallsHold(Long callsHold) {
this.callsHold = callsHold;
}
public Long getSatisfactionSurveysOffered() {
return this.satisfactionSurveysOffered;
}
public void setSatisfactionSurveysOffered(Long satisfactionSurveysOffered) {
this.satisfactionSurveysOffered = satisfactionSurveysOffered;
}
public Float getHandleRate() {
return this.handleRate;
}
public void setHandleRate(Float handleRate) {
this.handleRate = handleRate;
}
public Long getSatisfactionSurveysResponded() {
return this.satisfactionSurveysResponded;
}
public void setSatisfactionSurveysResponded(Long satisfactionSurveysResponded) {
this.satisfactionSurveysResponded = satisfactionSurveysResponded;
}
public Float getAverageHoldTime() {
return this.averageHoldTime;
}
public void setAverageHoldTime(Float averageHoldTime) {
this.averageHoldTime = averageHoldTime;
}
public Long getCallsAbandonedInQueue() {
return this.callsAbandonedInQueue;
}
public void setCallsAbandonedInQueue(Long callsAbandonedInQueue) {
this.callsAbandonedInQueue = callsAbandonedInQueue;
}
public Long getTotalAbandonedInQueueTime() {
return this.totalAbandonedInQueueTime;
}
public void setTotalAbandonedInQueueTime(Long totalAbandonedInQueueTime) {
this.totalAbandonedInQueueTime = totalAbandonedInQueueTime;
}
public Long getCallsCausedIVRException() {
return this.callsCausedIVRException;
}
public void setCallsCausedIVRException(Long callsCausedIVRException) {
this.callsCausedIVRException = callsCausedIVRException;
}
public Long getCallsToVoicemail() {
return this.callsToVoicemail;
}
public void setCallsToVoicemail(Long callsToVoicemail) {
this.callsToVoicemail = callsToVoicemail;
}
public Float getServiceLevel15() {
return this.serviceLevel15;
}
public void setServiceLevel15(Float serviceLevel15) {
this.serviceLevel15 = serviceLevel15;
}
public Float getServiceLevel30() {
return this.serviceLevel30;
}
public void setServiceLevel30(Float serviceLevel30) {
this.serviceLevel30 = serviceLevel30;
}
public Long getTotalMessagesSent() {
return this.totalMessagesSent;
}
public void setTotalMessagesSent(Long totalMessagesSent) {
this.totalMessagesSent = totalMessagesSent;
}
public Long getTotalMessagesSentByAgent() {
return this.totalMessagesSentByAgent;
}
public void setTotalMessagesSentByAgent(Long totalMessagesSentByAgent) {
this.totalMessagesSentByAgent = totalMessagesSentByAgent;
}
public Long getTotalMessagesSentByCustomer() {
return this.totalMessagesSentByCustomer;
}
public void setTotalMessagesSentByCustomer(Long totalMessagesSentByCustomer) {
this.totalMessagesSentByCustomer = totalMessagesSentByCustomer;
}
public Float getAverageFirstResponseTime() {
return this.averageFirstResponseTime;
}
public void setAverageFirstResponseTime(Float averageFirstResponseTime) {
this.averageFirstResponseTime = averageFirstResponseTime;
}
public Float getAverageResponseTime() {
return this.averageResponseTime;
}
public void setAverageResponseTime(Float averageResponseTime) {
this.averageResponseTime = averageResponseTime;
}
public List<AccessChannelTypeDetail> getAccessChannelTypeDetailList() {
return this.accessChannelTypeDetailList;
}
public void setAccessChannelTypeDetailList(List<AccessChannelTypeDetail> accessChannelTypeDetailList) {
this.accessChannelTypeDetailList = accessChannelTypeDetailList;
}
public static class AccessChannelTypeDetail {
private String accessChannelType;
private Long callsOffered;
public String getAccessChannelType() {
return this.accessChannelType;
}
public void setAccessChannelType(String accessChannelType) {
this.accessChannelType = accessChannelType;
}
public Long getCallsOffered() {
return this.callsOffered;
}
public void setCallsOffered(Long callsOffered) {
this.callsOffered = callsOffered;
}
}
}
public static class Outbound {
private Float averageRingTime;
private Long callsDialed;
private Long callsAnswered;
private Long totalWorkTime;
private Long maxWorkTime;
private Long totalDialingTime;
private Long totalHoldTime;
private Float averageWorkTime;
private Float satisfactionIndex;
private Long callsRinged;
private Long totalRingTime;
private Long maxTalkTime;
private Long maxRingTime;
private Long totalTalkTime;
private Long maxDialingTime;
private Long callsBlindTransferred;
private Float answerRate;
private Long maxHoldTime;
private Float averageTalkTime;
private Float satisfactionRate;
private Long callsAttendedTransferred;
private Integer callsHold;
private Long satisfactionSurveysOffered;
private Long satisfactionSurveysResponded;
private Float averageHoldTime;
private Float averageDialingTime;
public Float getAverageRingTime() {
return this.averageRingTime;
}
public void setAverageRingTime(Float averageRingTime) {
this.averageRingTime = averageRingTime;
}
public Long getCallsDialed() {
return this.callsDialed;
}
public void setCallsDialed(Long callsDialed) {
this.callsDialed = callsDialed;
}
public Long getCallsAnswered() {
return this.callsAnswered;
}
public void setCallsAnswered(Long callsAnswered) {
this.callsAnswered = callsAnswered;
}
public Long getTotalWorkTime() {
return this.totalWorkTime;
}
public void setTotalWorkTime(Long totalWorkTime) {
this.totalWorkTime = totalWorkTime;
}
public Long getMaxWorkTime() {
return this.maxWorkTime;
}
public void setMaxWorkTime(Long maxWorkTime) {
this.maxWorkTime = maxWorkTime;
}
public Long getTotalDialingTime() {
return this.totalDialingTime;
}
public void setTotalDialingTime(Long totalDialingTime) {
this.totalDialingTime = totalDialingTime;
}
public Long getTotalHoldTime() {
return this.totalHoldTime;
}
public void setTotalHoldTime(Long totalHoldTime) {
this.totalHoldTime = totalHoldTime;
}
public Float getAverageWorkTime() {
return this.averageWorkTime;
}
public void setAverageWorkTime(Float averageWorkTime) {
this.averageWorkTime = averageWorkTime;
}
public Float getSatisfactionIndex() {
return this.satisfactionIndex;
}
public void setSatisfactionIndex(Float satisfactionIndex) {
this.satisfactionIndex = satisfactionIndex;
}
public Long getCallsRinged() {
return this.callsRinged;
}
public void setCallsRinged(Long callsRinged) {
this.callsRinged = callsRinged;
}
public Long getTotalRingTime() {
return this.totalRingTime;
}
public void setTotalRingTime(Long totalRingTime) {
this.totalRingTime = totalRingTime;
}
public Long getMaxTalkTime() {
return this.maxTalkTime;
}
public void setMaxTalkTime(Long maxTalkTime) {
this.maxTalkTime = maxTalkTime;
}
public Long getMaxRingTime() {
return this.maxRingTime;
}
public void setMaxRingTime(Long maxRingTime) {
this.maxRingTime = maxRingTime;
}
public Long getTotalTalkTime() {
return this.totalTalkTime;
}
public void setTotalTalkTime(Long totalTalkTime) {
this.totalTalkTime = totalTalkTime;
}
public Long getMaxDialingTime() {
return this.maxDialingTime;
}
public void setMaxDialingTime(Long maxDialingTime) {
this.maxDialingTime = maxDialingTime;
}
public Long getCallsBlindTransferred() {
return this.callsBlindTransferred;
}
public void setCallsBlindTransferred(Long callsBlindTransferred) {
this.callsBlindTransferred = callsBlindTransferred;
}
public Float getAnswerRate() {
return this.answerRate;
}
public void setAnswerRate(Float answerRate) {
this.answerRate = answerRate;
}
public Long getMaxHoldTime() {
return this.maxHoldTime;
}
public void setMaxHoldTime(Long maxHoldTime) {
this.maxHoldTime = maxHoldTime;
}
public Float getAverageTalkTime() {
return this.averageTalkTime;
}
public void setAverageTalkTime(Float averageTalkTime) {
this.averageTalkTime = averageTalkTime;
}
public Float getSatisfactionRate() {
return this.satisfactionRate;
}
public void setSatisfactionRate(Float satisfactionRate) {
this.satisfactionRate = satisfactionRate;
}
public Long getCallsAttendedTransferred() {
return this.callsAttendedTransferred;
}
public void setCallsAttendedTransferred(Long callsAttendedTransferred) {
this.callsAttendedTransferred = callsAttendedTransferred;
}
public Integer getCallsHold() {
return this.callsHold;
}
public void setCallsHold(Integer callsHold) {
this.callsHold = callsHold;
}
public Long getSatisfactionSurveysOffered() {
return this.satisfactionSurveysOffered;
}
public void setSatisfactionSurveysOffered(Long satisfactionSurveysOffered) {
this.satisfactionSurveysOffered = satisfactionSurveysOffered;
}
public Long getSatisfactionSurveysResponded() {
return this.satisfactionSurveysResponded;
}
public void setSatisfactionSurveysResponded(Long satisfactionSurveysResponded) {
this.satisfactionSurveysResponded = satisfactionSurveysResponded;
}
public Float getAverageHoldTime() {
return this.averageHoldTime;
}
public void setAverageHoldTime(Float averageHoldTime) {
this.averageHoldTime = averageHoldTime;
}
public Float getAverageDialingTime() {
return this.averageDialingTime;
}
public void setAverageDialingTime(Float averageDialingTime) {
this.averageDialingTime = averageDialingTime;
}
}
public static class Overall {
private Long totalTalkTime;
private Long totalLoggedInTime;
private Float occupancyRate;
private Long totalWorkTime;
private Long maxHoldTime;
private Long maxWorkTime;
private Float averageBreakTime;
private Long totalHoldTime;
private Float satisfactionRate;
private Long maxBreakTime;
private Float averageWorkTime;
private Float averageTalkTime;
private Float satisfactionIndex;
private Long satisfactionSurveysOffered;
private Long satisfactionSurveysResponded;
private Long maxReadyTime;
private Float averageReadyTime;
private Float averageHoldTime;
private Long totalReadyTime;
private Long totalBreakTime;
private Long maxTalkTime;
private Long totalCalls;
private Long maxLoggedInAgents;
public Long getTotalTalkTime() {
return this.totalTalkTime;
}
public void setTotalTalkTime(Long totalTalkTime) {
this.totalTalkTime = totalTalkTime;
}
public Long getTotalLoggedInTime() {
return this.totalLoggedInTime;
}
public void setTotalLoggedInTime(Long totalLoggedInTime) {
this.totalLoggedInTime = totalLoggedInTime;
}
public Float getOccupancyRate() {
return this.occupancyRate;
}
public void setOccupancyRate(Float occupancyRate) {
this.occupancyRate = occupancyRate;
}
public Long getTotalWorkTime() {
return this.totalWorkTime;
}
public void setTotalWorkTime(Long totalWorkTime) {
this.totalWorkTime = totalWorkTime;
}
public Long getMaxHoldTime() {
return this.maxHoldTime;
}
public void setMaxHoldTime(Long maxHoldTime) {
this.maxHoldTime = maxHoldTime;
}
public Long getMaxWorkTime() {
return this.maxWorkTime;
}
public void setMaxWorkTime(Long maxWorkTime) {
this.maxWorkTime = maxWorkTime;
}
public Float getAverageBreakTime() {
return this.averageBreakTime;
}
public void setAverageBreakTime(Float averageBreakTime) {
this.averageBreakTime = averageBreakTime;
}
public Long getTotalHoldTime() {
return this.totalHoldTime;
}
public void setTotalHoldTime(Long totalHoldTime) {
this.totalHoldTime = totalHoldTime;
}
public Float getSatisfactionRate() {
return this.satisfactionRate;
}
public void setSatisfactionRate(Float satisfactionRate) {
this.satisfactionRate = satisfactionRate;
}
public Long getMaxBreakTime() {
return this.maxBreakTime;
}
public void setMaxBreakTime(Long maxBreakTime) {
this.maxBreakTime = maxBreakTime;
}
public Float getAverageWorkTime() {
return this.averageWorkTime;
}
public void setAverageWorkTime(Float averageWorkTime) {
this.averageWorkTime = averageWorkTime;
}
public Float getAverageTalkTime() {
return this.averageTalkTime;
}
public void setAverageTalkTime(Float averageTalkTime) {
this.averageTalkTime = averageTalkTime;
}
public Float getSatisfactionIndex() {
return this.satisfactionIndex;
}
public void setSatisfactionIndex(Float satisfactionIndex) {
this.satisfactionIndex = satisfactionIndex;
}
public Long getSatisfactionSurveysOffered() {
return this.satisfactionSurveysOffered;
}
public void setSatisfactionSurveysOffered(Long satisfactionSurveysOffered) {
this.satisfactionSurveysOffered = satisfactionSurveysOffered;
}
public Long getSatisfactionSurveysResponded() {
return this.satisfactionSurveysResponded;
}
public void setSatisfactionSurveysResponded(Long satisfactionSurveysResponded) {
this.satisfactionSurveysResponded = satisfactionSurveysResponded;
}
public Long getMaxReadyTime() {
return this.maxReadyTime;
}
public void setMaxReadyTime(Long maxReadyTime) {
this.maxReadyTime = maxReadyTime;
}
public Float getAverageReadyTime() {
return this.averageReadyTime;
}
public void setAverageReadyTime(Float averageReadyTime) {
this.averageReadyTime = averageReadyTime;
}
public Float getAverageHoldTime() {
return this.averageHoldTime;
}
public void setAverageHoldTime(Float averageHoldTime) {
this.averageHoldTime = averageHoldTime;
}
public Long getTotalReadyTime() {
return this.totalReadyTime;
}
public void setTotalReadyTime(Long totalReadyTime) {
this.totalReadyTime = totalReadyTime;
}
public Long getTotalBreakTime() {
return this.totalBreakTime;
}
public void setTotalBreakTime(Long totalBreakTime) {
this.totalBreakTime = totalBreakTime;
}
public Long getMaxTalkTime() {
return this.maxTalkTime;
}
public void setMaxTalkTime(Long maxTalkTime) {
this.maxTalkTime = maxTalkTime;
}
public Long getTotalCalls() {
return this.totalCalls;
}
public void setTotalCalls(Long totalCalls) {
this.totalCalls = totalCalls;
}
public Long getMaxLoggedInAgents() {
return this.maxLoggedInAgents;
}
public void setMaxLoggedInAgents(Long maxLoggedInAgents) {
this.maxLoggedInAgents = maxLoggedInAgents;
}
}
public static class Internal {
private Long callsDialed;
private Long callsAnswered;
public Long getCallsDialed() {
return this.callsDialed;
}
public void setCallsDialed(Long callsDialed) {
this.callsDialed = callsDialed;
}
public Long getCallsAnswered() {
return this.callsAnswered;
}
public void setCallsAnswered(Long callsAnswered) {
this.callsAnswered = callsAnswered;
}
}
}
@Override
public GetHistoricalInstanceReportResponse getInstance(UnmarshallerContext context) {
return GetHistoricalInstanceReportResponseUnmarshaller.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/GetInstanceRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 GetInstanceRequest extends RpcAcsRequest<GetInstanceResponse> {
private String instanceId;
public GetInstanceRequest() {
super("CCC", "2020-07-01", "GetInstance", "CCC");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<GetInstanceResponse> getResponseClass() {
return GetInstanceResponse.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/GetInstanceResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.GetInstanceResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetInstanceResponse 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 status;
private String consoleUrl;
private String description;
private String aliyunUid;
private String name;
private String domainName;
private String id;
private List<User> adminList;
private List<PhoneNumber> numberList;
public String getStatus() {
return this.status;
}
public void setStatus(String status) {
this.status = status;
}
public String getConsoleUrl() {
return this.consoleUrl;
}
public void setConsoleUrl(String consoleUrl) {
this.consoleUrl = consoleUrl;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public String getAliyunUid() {
return this.aliyunUid;
}
public void setAliyunUid(String aliyunUid) {
this.aliyunUid = aliyunUid;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
public String getDomainName() {
return this.domainName;
}
public void setDomainName(String domainName) {
this.domainName = domainName;
}
public String getId() {
return this.id;
}
public void setId(String id) {
this.id = id;
}
public List<User> getAdminList() {
return this.adminList;
}
public void setAdminList(List<User> adminList) {
this.adminList = adminList;
}
public List<PhoneNumber> getNumberList() {
return this.numberList;
}
public void setNumberList(List<PhoneNumber> numberList) {
this.numberList = numberList;
}
public static class User {
private String displayName;
private String extension;
private String loginName;
private String email;
private String workMode;
private String mobile;
private String userId;
private String roleName;
private String instanceId;
private String roleId;
public String getDisplayName() {
return this.displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
public String getExtension() {
return this.extension;
}
public void setExtension(String extension) {
this.extension = extension;
}
public String getLoginName() {
return this.loginName;
}
public void setLoginName(String loginName) {
this.loginName = loginName;
}
public String getEmail() {
return this.email;
}
public void setEmail(String email) {
this.email = email;
}
public String getWorkMode() {
return this.workMode;
}
public void setWorkMode(String workMode) {
this.workMode = workMode;
}
public String getMobile() {
return this.mobile;
}
public void setMobile(String mobile) {
this.mobile = mobile;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getRoleName() {
return this.roleName;
}
public void setRoleName(String roleName) {
this.roleName = roleName;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getRoleId() {
return this.roleId;
}
public void setRoleId(String roleId) {
this.roleId = roleId;
}
}
public static class PhoneNumber {
private Boolean active;
private String userId;
private String number;
private String city;
private String instanceId;
private String usage;
private String contactFlowId;
private String province;
private List<SkillGroup> skillGroups;
public Boolean getActive() {
return this.active;
}
public void setActive(Boolean active) {
this.active = active;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
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 getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getUsage() {
return this.usage;
}
public void setUsage(String usage) {
this.usage = usage;
}
public String getContactFlowId() {
return this.contactFlowId;
}
public void setContactFlowId(String contactFlowId) {
this.contactFlowId = contactFlowId;
}
public String getProvince() {
return this.province;
}
public void setProvince(String province) {
this.province = province;
}
public List<SkillGroup> getSkillGroups() {
return this.skillGroups;
}
public void setSkillGroups(List<SkillGroup> skillGroups) {
this.skillGroups = skillGroups;
}
public static class SkillGroup {
private String displayName;
private String description;
private Integer phoneNumberCount;
private String skillGroupId;
private Integer userCount;
private String instanceId;
private String name;
public String getDisplayName() {
return this.displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
public String getDescription() {
return this.description;
}
public void setDescription(String description) {
this.description = description;
}
public Integer getPhoneNumberCount() {
return this.phoneNumberCount;
}
public void setPhoneNumberCount(Integer phoneNumberCount) {
this.phoneNumberCount = phoneNumberCount;
}
public String getSkillGroupId() {
return this.skillGroupId;
}
public void setSkillGroupId(String skillGroupId) {
this.skillGroupId = skillGroupId;
}
public Integer getUserCount() {
return this.userCount;
}
public void setUserCount(Integer userCount) {
this.userCount = userCount;
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
}
public String getName() {
return this.name;
}
public void setName(String name) {
this.name = name;
}
}
}
}
@Override
public GetInstanceResponse getInstance(UnmarshallerContext context) {
return GetInstanceResponseUnmarshaller.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/GetInstanceTrendingReportRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 GetInstanceTrendingReportRequest extends RpcAcsRequest<GetInstanceTrendingReportResponse> {
private Long endTime;
private Long startTime;
private String instanceId;
private String mediaType;
public GetInstanceTrendingReportRequest() {
super("CCC", "2020-07-01", "GetInstanceTrendingReport", "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 Long getEndTime() {
return this.endTime;
}
public void setEndTime(Long endTime) {
this.endTime = endTime;
if(endTime != null){
putQueryParameter("EndTime", endTime.toString());
}
}
public Long getStartTime() {
return this.startTime;
}
public void setStartTime(Long startTime) {
this.startTime = startTime;
if(startTime != null){
putQueryParameter("StartTime", startTime.toString());
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
public String getMediaType() {
return this.mediaType;
}
public void setMediaType(String mediaType) {
this.mediaType = mediaType;
if(mediaType != null){
putQueryParameter("MediaType", mediaType);
}
}
@Override
public Class<GetInstanceTrendingReportResponse> getResponseClass() {
return GetInstanceTrendingReportResponse.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/GetInstanceTrendingReportResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.GetInstanceTrendingReportResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetInstanceTrendingReportResponse 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 List<InboundItem> inbound;
private List<OutboundItem> outbound;
private List<OverallItem> overall;
public List<InboundItem> getInbound() {
return this.inbound;
}
public void setInbound(List<InboundItem> inbound) {
this.inbound = inbound;
}
public List<OutboundItem> getOutbound() {
return this.outbound;
}
public void setOutbound(List<OutboundItem> outbound) {
this.outbound = outbound;
}
public List<OverallItem> getOverall() {
return this.overall;
}
public void setOverall(List<OverallItem> overall) {
this.overall = overall;
}
public static class InboundItem {
private Long statsTime;
private Long callsQueued;
private Long callsAbandonedInRing;
private Long callsHandled;
private Long totalCalls;
private Long callsAbandonedInIVR;
private Long callsAbandonedInQueue;
public Long getStatsTime() {
return this.statsTime;
}
public void setStatsTime(Long statsTime) {
this.statsTime = statsTime;
}
public Long getCallsQueued() {
return this.callsQueued;
}
public void setCallsQueued(Long callsQueued) {
this.callsQueued = callsQueued;
}
public Long getCallsAbandonedInRing() {
return this.callsAbandonedInRing;
}
public void setCallsAbandonedInRing(Long callsAbandonedInRing) {
this.callsAbandonedInRing = callsAbandonedInRing;
}
public Long getCallsHandled() {
return this.callsHandled;
}
public void setCallsHandled(Long callsHandled) {
this.callsHandled = callsHandled;
}
public Long getTotalCalls() {
return this.totalCalls;
}
public void setTotalCalls(Long totalCalls) {
this.totalCalls = totalCalls;
}
public Long getCallsAbandonedInIVR() {
return this.callsAbandonedInIVR;
}
public void setCallsAbandonedInIVR(Long callsAbandonedInIVR) {
this.callsAbandonedInIVR = callsAbandonedInIVR;
}
public Long getCallsAbandonedInQueue() {
return this.callsAbandonedInQueue;
}
public void setCallsAbandonedInQueue(Long callsAbandonedInQueue) {
this.callsAbandonedInQueue = callsAbandonedInQueue;
}
}
public static class OutboundItem {
private Long statsTime;
private Long callsAnswered;
private Long totalCalls;
public Long getStatsTime() {
return this.statsTime;
}
public void setStatsTime(Long statsTime) {
this.statsTime = statsTime;
}
public Long getCallsAnswered() {
return this.callsAnswered;
}
public void setCallsAnswered(Long callsAnswered) {
this.callsAnswered = callsAnswered;
}
public Long getTotalCalls() {
return this.totalCalls;
}
public void setTotalCalls(Long totalCalls) {
this.totalCalls = totalCalls;
}
}
public static class OverallItem {
private Long statsTime;
private Long maxLoggedInAgents;
public Long getStatsTime() {
return this.statsTime;
}
public void setStatsTime(Long statsTime) {
this.statsTime = statsTime;
}
public Long getMaxLoggedInAgents() {
return this.maxLoggedInAgents;
}
public void setMaxLoggedInAgents(Long maxLoggedInAgents) {
this.maxLoggedInAgents = maxLoggedInAgents;
}
}
}
@Override
public GetInstanceTrendingReportResponse getInstance(UnmarshallerContext context) {
return GetInstanceTrendingReportResponseUnmarshaller.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/GetLoginDetailsRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 GetLoginDetailsRequest extends RpcAcsRequest<GetLoginDetailsResponse> {
private String chatDeviceId;
private String userId;
private String instanceId;
public GetLoginDetailsRequest() {
super("CCC", "2020-07-01", "GetLoginDetails", "CCC");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getChatDeviceId() {
return this.chatDeviceId;
}
public void setChatDeviceId(String chatDeviceId) {
this.chatDeviceId = chatDeviceId;
if(chatDeviceId != null){
putQueryParameter("ChatDeviceId", chatDeviceId);
}
}
public String 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<GetLoginDetailsResponse> getResponseClass() {
return GetLoginDetailsResponse.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/GetLoginDetailsResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.GetLoginDetailsResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetLoginDetailsResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private List<String> params;
private Data data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public List<String> getParams() {
return this.params;
}
public void setParams(List<String> params) {
this.params = params;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String displayName;
private String extension;
private String signature;
private String sipServerUrl;
private String deviceId;
private String agentServerUrl;
private String userId;
private String userKey;
private String workMode;
private String userKey2;
private String signature2;
private String deviceExt;
private String deviceState;
private String chatUserId;
private String chatDeviceId;
private String chatLoginToken;
private String chatAppId;
private String chatAppKey;
private String chatServerUrl;
private String nickname;
private String avatarUrl;
public String getDisplayName() {
return this.displayName;
}
public void setDisplayName(String displayName) {
this.displayName = displayName;
}
public String getExtension() {
return this.extension;
}
public void setExtension(String extension) {
this.extension = extension;
}
public String getSignature() {
return this.signature;
}
public void setSignature(String signature) {
this.signature = signature;
}
public String getSipServerUrl() {
return this.sipServerUrl;
}
public void setSipServerUrl(String sipServerUrl) {
this.sipServerUrl = sipServerUrl;
}
public String getDeviceId() {
return this.deviceId;
}
public void setDeviceId(String deviceId) {
this.deviceId = deviceId;
}
public String getAgentServerUrl() {
return this.agentServerUrl;
}
public void setAgentServerUrl(String agentServerUrl) {
this.agentServerUrl = agentServerUrl;
}
public String getUserId() {
return this.userId;
}
public void setUserId(String userId) {
this.userId = userId;
}
public String getUserKey() {
return this.userKey;
}
public void setUserKey(String userKey) {
this.userKey = userKey;
}
public String getWorkMode() {
return this.workMode;
}
public void setWorkMode(String workMode) {
this.workMode = workMode;
}
public String getUserKey2() {
return this.userKey2;
}
public void setUserKey2(String userKey2) {
this.userKey2 = userKey2;
}
public String getSignature2() {
return this.signature2;
}
public void setSignature2(String signature2) {
this.signature2 = signature2;
}
public String getDeviceExt() {
return this.deviceExt;
}
public void setDeviceExt(String deviceExt) {
this.deviceExt = deviceExt;
}
public String getDeviceState() {
return this.deviceState;
}
public void setDeviceState(String deviceState) {
this.deviceState = deviceState;
}
public String getChatUserId() {
return this.chatUserId;
}
public void setChatUserId(String chatUserId) {
this.chatUserId = chatUserId;
}
public String getChatDeviceId() {
return this.chatDeviceId;
}
public void setChatDeviceId(String chatDeviceId) {
this.chatDeviceId = chatDeviceId;
}
public String getChatLoginToken() {
return this.chatLoginToken;
}
public void setChatLoginToken(String chatLoginToken) {
this.chatLoginToken = chatLoginToken;
}
public String getChatAppId() {
return this.chatAppId;
}
public void setChatAppId(String chatAppId) {
this.chatAppId = chatAppId;
}
public String getChatAppKey() {
return this.chatAppKey;
}
public void setChatAppKey(String chatAppKey) {
this.chatAppKey = chatAppKey;
}
public String getChatServerUrl() {
return this.chatServerUrl;
}
public void setChatServerUrl(String chatServerUrl) {
this.chatServerUrl = chatServerUrl;
}
public String getNickname() {
return this.nickname;
}
public void setNickname(String nickname) {
this.nickname = nickname;
}
public String getAvatarUrl() {
return this.avatarUrl;
}
public void setAvatarUrl(String avatarUrl) {
this.avatarUrl = avatarUrl;
}
}
@Override
public GetLoginDetailsResponse getInstance(UnmarshallerContext context) {
return GetLoginDetailsResponseUnmarshaller.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/GetMonoRecordingRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 GetMonoRecordingRequest extends RpcAcsRequest<GetMonoRecordingResponse> {
private Long expireSeconds;
private String contactId;
private String instanceId;
public GetMonoRecordingRequest() {
super("CCC", "2020-07-01", "GetMonoRecording", "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 Long getExpireSeconds() {
return this.expireSeconds;
}
public void setExpireSeconds(Long expireSeconds) {
this.expireSeconds = expireSeconds;
if(expireSeconds != null){
putQueryParameter("ExpireSeconds", expireSeconds.toString());
}
}
public String getContactId() {
return this.contactId;
}
public void setContactId(String contactId) {
this.contactId = contactId;
if(contactId != null){
putQueryParameter("ContactId", contactId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<GetMonoRecordingResponse> getResponseClass() {
return GetMonoRecordingResponse.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/GetMonoRecordingResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.GetMonoRecordingResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetMonoRecordingResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private Data data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String fileUrl;
private String fileName;
private Long duration;
public String getFileUrl() {
return this.fileUrl;
}
public void setFileUrl(String fileUrl) {
this.fileUrl = fileUrl;
}
public String getFileName() {
return this.fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
public Long getDuration() {
return this.duration;
}
public void setDuration(Long duration) {
this.duration = duration;
}
}
@Override
public GetMonoRecordingResponse getInstance(UnmarshallerContext context) {
return GetMonoRecordingResponseUnmarshaller.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/GetMultiChannelRecordingRequest.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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 GetMultiChannelRecordingRequest extends RpcAcsRequest<GetMultiChannelRecordingResponse> {
private String contactId;
private String instanceId;
public GetMultiChannelRecordingRequest() {
super("CCC", "2020-07-01", "GetMultiChannelRecording", "CCC");
setMethod(MethodType.POST);
try {
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
} catch (Exception e) {}
}
public String getContactId() {
return this.contactId;
}
public void setContactId(String contactId) {
this.contactId = contactId;
if(contactId != null){
putQueryParameter("ContactId", contactId);
}
}
public String getInstanceId() {
return this.instanceId;
}
public void setInstanceId(String instanceId) {
this.instanceId = instanceId;
if(instanceId != null){
putQueryParameter("InstanceId", instanceId);
}
}
@Override
public Class<GetMultiChannelRecordingResponse> getResponseClass() {
return GetMultiChannelRecordingResponse.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/GetMultiChannelRecordingResponse.java
|
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS 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.GetMultiChannelRecordingResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;
/**
* @author auto create
* @version
*/
public class GetMultiChannelRecordingResponse extends AcsResponse {
private String code;
private Integer httpStatusCode;
private String message;
private String requestId;
private Data data;
public String getCode() {
return this.code;
}
public void setCode(String code) {
this.code = code;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public void setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
}
public String getMessage() {
return this.message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRequestId() {
return this.requestId;
}
public void setRequestId(String requestId) {
this.requestId = requestId;
}
public Data getData() {
return this.data;
}
public void setData(Data data) {
this.data = data;
}
public static class Data {
private String fileUrl;
private String fileName;
public String getFileUrl() {
return this.fileUrl;
}
public void setFileUrl(String fileUrl) {
this.fileUrl = fileUrl;
}
public String getFileName() {
return this.fileName;
}
public void setFileName(String fileName) {
this.fileName = fileName;
}
}
@Override
public GetMultiChannelRecordingResponse getInstance(UnmarshallerContext context) {
return GetMultiChannelRecordingResponseUnmarshaller.unmarshall(this, context);
}
@Override
public boolean checkShowJsonItemName() {
return false;
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.