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

com.aliyun.sdk.service.cloudapi20160714.models.ValidateVpcConnectivityResponseBody Maven / Gradle / Ivy

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

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

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

ValidateVpcConnectivityResponseBody

*/ public class ValidateVpcConnectivityResponseBody extends TeaModel { @NameInMap("Connected") private Boolean connected; @NameInMap("IpType") private String ipType; @NameInMap("RequestId") private String requestId; private ValidateVpcConnectivityResponseBody(Builder builder) { this.connected = builder.connected; this.ipType = builder.ipType; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static ValidateVpcConnectivityResponseBody create() { return builder().build(); } /** * @return connected */ public Boolean getConnected() { return this.connected; } /** * @return ipType */ public String getIpType() { return this.ipType; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private Boolean connected; private String ipType; private String requestId; /** * Connected. */ public Builder connected(Boolean connected) { this.connected = connected; return this; } /** * IpType. */ public Builder ipType(String ipType) { this.ipType = ipType; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public ValidateVpcConnectivityResponseBody build() { return new ValidateVpcConnectivityResponseBody(this); } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy