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

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

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

import com.aliyun.tea.*;

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

OK

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

200

*/ @NameInMap("HttpStatusCode") public Integer httpStatusCode; @NameInMap("Message") public String message; @NameInMap("Params") public java.util.List params; /** * example: *

678F7002-CA01-4ABF-A112-585AFBDF3A3B

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy