com.antgroup.antchain.openapi.deps.models.GetPlanBasicRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-deps Show documentation
Show all versions of openapi-deps Show documentation
Ant Chain deps SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.deps.models;
import com.aliyun.tea.*;
public class GetPlanBasicRequest extends TeaModel {
@NameInMap("auth_token")
public String authToken;
@NameInMap("tenant")
public String tenant;
// show_basic
@NameInMap("show_basic")
public Boolean showBasic;
// time_series_id
@NameInMap("time_series_id")
@Validation(required = true)
public String timeSeriesId;
// workspace
@NameInMap("workspace")
@Validation(required = true)
public String workspace;
public static GetPlanBasicRequest build(java.util.Map map) throws Exception {
GetPlanBasicRequest self = new GetPlanBasicRequest();
return TeaModel.build(map, self);
}
public GetPlanBasicRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public GetPlanBasicRequest setTenant(String tenant) {
this.tenant = tenant;
return this;
}
public String getTenant() {
return this.tenant;
}
public GetPlanBasicRequest setShowBasic(Boolean showBasic) {
this.showBasic = showBasic;
return this;
}
public Boolean getShowBasic() {
return this.showBasic;
}
public GetPlanBasicRequest setTimeSeriesId(String timeSeriesId) {
this.timeSeriesId = timeSeriesId;
return this;
}
public String getTimeSeriesId() {
return this.timeSeriesId;
}
public GetPlanBasicRequest setWorkspace(String workspace) {
this.workspace = workspace;
return this;
}
public String getWorkspace() {
return this.workspace;
}
}