com.aliyun.sdk.service.cloudapi20160701.models.DescribeAppResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-cloudapi20160701 Show documentation
Show all versions of alibabacloud-cloudapi20160701 Show documentation
Alibaba Cloud CloudAPI (20160701) Async SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cloudapi20160701.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link DescribeAppResponseBody} extends {@link TeaModel}
*
* DescribeAppResponseBody
*/
public class DescribeAppResponseBody extends TeaModel {
@NameInMap("AppId")
private Long appId;
@NameInMap("AppName")
private String appName;
@NameInMap("CreatedTime")
private String createdTime;
@NameInMap("Description")
private String description;
@NameInMap("ModifiedTime")
private String modifiedTime;
@NameInMap("RequestId")
private String requestId;
private DescribeAppResponseBody(Builder builder) {
this.appId = builder.appId;
this.appName = builder.appName;
this.createdTime = builder.createdTime;
this.description = builder.description;
this.modifiedTime = builder.modifiedTime;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static DescribeAppResponseBody create() {
return builder().build();
}
/**
* @return appId
*/
public Long getAppId() {
return this.appId;
}
/**
* @return appName
*/
public String getAppName() {
return this.appName;
}
/**
* @return createdTime
*/
public String getCreatedTime() {
return this.createdTime;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return modifiedTime
*/
public String getModifiedTime() {
return this.modifiedTime;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private Long appId;
private String appName;
private String createdTime;
private String description;
private String modifiedTime;
private String requestId;
/**
* AppId.
*/
public Builder appId(Long appId) {
this.appId = appId;
return this;
}
/**
* AppName.
*/
public Builder appName(String appName) {
this.appName = appName;
return this;
}
/**
* CreatedTime.
*/
public Builder createdTime(String createdTime) {
this.createdTime = createdTime;
return this;
}
/**
* Description.
*/
public Builder description(String description) {
this.description = description;
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 DescribeAppResponseBody build() {
return new DescribeAppResponseBody(this);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy