com.aliyun.sdk.service.cloudapi20160714.models.DescribeAppSecurityResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-cloudapi20160714 Show documentation
Show all versions of alibabacloud-cloudapi20160714 Show documentation
Alibaba Cloud CloudAPI (20160714) Async SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cloudapi20160714.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DescribeAppSecurityResponseBody} extends {@link TeaModel}
*
* DescribeAppSecurityResponseBody
*/
public class DescribeAppSecurityResponseBody extends TeaModel {
@NameInMap("AppCode")
private String appCode;
@NameInMap("AppKey")
private String appKey;
@NameInMap("AppSecret")
private String appSecret;
@NameInMap("CreatedTime")
private String createdTime;
@NameInMap("ModifiedTime")
private String modifiedTime;
@NameInMap("RequestId")
private String requestId;
private DescribeAppSecurityResponseBody(Builder builder) {
this.appCode = builder.appCode;
this.appKey = builder.appKey;
this.appSecret = builder.appSecret;
this.createdTime = builder.createdTime;
this.modifiedTime = builder.modifiedTime;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeAppSecurityResponseBody create() {
return builder().build();
}
/**
* @return appCode
*/
public String getAppCode() {
return this.appCode;
}
/**
* @return appKey
*/
public String getAppKey() {
return this.appKey;
}
/**
* @return appSecret
*/
public String getAppSecret() {
return this.appSecret;
}
/**
* @return createdTime
*/
public String getCreatedTime() {
return this.createdTime;
}
/**
* @return modifiedTime
*/
public String getModifiedTime() {
return this.modifiedTime;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String appCode;
private String appKey;
private String appSecret;
private String createdTime;
private String modifiedTime;
private String requestId;
/**
* AppCode.
*/
public Builder appCode(String appCode) {
this.appCode = appCode;
return this;
}
/**
* AppKey.
*/
public Builder appKey(String appKey) {
this.appKey = appKey;
return this;
}
/**
* AppSecret.
*/
public Builder appSecret(String appSecret) {
this.appSecret = appSecret;
return this;
}
/**
* CreatedTime.
*/
public Builder createdTime(String createdTime) {
this.createdTime = createdTime;
return this;
}
/**
* ModifiedTime.
*/
public Builder modifiedTime(String modifiedTime) {
this.modifiedTime = modifiedTime;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public DescribeAppSecurityResponseBody build() {
return new DescribeAppSecurityResponseBody(this);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy