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

com.aliyun.drds20171016.models.ModifyReadOnlyAccountPasswordResponseBody Maven / Gradle / Ivy

Go to download

Alibaba Cloud Distributed Relational Database Service (20171016) SDK for Java

There is a newer version: 1.0.1
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.drds20171016.models;

import com.aliyun.tea.*;

public class ModifyReadOnlyAccountPasswordResponseBody extends TeaModel {
    @NameInMap("RequestId")
    public String requestId;

    @NameInMap("Success")
    public Boolean success;

    public static ModifyReadOnlyAccountPasswordResponseBody build(java.util.Map map) throws Exception {
        ModifyReadOnlyAccountPasswordResponseBody self = new ModifyReadOnlyAccountPasswordResponseBody();
        return TeaModel.build(map, self);
    }

    public ModifyReadOnlyAccountPasswordResponseBody setRequestId(String requestId) {
        this.requestId = requestId;
        return this;
    }
    public String getRequestId() {
        return this.requestId;
    }

    public ModifyReadOnlyAccountPasswordResponseBody setSuccess(Boolean success) {
        this.success = success;
        return this;
    }
    public Boolean getSuccess() {
        return this.success;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy