com.aliyun.polardb20170801.models.ModifyPendingMaintenanceActionResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of polardb20170801 Show documentation
Show all versions of polardb20170801 Show documentation
Alibaba Cloud ApsaraDB for POLARDB (20170801) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.polardb20170801.models;
import com.aliyun.tea.*;
public class ModifyPendingMaintenanceActionResponseBody extends TeaModel {
/**
* The ID of the task.
*
* example:
* 111111
*/
@NameInMap("Ids")
public String ids;
/**
* The ID of the request.
*
* example:
* 93061E17-B56A-4324-BC95-D0FFD2******
*/
@NameInMap("RequestId")
public String requestId;
public static ModifyPendingMaintenanceActionResponseBody build(java.util.Map map) throws Exception {
ModifyPendingMaintenanceActionResponseBody self = new ModifyPendingMaintenanceActionResponseBody();
return TeaModel.build(map, self);
}
public ModifyPendingMaintenanceActionResponseBody setIds(String ids) {
this.ids = ids;
return this;
}
public String getIds() {
return this.ids;
}
public ModifyPendingMaintenanceActionResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}