com.antgroup.antchain.openapi.cas.models.ExistAppserviceRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.cas.models;
import com.aliyun.tea.*;
public class ExistAppserviceRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
// app_id
@NameInMap("app_id")
@Validation(required = true)
public String appId;
// name
@NameInMap("name")
@Validation(required = true)
public String name;
// workspace_id
@NameInMap("workspace_id")
@Validation(required = true)
public String workspaceId;
public static ExistAppserviceRequest build(java.util.Map map) throws Exception {
ExistAppserviceRequest self = new ExistAppserviceRequest();
return TeaModel.build(map, self);
}
public ExistAppserviceRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public ExistAppserviceRequest setAppId(String appId) {
this.appId = appId;
return this;
}
public String getAppId() {
return this.appId;
}
public ExistAppserviceRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public ExistAppserviceRequest setWorkspaceId(String workspaceId) {
this.workspaceId = workspaceId;
return this;
}
public String getWorkspaceId() {
return this.workspaceId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy