com.aliyun.eds_aic20230930.models.RunCommandResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of eds_aic20230930 Show documentation
Show all versions of eds_aic20230930 Show documentation
Alibaba Cloud eds-aic (20230930) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.eds_aic20230930.models;
import com.aliyun.tea.*;
public class RunCommandResponseBody extends TeaModel {
/**
* example:
* t-gov2ujrk32v4****
*/
@NameInMap("InvokeId")
public String invokeId;
/**
* example:
* 440D7342-5E7C-B2DB-D0B4EAC2BDF1****
*/
@NameInMap("RequestId")
public String requestId;
public static RunCommandResponseBody build(java.util.Map map) throws Exception {
RunCommandResponseBody self = new RunCommandResponseBody();
return TeaModel.build(map, self);
}
public RunCommandResponseBody setInvokeId(String invokeId) {
this.invokeId = invokeId;
return this;
}
public String getInvokeId() {
return this.invokeId;
}
public RunCommandResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}