com.aliyun.apig20240327.models.GetDomainRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of apig20240327 Show documentation
Show all versions of apig20240327 Show documentation
Alibaba Cloud APIG (20240327) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.apig20240327.models;
import com.aliyun.tea.*;
public class GetDomainRequest extends TeaModel {
@NameInMap("withStatistics")
public Boolean withStatistics;
public static GetDomainRequest build(java.util.Map map) throws Exception {
GetDomainRequest self = new GetDomainRequest();
return TeaModel.build(map, self);
}
public GetDomainRequest setWithStatistics(Boolean withStatistics) {
this.withStatistics = withStatistics;
return this;
}
public Boolean getWithStatistics() {
return this.withStatistics;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy