com.aliyun.ice20201109.models.StartAIAgentInstanceResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ice20201109 Show documentation
Show all versions of ice20201109 Show documentation
Alibaba Cloud ICE (20201109) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ice20201109.models;
import com.aliyun.tea.*;
public class StartAIAgentInstanceResponseBody extends TeaModel {
/**
* example:
* 39f8e0bc005e4f309379701645f4****
*/
@NameInMap("InstanceId")
public String instanceId;
/**
* example:
* 7B117AF5-2A16-412C-B127-FA6175ED1AD0
*/
@NameInMap("RequestId")
public String requestId;
public static StartAIAgentInstanceResponseBody build(java.util.Map map) throws Exception {
StartAIAgentInstanceResponseBody self = new StartAIAgentInstanceResponseBody();
return TeaModel.build(map, self);
}
public StartAIAgentInstanceResponseBody setInstanceId(String instanceId) {
this.instanceId = instanceId;
return this;
}
public String getInstanceId() {
return this.instanceId;
}
public StartAIAgentInstanceResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}