
com.aliyun.sdk.service.cbn20170912.models.ActiveFlowLogResponseBody Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cbn20170912.models;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ActiveFlowLogResponseBody} extends {@link TeaModel}
*
* ActiveFlowLogResponseBody
*/
public class ActiveFlowLogResponseBody extends TeaModel {
@com.aliyun.core.annotation.NameInMap("RequestId")
private String requestId;
@com.aliyun.core.annotation.NameInMap("Success")
private String success;
private ActiveFlowLogResponseBody(Builder builder) {
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static ActiveFlowLogResponseBody create() {
return builder().build();
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public String getSuccess() {
return this.success;
}
public static final class Builder {
private String requestId;
private String success;
/**
* The ID of the request.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* Indicates whether the call is successful.
*
*
* * **true**: yes
* * **false**: no
*/
public Builder success(String success) {
this.success = success;
return this;
}
public ActiveFlowLogResponseBody build() {
return new ActiveFlowLogResponseBody(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy