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

com.aliyun.polardb20170801.models.ModifyPendingMaintenanceActionResponseBody Maven / Gradle / Ivy

There is a newer version: 5.2.2
Show newest version
// 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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy