com.aliyun.sdk.service.apig20240327.models.AddGatewaySecurityGroupRuleResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-apig20240327 Show documentation
Show all versions of alibabacloud-apig20240327 Show documentation
Alibaba Cloud APIG (20240327) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.apig20240327.models;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link AddGatewaySecurityGroupRuleResponseBody} extends {@link TeaModel}
*
* AddGatewaySecurityGroupRuleResponseBody
*/
public class AddGatewaySecurityGroupRuleResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("code")
private String code;
@com.aliyun.core.annotation.NameInMap("message")
private String message;
@com.aliyun.core.annotation.NameInMap("requestId")
private String requestId;
private AddGatewaySecurityGroupRuleResponseBody(Builder builder) {
this.code = builder.code;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static AddGatewaySecurityGroupRuleResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String code;
private String message;
private String requestId;
/**
* Response status code.
*
* example:
* Ok
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Response message.
*
* example:
* success
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* Request ID.
*
* example:
* 2A6E90D5-A711-54F4-A489-E33C2021EDDF
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public AddGatewaySecurityGroupRuleResponseBody build() {
return new AddGatewaySecurityGroupRuleResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy