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

com.aliyun.sdk.service.cloudapi20160714.models.DescribeAppAttributesResponseBody Maven / Gradle / Ivy

There is a newer version: 3.0.24
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.cloudapi20160714.models;

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

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

DescribeAppAttributesResponseBody

*/ public class DescribeAppAttributesResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("Apps") private Apps apps; @com.aliyun.core.annotation.NameInMap("PageNumber") private Integer pageNumber; @com.aliyun.core.annotation.NameInMap("PageSize") private Integer pageSize; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("TotalCount") private Integer totalCount; private DescribeAppAttributesResponseBody(Builder builder) { this.apps = builder.apps; this.pageNumber = builder.pageNumber; this.pageSize = builder.pageSize; this.requestId = builder.requestId; this.totalCount = builder.totalCount; } public static Builder builder() { return new Builder(); } public static DescribeAppAttributesResponseBody create() { return builder().build(); } /** * @return apps */ public Apps getApps() { return this.apps; } /** * @return pageNumber */ public Integer getPageNumber() { return this.pageNumber; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalCount */ public Integer getTotalCount() { return this.totalCount; } public static final class Builder { private Apps apps; private Integer pageNumber; private Integer pageSize; private String requestId; private Integer totalCount; /** * The returned application information. It is an array that consists of AppAttribute data. */ public Builder apps(Apps apps) { this.apps = apps; return this; } /** * The page number of the returned page. */ public Builder pageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } /** * The number of entries returned per page. */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * The ID of the request. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * The total number of returned entries. */ public Builder totalCount(Integer totalCount) { this.totalCount = totalCount; return this; } public DescribeAppAttributesResponseBody build() { return new DescribeAppAttributesResponseBody(this); } } public static class TagInfo extends TeaModel { @com.aliyun.core.annotation.NameInMap("Key") private String key; @com.aliyun.core.annotation.NameInMap("Value") private String value; private TagInfo(Builder builder) { this.key = builder.key; this.value = builder.value; } public static Builder builder() { return new Builder(); } public static TagInfo create() { return builder().build(); } /** * @return key */ public String getKey() { return this.key; } /** * @return value */ public String getValue() { return this.value; } public static final class Builder { private String key; private String value; /** * The tag key. */ public Builder key(String key) { this.key = key; return this; } /** * The tag value. */ public Builder value(String value) { this.value = value; return this; } public TagInfo build() { return new TagInfo(this); } } } public static class Tags extends TeaModel { @com.aliyun.core.annotation.NameInMap("TagInfo") private java.util.List < TagInfo> tagInfo; private Tags(Builder builder) { this.tagInfo = builder.tagInfo; } public static Builder builder() { return new Builder(); } public static Tags create() { return builder().build(); } /** * @return tagInfo */ public java.util.List < TagInfo> getTagInfo() { return this.tagInfo; } public static final class Builder { private java.util.List < TagInfo> tagInfo; /** * TagInfo. */ public Builder tagInfo(java.util.List < TagInfo> tagInfo) { this.tagInfo = tagInfo; return this; } public Tags build() { return new Tags(this); } } } public static class AppAttribute extends TeaModel { @com.aliyun.core.annotation.NameInMap("AppId") private Long appId; @com.aliyun.core.annotation.NameInMap("AppName") private String appName; @com.aliyun.core.annotation.NameInMap("CreatedTime") private String createdTime; @com.aliyun.core.annotation.NameInMap("Description") private String description; @com.aliyun.core.annotation.NameInMap("Extend") private String extend; @com.aliyun.core.annotation.NameInMap("ModifiedTime") private String modifiedTime; @com.aliyun.core.annotation.NameInMap("Tags") private Tags tags; private AppAttribute(Builder builder) { this.appId = builder.appId; this.appName = builder.appName; this.createdTime = builder.createdTime; this.description = builder.description; this.extend = builder.extend; this.modifiedTime = builder.modifiedTime; this.tags = builder.tags; } public static Builder builder() { return new Builder(); } public static AppAttribute 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 extend */ public String getExtend() { return this.extend; } /** * @return modifiedTime */ public String getModifiedTime() { return this.modifiedTime; } /** * @return tags */ public Tags getTags() { return this.tags; } public static final class Builder { private Long appId; private String appName; private String createdTime; private String description; private String extend; private String modifiedTime; private Tags tags; /** * The application ID. */ public Builder appId(Long appId) { this.appId = appId; return this; } /** * The application name. */ public Builder appName(String appName) { this.appName = appName; return this; } /** * The creation time (UTC) of the application. */ public Builder createdTime(String createdTime) { this.createdTime = createdTime; return this; } /** * The application description. */ public Builder description(String description) { this.description = description; return this; } /** * The extended information. */ public Builder extend(String extend) { this.extend = extend; return this; } /** * The modification time (UTC) of the application. */ public Builder modifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } /** * The tags. */ public Builder tags(Tags tags) { this.tags = tags; return this; } public AppAttribute build() { return new AppAttribute(this); } } } public static class Apps extends TeaModel { @com.aliyun.core.annotation.NameInMap("AppAttribute") private java.util.List < AppAttribute> appAttribute; private Apps(Builder builder) { this.appAttribute = builder.appAttribute; } public static Builder builder() { return new Builder(); } public static Apps create() { return builder().build(); } /** * @return appAttribute */ public java.util.List < AppAttribute> getAppAttribute() { return this.appAttribute; } public static final class Builder { private java.util.List < AppAttribute> appAttribute; /** * AppAttribute. */ public Builder appAttribute(java.util.List < AppAttribute> appAttribute) { this.appAttribute = appAttribute; return this; } public Apps build() { return new Apps(this); } } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy