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

com.aliyun.sdk.service.cbn20170912.models.CreateFlowlogResponseBody 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 CreateFlowlogResponseBody} extends {@link TeaModel}
 *
 * 

CreateFlowlogResponseBody

*/ public class CreateFlowlogResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("FlowLogId") private String flowLogId; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("Success") private String success; private CreateFlowlogResponseBody(Builder builder) { this.flowLogId = builder.flowLogId; this.requestId = builder.requestId; this.success = builder.success; } public static Builder builder() { return new Builder(); } public static CreateFlowlogResponseBody create() { return builder().build(); } /** * @return flowLogId */ public String getFlowLogId() { return this.flowLogId; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return success */ public String getSuccess() { return this.success; } public static final class Builder { private String flowLogId; private String requestId; private String success; /** * The ID of the flow log. */ public Builder flowLogId(String flowLogId) { this.flowLogId = flowLogId; return this; } /** * The ID of the request. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Indicates whether the call is successful. Valid values: *

* * * **true**: yes * * **false**: no */ public Builder success(String success) { this.success = success; return this; } public CreateFlowlogResponseBody build() { return new CreateFlowlogResponseBody(this); } } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy