com.antgroup.antchain.openapi.demo.models.QueryLoadtestTimeFiveRequest Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.demo.models;
import com.aliyun.tea.*;
public class QueryLoadtestTimeFiveRequest extends TeaModel {
// OAuth模式下的授权token
@NameInMap("auth_token")
public String authToken;
@NameInMap("product_instance_id")
public String productInstanceId;
// 超时时间
@NameInMap("timeout")
@Validation(required = true)
public Long timeout;
public static QueryLoadtestTimeFiveRequest build(java.util.Map map) throws Exception {
QueryLoadtestTimeFiveRequest self = new QueryLoadtestTimeFiveRequest();
return TeaModel.build(map, self);
}
public QueryLoadtestTimeFiveRequest setAuthToken(String authToken) {
this.authToken = authToken;
return this;
}
public String getAuthToken() {
return this.authToken;
}
public QueryLoadtestTimeFiveRequest setProductInstanceId(String productInstanceId) {
this.productInstanceId = productInstanceId;
return this;
}
public String getProductInstanceId() {
return this.productInstanceId;
}
public QueryLoadtestTimeFiveRequest setTimeout(Long timeout) {
this.timeout = timeout;
return this;
}
public Long getTimeout() {
return this.timeout;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy