com.aliyun.ecd20200930.models.ModifyDesktopHostNameResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ecd20200930 Show documentation
Show all versions of ecd20200930 Show documentation
Alibaba Cloud ecd (20200930) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ecd20200930.models;
import com.aliyun.tea.*;
public class ModifyDesktopHostNameResponseBody extends TeaModel {
@NameInMap("RequestId")
public String requestId;
public static ModifyDesktopHostNameResponseBody build(java.util.Map map) throws Exception {
ModifyDesktopHostNameResponseBody self = new ModifyDesktopHostNameResponseBody();
return TeaModel.build(map, self);
}
public ModifyDesktopHostNameResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}