com.aliyun.sdk.service.apig20240327.models.ResourceStatistic Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alibabacloud-apig20240327 Show documentation
Show all versions of alibabacloud-apig20240327 Show documentation
Alibaba Cloud APIG (20240327) Async SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.apig20240327.models;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
*
* {@link ResourceStatistic} extends {@link TeaModel}
*
* ResourceStatistic
*/
public class ResourceStatistic extends TeaModel {
@com.aliyun.core.annotation.NameInMap("resourceCount")
private Integer resourceCount;
@com.aliyun.core.annotation.NameInMap("resourceType")
private String resourceType;
private ResourceStatistic(Builder builder) {
this.resourceCount = builder.resourceCount;
this.resourceType = builder.resourceType;
}
public static Builder builder() {
return new Builder();
}
public static ResourceStatistic create() {
return builder().build();
}
/**
* @return resourceCount
*/
public Integer getResourceCount() {
return this.resourceCount;
}
/**
* @return resourceType
*/
public String getResourceType() {
return this.resourceType;
}
public static final class Builder {
private Integer resourceCount;
private String resourceType;
/**
* resourceCount.
*/
public Builder resourceCount(Integer resourceCount) {
this.resourceCount = resourceCount;
return this;
}
/**
* resourceType.
*/
public Builder resourceType(String resourceType) {
this.resourceType = resourceType;
return this;
}
public ResourceStatistic build() {
return new ResourceStatistic(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy