com.aliyun.drds20171016.models.ModifyReadOnlyAccountPasswordResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of drds20171016 Show documentation
Show all versions of drds20171016 Show documentation
Alibaba Cloud Distributed Relational Database Service (20171016) SDK for Java
// 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