Skip to content

Commit

Permalink
CCS SDK Auto Released By shenshi,Version:1.0.1
Browse files Browse the repository at this point in the history
发布日志:
1, Update Dependency
  • Loading branch information
Qingtang-SDK committed Mar 18, 2019
1 parent 4c314ae commit dec5bd7
Show file tree
Hide file tree
Showing 17 changed files with 705 additions and 8 deletions.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-ccs/ChangeLog.txt
@@ -1,3 +1,6 @@
2019-03-18 Version: 1.0.1
1, Update Dependency

2018-09-25 Version: 1.0.0
1, Add GetHotlineRecord and QueryHotlineRecord interface, version 1.0.0

4 changes: 2 additions & 2 deletions aliyun-java-sdk-ccs/pom.xml 100755 → 100644
Expand Up @@ -3,7 +3,7 @@
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-ccs</artifactId>
<packaging>jar</packaging>
<version>1.0.0</version>
<version>1.0.1</version>
<name>aliyun-java-sdk-ccs</name>
<url>http://www.aliyun.com</url>
<description>Aliyun Open API SDK for Java
Expand Down Expand Up @@ -31,7 +31,7 @@ http://www.aliyun.com</description>
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-core</artifactId>
<optional>true</optional>
<version>3.7.1</version>
<version>[4.3.2,5.0.0)</version>
</dependency>
</dependencies>
<licenses>
Expand Down
@@ -0,0 +1,101 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.aliyuncs.ccs.model.v20171001;

import com.aliyuncs.RpcAcsRequest;
import com.aliyuncs.http.MethodType;

/**
* @author auto create
* @version
*/
public class CreateTicketRequest extends RpcAcsRequest<CreateTicketResponse> {

public CreateTicketRequest() {
super("Ccs", "2017-10-01", "CreateTicket", "ccs");
setMethod(MethodType.POST);
}

private String creatorId;

private String description;

private String type;

private String ccsInstanceId;

private String customFields;

public String getCreatorId() {
return this.creatorId;
}

public void setCreatorId(String creatorId) {
this.creatorId = creatorId;
if(creatorId != null){
putQueryParameter("CreatorId", creatorId);
}
}

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 getCcsInstanceId() {
return this.ccsInstanceId;
}

public void setCcsInstanceId(String ccsInstanceId) {
this.ccsInstanceId = ccsInstanceId;
if(ccsInstanceId != null){
putQueryParameter("CcsInstanceId", ccsInstanceId);
}
}

public String getCustomFields() {
return this.customFields;
}

public void setCustomFields(String customFields) {
this.customFields = customFields;
if(customFields != null){
putQueryParameter("CustomFields", customFields);
}
}

@Override
public Class<CreateTicketResponse> getResponseClass() {
return CreateTicketResponse.class;
}

}
@@ -0,0 +1,51 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.aliyuncs.ccs.model.v20171001;

import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccs.transform.v20171001.CreateTicketResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;

/**
* @author auto create
* @version
*/
public class CreateTicketResponse extends AcsResponse {

private String requestId;

private String id;

public String getRequestId() {
return this.requestId;
}

public void setRequestId(String requestId) {
this.requestId = requestId;
}

public String getId() {
return this.id;
}

public void setId(String id) {
this.id = id;
}

@Override
public CreateTicketResponse getInstance(UnmarshallerContext context) {
return CreateTicketResponseUnmarshaller.unmarshall(this, context);
}
}
Empty file.
Empty file.
@@ -0,0 +1,99 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.aliyuncs.ccs.model.v20171001;

import com.aliyuncs.RpcAcsRequest;

/**
* @author auto create
* @version
*/
public class ProceedTicketRequest extends RpcAcsRequest<ProceedTicketResponse> {

public ProceedTicketRequest() {
super("Ccs", "2017-10-01", "ProceedTicket", "ccs");
}

private String memo;

private String id;

private String ccsInstanceId;

private String operation;

private String operatorId;

public String getMemo() {
return this.memo;
}

public void setMemo(String memo) {
this.memo = memo;
if(memo != null){
putQueryParameter("Memo", memo);
}
}

public String getId() {
return this.id;
}

public void setId(String id) {
this.id = id;
if(id != null){
putQueryParameter("Id", id);
}
}

public String getCcsInstanceId() {
return this.ccsInstanceId;
}

public void setCcsInstanceId(String ccsInstanceId) {
this.ccsInstanceId = ccsInstanceId;
if(ccsInstanceId != null){
putQueryParameter("CcsInstanceId", ccsInstanceId);
}
}

public String getOperation() {
return this.operation;
}

public void setOperation(String operation) {
this.operation = operation;
if(operation != null){
putQueryParameter("Operation", operation);
}
}

public String getOperatorId() {
return this.operatorId;
}

public void setOperatorId(String operatorId) {
this.operatorId = operatorId;
if(operatorId != null){
putQueryParameter("OperatorId", operatorId);
}
}

@Override
public Class<ProceedTicketResponse> getResponseClass() {
return ProceedTicketResponse.class;
}

}
@@ -0,0 +1,41 @@
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package com.aliyuncs.ccs.model.v20171001;

import com.aliyuncs.AcsResponse;
import com.aliyuncs.ccs.transform.v20171001.ProceedTicketResponseUnmarshaller;
import com.aliyuncs.transform.UnmarshallerContext;

/**
* @author auto create
* @version
*/
public class ProceedTicketResponse extends AcsResponse {

private String requestId;

public String getRequestId() {
return this.requestId;
}

public void setRequestId(String requestId) {
this.requestId = requestId;
}

@Override
public ProceedTicketResponse getInstance(UnmarshallerContext context) {
return ProceedTicketResponseUnmarshaller.unmarshall(this, context);
}
}
Empty file.
Expand Up @@ -27,7 +27,7 @@ public class QueryHotlineRecordResponse extends AcsResponse {

private String requestId;

private Integer totalCount;
private Long totalCount;

private Integer pageNum;

Expand All @@ -43,11 +43,11 @@ public void setRequestId(String requestId) {
this.requestId = requestId;
}

public Integer getTotalCount() {
public Long getTotalCount() {
return this.totalCount;
}

public void setTotalCount(Integer totalCount) {
public void setTotalCount(Long totalCount) {
this.totalCount = totalCount;
}

Expand Down

0 comments on commit dec5bd7

Please sign in to comment.