com.aliyun.sls20201230.models.ListDomainsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of sls20201230 Show documentation
Show all versions of sls20201230 Show documentation
Alibaba Cloud Log Service (20201230) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sls20201230.models;
import com.aliyun.tea.*;
public class ListDomainsRequest extends TeaModel {
@NameInMap("domainName")
public String domainName;
@NameInMap("offset")
public Integer offset;
@NameInMap("size")
public Integer size;
public static ListDomainsRequest build(java.util.Map map) throws Exception {
ListDomainsRequest self = new ListDomainsRequest();
return TeaModel.build(map, self);
}
public ListDomainsRequest setDomainName(String domainName) {
this.domainName = domainName;
return this;
}
public String getDomainName() {
return this.domainName;
}
public ListDomainsRequest setOffset(Integer offset) {
this.offset = offset;
return this;
}
public Integer getOffset() {
return this.offset;
}
public ListDomainsRequest setSize(Integer size) {
this.size = size;
return this;
}
public Integer getSize() {
return this.size;
}
}