com.volcengine.model.live.request.ListDomainDetailRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.model.live.request;
import com.alibaba.fastjson.annotation.JSONField;
import lombok.Data;
@Data
public class ListDomainDetailRequest {
@JSONField(name = "PageNum")
Integer PageNum;
@JSONField(name = "PageSize")
Integer PageSize;
@JSONField(name = "AccountIDList")
String[] accountIDList;
@JSONField(name = "VhostList")
String[] vhostList;
@JSONField(name = "DomainTypeList")
String[] domainTypeList;
@JSONField(name = "DomainStatusList")
Long[] domainStatusList;
@JSONField(name = "DomainRegionList")
String[] domainRegionList;
@JSONField(name = "DomainNameList")
String[] domainNameList;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy