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

com.aliyun.apig20240327.models.AddGatewaySecurityGroupRuleResponseBody Maven / Gradle / Ivy

There is a newer version: 3.0.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.apig20240327.models;

import com.aliyun.tea.*;

public class AddGatewaySecurityGroupRuleResponseBody extends TeaModel {
    /**
     * 

Response status code.

* * example: *

Ok

*/ @NameInMap("code") public String code; /** *

Response message.

* * example: *

success

*/ @NameInMap("message") public String message; /** *

Request ID.

* * example: *

2A6E90D5-A711-54F4-A489-E33C2021EDDF

*/ @NameInMap("requestId") public String requestId; public static AddGatewaySecurityGroupRuleResponseBody build(java.util.Map map) throws Exception { AddGatewaySecurityGroupRuleResponseBody self = new AddGatewaySecurityGroupRuleResponseBody(); return TeaModel.build(map, self); } public AddGatewaySecurityGroupRuleResponseBody setCode(String code) { this.code = code; return this; } public String getCode() { return this.code; } public AddGatewaySecurityGroupRuleResponseBody setMessage(String message) { this.message = message; return this; } public String getMessage() { return this.message; } public AddGatewaySecurityGroupRuleResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy