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