com.aliyun.ens20171110.models.DeleteKeyPairsResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ens20171110.models;
import com.aliyun.tea.*;
public class DeleteKeyPairsResponseBody extends TeaModel {
/**
* The request ID.
*
* example:
* 473469C7-AA6F-4DC5-B3DB-A3DC0DE3C83E
*/
@NameInMap("RequestId")
public String requestId;
public static DeleteKeyPairsResponseBody build(java.util.Map map) throws Exception {
DeleteKeyPairsResponseBody self = new DeleteKeyPairsResponseBody();
return TeaModel.build(map, self);
}
public DeleteKeyPairsResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy