com.aliyun.sdk.service.apig20240327.models.ParentResourceInfo 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 ParentResourceInfo} extends {@link TeaModel}
*
* ParentResourceInfo
*/
public class ParentResourceInfo extends TeaModel {
@com.aliyun.core.annotation.NameInMap("apiInfo")
private HttpApiApiInfo apiInfo;
@com.aliyun.core.annotation.NameInMap("resourceType")
private String resourceType;
private ParentResourceInfo(Builder builder) {
this.apiInfo = builder.apiInfo;
this.resourceType = builder.resourceType;
}
public static Builder builder() {
return new Builder();
}
public static ParentResourceInfo create() {
return builder().build();
}
/**
* @return apiInfo
*/
public HttpApiApiInfo getApiInfo() {
return this.apiInfo;
}
/**
* @return resourceType
*/
public String getResourceType() {
return this.resourceType;
}
public static final class Builder {
private HttpApiApiInfo apiInfo;
private String resourceType;
/**
* apiInfo.
*/
public Builder apiInfo(HttpApiApiInfo apiInfo) {
this.apiInfo = apiInfo;
return this;
}
/**
* resourceType.
*/
public Builder resourceType(String resourceType) {
this.resourceType = resourceType;
return this;
}
public ParentResourceInfo build() {
return new ParentResourceInfo(this);
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy