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

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

There is a newer version: 3.0.23
Show newest version
// 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 DescribeApisByBackendResponseBody} extends {@link TeaModel}
 *
 * 

DescribeApisByBackendResponseBody

*/ public class DescribeApisByBackendResponseBody extends TeaModel { @NameInMap("ApiInfoList") private ApiInfoList apiInfoList; @NameInMap("PageNumber") private Integer pageNumber; @NameInMap("PageSize") private Integer pageSize; @NameInMap("RequestId") private String requestId; @NameInMap("TotalCount") private Integer totalCount; private DescribeApisByBackendResponseBody(Builder builder) { this.apiInfoList = builder.apiInfoList; 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 DescribeApisByBackendResponseBody create() { return builder().build(); } /** * @return apiInfoList */ public ApiInfoList getApiInfoList() { return this.apiInfoList; } /** * @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 ApiInfoList apiInfoList; private Integer pageNumber; private Integer pageSize; private String requestId; private Integer totalCount; /** * ApiInfoList. */ public Builder apiInfoList(ApiInfoList apiInfoList) { this.apiInfoList = apiInfoList; return this; } /** * PageNumber. */ public Builder pageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * TotalCount. */ public Builder totalCount(Integer totalCount) { this.totalCount = totalCount; return this; } public DescribeApisByBackendResponseBody build() { return new DescribeApisByBackendResponseBody(this); } } public static class ApiInfo extends TeaModel { @NameInMap("ApiId") private String apiId; @NameInMap("ApiName") private String apiName; @NameInMap("Description") private String description; @NameInMap("GroupId") private String groupId; @NameInMap("GroupName") private String groupName; @NameInMap("Method") private String method; @NameInMap("Path") private String path; private ApiInfo(Builder builder) { this.apiId = builder.apiId; this.apiName = builder.apiName; this.description = builder.description; this.groupId = builder.groupId; this.groupName = builder.groupName; this.method = builder.method; this.path = builder.path; } public static Builder builder() { return new Builder(); } public static ApiInfo create() { return builder().build(); } /** * @return apiId */ public String getApiId() { return this.apiId; } /** * @return apiName */ public String getApiName() { return this.apiName; } /** * @return description */ public String getDescription() { return this.description; } /** * @return groupId */ public String getGroupId() { return this.groupId; } /** * @return groupName */ public String getGroupName() { return this.groupName; } /** * @return method */ public String getMethod() { return this.method; } /** * @return path */ public String getPath() { return this.path; } public static final class Builder { private String apiId; private String apiName; private String description; private String groupId; private String groupName; private String method; private String path; /** * ApiId. */ public Builder apiId(String apiId) { this.apiId = apiId; return this; } /** * ApiName. */ public Builder apiName(String apiName) { this.apiName = apiName; return this; } /** * Description. */ public Builder description(String description) { this.description = description; return this; } /** * GroupId. */ public Builder groupId(String groupId) { this.groupId = groupId; return this; } /** * GroupName. */ public Builder groupName(String groupName) { this.groupName = groupName; return this; } /** * Method. */ public Builder method(String method) { this.method = method; return this; } /** * Path. */ public Builder path(String path) { this.path = path; return this; } public ApiInfo build() { return new ApiInfo(this); } } } public static class ApiInfoList extends TeaModel { @NameInMap("ApiInfo") private java.util.List < ApiInfo> apiInfo; private ApiInfoList(Builder builder) { this.apiInfo = builder.apiInfo; } public static Builder builder() { return new Builder(); } public static ApiInfoList create() { return builder().build(); } /** * @return apiInfo */ public java.util.List < ApiInfo> getApiInfo() { return this.apiInfo; } public static final class Builder { private java.util.List < ApiInfo> apiInfo; /** * ApiInfo. */ public Builder apiInfo(java.util.List < ApiInfo> apiInfo) { this.apiInfo = apiInfo; return this; } public ApiInfoList build() { return new ApiInfoList(this); } } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy