com.aliyun.sdk.service.cs20151215.models.Addon Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-cs20151215 Show documentation
Show all versions of alibabacloud-cs20151215 Show documentation
Alibaba Cloud CS (20151215) Async SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cs20151215.models;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link Addon} extends {@link TeaModel}
*
* Addon
*/
public class Addon extends TeaModel {
@com.aliyun.core.annotation.NameInMap("config")
private String config;
@com.aliyun.core.annotation.NameInMap("disabled")
private Boolean disabled;
@com.aliyun.core.annotation.NameInMap("name")
private String name;
@com.aliyun.core.annotation.NameInMap("version")
private String version;
private Addon(Builder builder) {
this.config = builder.config;
this.disabled = builder.disabled;
this.name = builder.name;
this.version = builder.version;
}
public static Builder builder() {
return new Builder();
}
public static Addon create() {
return builder().build();
}
/**
* @return config
*/
public String getConfig() {
return this.config;
}
/**
* @return disabled
*/
public Boolean getDisabled() {
return this.disabled;
}
/**
* @return name
*/
public String getName() {
return this.name;
}
/**
* @return version
*/
public String getVersion() {
return this.version;
}
public static final class Builder {
private String config;
private Boolean disabled;
private String name;
private String version;
/**
* config.
*/
public Builder config(String config) {
this.config = config;
return this;
}
/**
* disabled.
*/
public Builder disabled(Boolean disabled) {
this.disabled = disabled;
return this;
}
/**
* name.
*/
public Builder name(String name) {
this.name = name;
return this;
}
/**
* version.
*/
public Builder version(String version) {
this.version = version;
return this;
}
public Addon build() {
return new Addon(this);
}
}
}