All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.ccc20200701.models.RejectChatResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ccc20200701.models;

import com.aliyun.tea.*;

public class RejectChatResponseBody extends TeaModel {
    /**
     * example:
     * 

OK

*/ @NameInMap("Code") public String code; /** * example: *

200

*/ @NameInMap("HttpStatusCode") public Integer httpStatusCode; @NameInMap("Message") public String message; /** * example: *

B59382D2-5755-4C6D-861F-FA2AAD8F89F7

*/ @NameInMap("RequestId") public String requestId; public static RejectChatResponseBody build(java.util.Map map) throws Exception { RejectChatResponseBody self = new RejectChatResponseBody(); return TeaModel.build(map, self); } public RejectChatResponseBody setCode(String code) { this.code = code; return this; } public String getCode() { return this.code; } public RejectChatResponseBody setHttpStatusCode(Integer httpStatusCode) { this.httpStatusCode = httpStatusCode; return this; } public Integer getHttpStatusCode() { return this.httpStatusCode; } public RejectChatResponseBody setMessage(String message) { this.message = message; return this; } public String getMessage() { return this.message; } public RejectChatResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy