com.aliyun.sdk.service.apig20240327.models.HttpApiDomainInfo 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 HttpApiDomainInfo} extends {@link TeaModel}
*
* HttpApiDomainInfo
*/
public class HttpApiDomainInfo extends TeaModel {
@com.aliyun.core.annotation.NameInMap("domainId")
private String domainId;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
@com.aliyun.core.annotation.NameInMap("protocol")
private String protocol;
private HttpApiDomainInfo(Builder builder) {
this.domainId = builder.domainId;
this.name = builder.name;
this.protocol = builder.protocol;
}
public static Builder builder() {
return new Builder();
}
public static HttpApiDomainInfo create() {
return builder().build();
}
/**
* @return domainId
*/
public String getDomainId() {
return this.domainId;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return protocol
*/
public String getProtocol() {
return this.protocol;
}
public static final class Builder {
private String domainId;
private String name;
private String protocol;
/**
* domainId.
*/
public Builder domainId(String domainId) {
this.domainId = domainId;
return this;
}
/**
* name.
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* protocol.
*/
public Builder protocol(String protocol) {
this.protocol = protocol;
return this;
}
public HttpApiDomainInfo build() {
return new HttpApiDomainInfo(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy