All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.arms20190808.models.DelAuthTokenResponseBody Maven / Gradle / Ivy

Go to download

Alibaba Cloud Application Real-Time Monitoring Service (20190808) SDK for Java

There is a newer version: 11.0.0
Show newest version
// 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