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

com.aliyun.dataphin_public20230630.models.UpdateTenantMemberResponseBody Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

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

OK

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

200

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

successful

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

75DD06F8-1661-5A6E-B0A6-7E23133BDC60

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

true

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy