
com.aliyun.arms20190808.models.DelAuthTokenResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of arms20190808 Show documentation
Show all versions of arms20190808 Show documentation
Alibaba Cloud Application Real-Time Monitoring Service (20190808) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.arms20190808.models;
import com.aliyun.tea.*;
public class DelAuthTokenResponseBody extends TeaModel {
/**
* Indicates whether the call was successful.
*
* example:
* success
*/
@NameInMap("Data")
public String data;
/**
* The request ID.
*
* example:
* A5EC8221-08F2-4C95-9AF1-49FD998C647A
*/
@NameInMap("RequestId")
public String requestId;
public static DelAuthTokenResponseBody build(java.util.Map map) throws Exception {
DelAuthTokenResponseBody self = new DelAuthTokenResponseBody();
return TeaModel.build(map, self);
}
public DelAuthTokenResponseBody setData(String data) {
this.data = data;
return this;
}
public String getData() {
return this.data;
}
public DelAuthTokenResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy