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

com.aliyun.iot20180120.models.DetachParserDataSourceResponseBody Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iot20180120.models;

import com.aliyun.tea.*;

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

iot.system.SystemException

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

E4C0FF92-2A86-41DB-92D3-73B60310D25E

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

true

*/ @NameInMap("Success") public Boolean success; public static DetachParserDataSourceResponseBody build(java.util.Map map) throws Exception { DetachParserDataSourceResponseBody self = new DetachParserDataSourceResponseBody(); return TeaModel.build(map, self); } public DetachParserDataSourceResponseBody setCode(String code) { this.code = code; return this; } public String getCode() { return this.code; } public DetachParserDataSourceResponseBody setErrorMessage(String errorMessage) { this.errorMessage = errorMessage; return this; } public String getErrorMessage() { return this.errorMessage; } public DetachParserDataSourceResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DetachParserDataSourceResponseBody setSuccess(Boolean success) { this.success = success; return this; } public Boolean getSuccess() { return this.success; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy