com.aliyun.sdk.service.apig20240327.models.HttpApiBackendMatchCondition 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 HttpApiBackendMatchCondition} extends {@link TeaModel}
*
* HttpApiBackendMatchCondition
*/
public class HttpApiBackendMatchCondition extends TeaModel {
@com.aliyun.core.annotation.NameInMap("key")
private String key;
@com.aliyun.core.annotation.NameInMap("operator")
private String operator;
@com.aliyun.core.annotation.NameInMap("type")
private String type;
@com.aliyun.core.annotation.NameInMap("value")
private String value;
private HttpApiBackendMatchCondition(Builder builder) {
this.key = builder.key;
this.operator = builder.operator;
this.type = builder.type;
this.value = builder.value;
}
public static Builder builder() {
return new Builder();
}
public static HttpApiBackendMatchCondition create() {
return builder().build();
}
/**
* @return key
*/
public String getKey() {
return this.key;
}
/**
* @return operator
*/
public String getOperator() {
return this.operator;
}
/**
* @return type
*/
public String getType() {
return this.type;
}
/**
* @return value
*/
public String getValue() {
return this.value;
}
public static final class Builder {
private String key;
private String operator;
private String type;
private String value;
/**
* key.
*/
public Builder key(String key) {
this.key = key;
return this;
}
/**
* operator.
*/
public Builder operator(String operator) {
this.operator = operator;
return this;
}
/**
* type.
*/
public Builder type(String type) {
this.type = type;
return this;
}
/**
* value.
*/
public Builder value(String value) {
this.value = value;
return this;
}
public HttpApiBackendMatchCondition build() {
return new HttpApiBackendMatchCondition(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy