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

com.aliyun.r_kvstore20150101.models.ModifyActiveOperationTaskResponseBody Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class ModifyActiveOperationTaskResponseBody extends TeaModel {
    /**
     * 

The ID of the O\&M task. IDs are separated by commas (,).

*/ @NameInMap("Ids") public String ids; /** *

The ID of the request.

*/ @NameInMap("RequestId") public String requestId; public static ModifyActiveOperationTaskResponseBody build(java.util.Map map) throws Exception { ModifyActiveOperationTaskResponseBody self = new ModifyActiveOperationTaskResponseBody(); return TeaModel.build(map, self); } public ModifyActiveOperationTaskResponseBody setIds(String ids) { this.ids = ids; return this; } public String getIds() { return this.ids; } public ModifyActiveOperationTaskResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy