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

com.aliyun.sdk.service.cloud_siem20220616.models.BindAccountResponseBody Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cloud_siem20220616.models;

import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;

/**
 * {@link BindAccountResponseBody} extends {@link TeaModel}
 *
 * 

BindAccountResponseBody

*/ public class BindAccountResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("Data") private Data data; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private BindAccountResponseBody(Builder builder) { this.data = builder.data; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static BindAccountResponseBody create() { return builder().build(); } /** * @return data */ public Data getData() { return this.data; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private Data data; private String requestId; /** * The data returned. */ public Builder data(Data data) { this.data = data; return this; } /** * The request ID. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public BindAccountResponseBody build() { return new BindAccountResponseBody(this); } } public static class Data extends TeaModel { @com.aliyun.core.annotation.NameInMap("Count") private Integer count; private Data(Builder builder) { this.count = builder.count; } public static Builder builder() { return new Builder(); } public static Data create() { return builder().build(); } /** * @return count */ public Integer getCount() { return this.count; } public static final class Builder { private Integer count; /** * The number of the cloud accounts that are added to the threat analysis feature. */ public Builder count(Integer count) { this.count = count; return this; } public Data build() { return new Data(this); } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy