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

com.aliyun.sdk.service.alidns20150109.models.DescribeDnsGtmAvailableAlertGroupResponseBody Maven / Gradle / Ivy

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

import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * {@link DescribeDnsGtmAvailableAlertGroupResponseBody} extends {@link TeaModel}
 *
 * 

DescribeDnsGtmAvailableAlertGroupResponseBody

*/ public class DescribeDnsGtmAvailableAlertGroupResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("AvailableAlertGroup") private String availableAlertGroup; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private DescribeDnsGtmAvailableAlertGroupResponseBody(Builder builder) { this.availableAlertGroup = builder.availableAlertGroup; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeDnsGtmAvailableAlertGroupResponseBody create() { return builder().build(); } /** * @return availableAlertGroup */ public String getAvailableAlertGroup() { return this.availableAlertGroup; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private String availableAlertGroup; private String requestId; /** * The returned available alert groups. */ public Builder availableAlertGroup(String availableAlertGroup) { this.availableAlertGroup = availableAlertGroup; return this; } /** * The ID of the request. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public DescribeDnsGtmAvailableAlertGroupResponseBody build() { return new DescribeDnsGtmAvailableAlertGroupResponseBody(this); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy