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

com.aliyun.sas20181203.models.CreateSuspEventNoteResponseBody Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class CreateSuspEventNoteResponseBody extends TeaModel {
    /**
     * 

The status code returned. The status code **200** indicates that the request was successful. Other status codes indicate that the request failed. You can identify the cause of the failure based on the status code.

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

The HTTP status code returned.

*/ @NameInMap("HttpStatusCode") public Integer httpStatusCode; /** *

The error message returned.

*/ @NameInMap("Message") public String message; /** *

The ID of the request, which is used to locate and troubleshoot issues.

*/ @NameInMap("RequestId") public String requestId; /** *

Indicates whether exceptions are handled. Valid values:

*
*

* **true**: yes

*

* **false**: no

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy