com.aliyun.dyplsapi20170525.models.DeleteAxgGroupResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dyplsapi20170525 Show documentation
Show all versions of dyplsapi20170525 Show documentation
Alibaba Cloud Dyplsapi (20170525) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dyplsapi20170525.models;
import com.aliyun.tea.*;
public class DeleteAxgGroupResponseBody extends TeaModel {
/**
* example:
* OK
*/
@NameInMap("Code")
public String code;
/**
* example:
* SUCCESS
*/
@NameInMap("Message")
public String message;
/**
* example:
* 9297B722-A016-43FB-B51A-E54050D9369D
*/
@NameInMap("RequestId")
public String requestId;
public static DeleteAxgGroupResponseBody build(java.util.Map map) throws Exception {
DeleteAxgGroupResponseBody self = new DeleteAxgGroupResponseBody();
return TeaModel.build(map, self);
}
public DeleteAxgGroupResponseBody setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public DeleteAxgGroupResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public DeleteAxgGroupResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy