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

com.aliyun.sdk.service.apig20240327.models.ResourceStatistic Maven / Gradle / Ivy

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