Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
com.huaweicloud.sdk.geip.v3.model.ListInternetBandwidthsRequest Maven / Gradle / Ivy
package com.huaweicloud.sdk.geip.v3.model;
import com.fasterxml.jackson.annotation.JsonCreator;
import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;
import com.fasterxml.jackson.annotation.JsonValue;
import java.util.ArrayList;
import java.util.Collections;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.function.Consumer;
/**
* Request Object
*/
public class ListInternetBandwidthsRequest {
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "limit")
private Integer limit;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "offset")
private Integer offset;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "marker")
private String marker;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "page_reverse")
private Boolean pageReverse;
/**
* Gets or Sets fields
*/
public static final class FieldsEnum {
/**
* Enum ID for value: "id"
*/
public static final FieldsEnum ID = new FieldsEnum("id");
/**
* Enum NAME for value: "name"
*/
public static final FieldsEnum NAME = new FieldsEnum("name");
/**
* Enum ISP for value: "isp"
*/
public static final FieldsEnum ISP = new FieldsEnum("isp");
/**
* Enum INGRESS_SIZE for value: "ingress_size"
*/
public static final FieldsEnum INGRESS_SIZE = new FieldsEnum("ingress_size");
/**
* Enum ACCESS_SITE for value: "access_site"
*/
public static final FieldsEnum ACCESS_SITE = new FieldsEnum("access_site");
/**
* Enum SIZE for value: "size"
*/
public static final FieldsEnum SIZE = new FieldsEnum("size");
/**
* Enum DESCRIPTION for value: "description"
*/
public static final FieldsEnum DESCRIPTION = new FieldsEnum("description");
/**
* Enum CHARGE_MODE for value: "charge_mode"
*/
public static final FieldsEnum CHARGE_MODE = new FieldsEnum("charge_mode");
/**
* Enum RATIO_95PEAK for value: "ratio_95peak"
*/
public static final FieldsEnum RATIO_95PEAK = new FieldsEnum("ratio_95peak");
/**
* Enum FREEZEN_INFO for value: "freezen_info"
*/
public static final FieldsEnum FREEZEN_INFO = new FieldsEnum("freezen_info");
/**
* Enum DOMAIN_ID for value: "domain_id"
*/
public static final FieldsEnum DOMAIN_ID = new FieldsEnum("domain_id");
/**
* Enum STATUS for value: "status"
*/
public static final FieldsEnum STATUS = new FieldsEnum("status");
/**
* Enum CREATED_AT for value: "created_at"
*/
public static final FieldsEnum CREATED_AT = new FieldsEnum("created_at");
/**
* Enum UPDATED_AT for value: "updated_at"
*/
public static final FieldsEnum UPDATED_AT = new FieldsEnum("updated_at");
/**
* Enum IS_PRE_PAID for value: "is_pre_paid"
*/
public static final FieldsEnum IS_PRE_PAID = new FieldsEnum("is_pre_paid");
/**
* Enum TYPE for value: "type"
*/
public static final FieldsEnum TYPE = new FieldsEnum("type");
/**
* Enum TAGS for value: "tags"
*/
public static final FieldsEnum TAGS = new FieldsEnum("tags");
/**
* Enum SYS_TAGS for value: "sys_tags"
*/
public static final FieldsEnum SYS_TAGS = new FieldsEnum("sys_tags");
/**
* Enum ENTERPRISE_PROJECT_ID for value: "enterprise_project_id"
*/
public static final FieldsEnum ENTERPRISE_PROJECT_ID = new FieldsEnum("enterprise_project_id");
private static final Map STATIC_FIELDS = createStaticFields();
private static Map createStaticFields() {
Map map = new HashMap<>();
map.put("id", ID);
map.put("name", NAME);
map.put("isp", ISP);
map.put("ingress_size", INGRESS_SIZE);
map.put("access_site", ACCESS_SITE);
map.put("size", SIZE);
map.put("description", DESCRIPTION);
map.put("charge_mode", CHARGE_MODE);
map.put("ratio_95peak", RATIO_95PEAK);
map.put("freezen_info", FREEZEN_INFO);
map.put("domain_id", DOMAIN_ID);
map.put("status", STATUS);
map.put("created_at", CREATED_AT);
map.put("updated_at", UPDATED_AT);
map.put("is_pre_paid", IS_PRE_PAID);
map.put("type", TYPE);
map.put("tags", TAGS);
map.put("sys_tags", SYS_TAGS);
map.put("enterprise_project_id", ENTERPRISE_PROJECT_ID);
return Collections.unmodifiableMap(map);
}
private String value;
FieldsEnum(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static FieldsEnum fromValue(String value) {
if (value == null) {
return null;
}
return java.util.Optional.ofNullable(STATIC_FIELDS.get(value)).orElse(new FieldsEnum(value));
}
public static FieldsEnum valueOf(String value) {
if (value == null) {
return null;
}
return java.util.Optional.ofNullable(STATIC_FIELDS.get(value))
.orElseThrow(() -> new IllegalArgumentException("Unexpected value '" + value + "'"));
}
@Override
public boolean equals(Object obj) {
if (obj instanceof FieldsEnum) {
return this.value.equals(((FieldsEnum) obj).value);
}
return false;
}
@Override
public int hashCode() {
return this.value.hashCode();
}
}
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "fields")
private List fields = null;
/**
* Gets or Sets extFields
*/
public static final class ExtFieldsEnum {
/**
* Enum GEIP_COUNT for value: "geip_count"
*/
public static final ExtFieldsEnum GEIP_COUNT = new ExtFieldsEnum("geip_count");
/**
* Enum GEIP_SEGMENT_COUNT for value: "geip_segment_count"
*/
public static final ExtFieldsEnum GEIP_SEGMENT_COUNT = new ExtFieldsEnum("geip_segment_count");
private static final Map STATIC_FIELDS = createStaticFields();
private static Map createStaticFields() {
Map map = new HashMap<>();
map.put("geip_count", GEIP_COUNT);
map.put("geip_segment_count", GEIP_SEGMENT_COUNT);
return Collections.unmodifiableMap(map);
}
private String value;
ExtFieldsEnum(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static ExtFieldsEnum fromValue(String value) {
if (value == null) {
return null;
}
return java.util.Optional.ofNullable(STATIC_FIELDS.get(value)).orElse(new ExtFieldsEnum(value));
}
public static ExtFieldsEnum valueOf(String value) {
if (value == null) {
return null;
}
return java.util.Optional.ofNullable(STATIC_FIELDS.get(value))
.orElseThrow(() -> new IllegalArgumentException("Unexpected value '" + value + "'"));
}
@Override
public boolean equals(Object obj) {
if (obj instanceof ExtFieldsEnum) {
return this.value.equals(((ExtFieldsEnum) obj).value);
}
return false;
}
@Override
public int hashCode() {
return this.value.hashCode();
}
}
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "ext-fields")
private List extFields = null;
/**
* Gets or Sets sortKey
*/
public static final class SortKeyEnum {
/**
* Enum ID for value: "id"
*/
public static final SortKeyEnum ID = new SortKeyEnum("id");
/**
* Enum SIZE for value: "size"
*/
public static final SortKeyEnum SIZE = new SortKeyEnum("size");
/**
* Enum CREATED_AT for value: "created_at"
*/
public static final SortKeyEnum CREATED_AT = new SortKeyEnum("created_at");
/**
* Enum UPDATED_AT for value: "updated_at"
*/
public static final SortKeyEnum UPDATED_AT = new SortKeyEnum("updated_at");
private static final Map STATIC_FIELDS = createStaticFields();
private static Map createStaticFields() {
Map map = new HashMap<>();
map.put("id", ID);
map.put("size", SIZE);
map.put("created_at", CREATED_AT);
map.put("updated_at", UPDATED_AT);
return Collections.unmodifiableMap(map);
}
private String value;
SortKeyEnum(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static SortKeyEnum fromValue(String value) {
if (value == null) {
return null;
}
return java.util.Optional.ofNullable(STATIC_FIELDS.get(value)).orElse(new SortKeyEnum(value));
}
public static SortKeyEnum valueOf(String value) {
if (value == null) {
return null;
}
return java.util.Optional.ofNullable(STATIC_FIELDS.get(value))
.orElseThrow(() -> new IllegalArgumentException("Unexpected value '" + value + "'"));
}
@Override
public boolean equals(Object obj) {
if (obj instanceof SortKeyEnum) {
return this.value.equals(((SortKeyEnum) obj).value);
}
return false;
}
@Override
public int hashCode() {
return this.value.hashCode();
}
}
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "sort_key")
private List sortKey = null;
/**
* Gets or Sets sortDir
*/
public static final class SortDirEnum {
/**
* Enum ASC for value: "asc"
*/
public static final SortDirEnum ASC = new SortDirEnum("asc");
/**
* Enum DESC for value: "desc"
*/
public static final SortDirEnum DESC = new SortDirEnum("desc");
private static final Map STATIC_FIELDS = createStaticFields();
private static Map createStaticFields() {
Map map = new HashMap<>();
map.put("asc", ASC);
map.put("desc", DESC);
return Collections.unmodifiableMap(map);
}
private String value;
SortDirEnum(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static SortDirEnum fromValue(String value) {
if (value == null) {
return null;
}
return java.util.Optional.ofNullable(STATIC_FIELDS.get(value)).orElse(new SortDirEnum(value));
}
public static SortDirEnum valueOf(String value) {
if (value == null) {
return null;
}
return java.util.Optional.ofNullable(STATIC_FIELDS.get(value))
.orElseThrow(() -> new IllegalArgumentException("Unexpected value '" + value + "'"));
}
@Override
public boolean equals(Object obj) {
if (obj instanceof SortDirEnum) {
return this.value.equals(((SortDirEnum) obj).value);
}
return false;
}
@Override
public int hashCode() {
return this.value.hashCode();
}
}
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "sort_dir")
private List sortDir = null;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "id")
private List id = null;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "size")
private List size = null;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "name")
private List name = null;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "name_like")
private String nameLike;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "access_site")
private List accessSite = null;
/**
* Gets or Sets status
*/
public static final class StatusEnum {
/**
* Enum FREEZED for value: "freezed"
*/
public static final StatusEnum FREEZED = new StatusEnum("freezed");
/**
* Enum NORMAL for value: "normal"
*/
public static final StatusEnum NORMAL = new StatusEnum("normal");
private static final Map STATIC_FIELDS = createStaticFields();
private static Map createStaticFields() {
Map map = new HashMap<>();
map.put("freezed", FREEZED);
map.put("normal", NORMAL);
return Collections.unmodifiableMap(map);
}
private String value;
StatusEnum(String value) {
this.value = value;
}
@JsonValue
public String getValue() {
return value;
}
@Override
public String toString() {
return String.valueOf(value);
}
@JsonCreator
public static StatusEnum fromValue(String value) {
if (value == null) {
return null;
}
return java.util.Optional.ofNullable(STATIC_FIELDS.get(value)).orElse(new StatusEnum(value));
}
public static StatusEnum valueOf(String value) {
if (value == null) {
return null;
}
return java.util.Optional.ofNullable(STATIC_FIELDS.get(value))
.orElseThrow(() -> new IllegalArgumentException("Unexpected value '" + value + "'"));
}
@Override
public boolean equals(Object obj) {
if (obj instanceof StatusEnum) {
return this.value.equals(((StatusEnum) obj).value);
}
return false;
}
@Override
public int hashCode() {
return this.value.hashCode();
}
}
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "status")
private List status = null;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "enterprise_project_id")
private List enterpriseProjectId = null;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "tags")
private List tags = null;
@JsonInclude(JsonInclude.Include.NON_NULL)
@JsonProperty(value = "type")
private List type = null;
public ListInternetBandwidthsRequest withLimit(Integer limit) {
this.limit = limit;
return this;
}
/**
* 每页条数
* minimum: 0
* maximum: 2000
* @return limit
*/
public Integer getLimit() {
return limit;
}
public void setLimit(Integer limit) {
this.limit = limit;
}
public ListInternetBandwidthsRequest withOffset(Integer offset) {
this.offset = offset;
return this;
}
/**
* 分页起始点
* @return offset
*/
public Integer getOffset() {
return offset;
}
public void setOffset(Integer offset) {
this.offset = offset;
}
public ListInternetBandwidthsRequest withMarker(String marker) {
this.marker = marker;
return this;
}
/**
* 分页起始点
* @return marker
*/
public String getMarker() {
return marker;
}
public void setMarker(String marker) {
this.marker = marker;
}
public ListInternetBandwidthsRequest withPageReverse(Boolean pageReverse) {
this.pageReverse = pageReverse;
return this;
}
/**
* 翻页方向
* @return pageReverse
*/
public Boolean getPageReverse() {
return pageReverse;
}
public void setPageReverse(Boolean pageReverse) {
this.pageReverse = pageReverse;
}
public ListInternetBandwidthsRequest withFields(List fields) {
this.fields = fields;
return this;
}
public ListInternetBandwidthsRequest addFieldsItem(FieldsEnum fieldsItem) {
if (this.fields == null) {
this.fields = new ArrayList<>();
}
this.fields.add(fieldsItem);
return this;
}
public ListInternetBandwidthsRequest withFields(Consumer> fieldsSetter) {
if (this.fields == null) {
this.fields = new ArrayList<>();
}
fieldsSetter.accept(this.fields);
return this;
}
/**
* Get fields
* @return fields
*/
public List getFields() {
return fields;
}
public void setFields(List fields) {
this.fields = fields;
}
public ListInternetBandwidthsRequest withExtFields(List extFields) {
this.extFields = extFields;
return this;
}
public ListInternetBandwidthsRequest addExtFieldsItem(ExtFieldsEnum extFieldsItem) {
if (this.extFields == null) {
this.extFields = new ArrayList<>();
}
this.extFields.add(extFieldsItem);
return this;
}
public ListInternetBandwidthsRequest withExtFields(Consumer> extFieldsSetter) {
if (this.extFields == null) {
this.extFields = new ArrayList<>();
}
extFieldsSetter.accept(this.extFields);
return this;
}
/**
* Get extFields
* @return extFields
*/
public List getExtFields() {
return extFields;
}
public void setExtFields(List extFields) {
this.extFields = extFields;
}
public ListInternetBandwidthsRequest withSortKey(List sortKey) {
this.sortKey = sortKey;
return this;
}
public ListInternetBandwidthsRequest addSortKeyItem(SortKeyEnum sortKeyItem) {
if (this.sortKey == null) {
this.sortKey = new ArrayList<>();
}
this.sortKey.add(sortKeyItem);
return this;
}
public ListInternetBandwidthsRequest withSortKey(Consumer> sortKeySetter) {
if (this.sortKey == null) {
this.sortKey = new ArrayList<>();
}
sortKeySetter.accept(this.sortKey);
return this;
}
/**
* 按照sort_key指定的字段排序
* @return sortKey
*/
public List getSortKey() {
return sortKey;
}
public void setSortKey(List sortKey) {
this.sortKey = sortKey;
}
public ListInternetBandwidthsRequest withSortDir(List sortDir) {
this.sortDir = sortDir;
return this;
}
public ListInternetBandwidthsRequest addSortDirItem(SortDirEnum sortDirItem) {
if (this.sortDir == null) {
this.sortDir = new ArrayList<>();
}
this.sortDir.add(sortDirItem);
return this;
}
public ListInternetBandwidthsRequest withSortDir(Consumer> sortDirSetter) {
if (this.sortDir == null) {
this.sortDir = new ArrayList<>();
}
sortDirSetter.accept(this.sortDir);
return this;
}
/**
* 排序的方向,倒序或者正序
* @return sortDir
*/
public List getSortDir() {
return sortDir;
}
public void setSortDir(List sortDir) {
this.sortDir = sortDir;
}
public ListInternetBandwidthsRequest withId(List id) {
this.id = id;
return this;
}
public ListInternetBandwidthsRequest addIdItem(String idItem) {
if (this.id == null) {
this.id = new ArrayList<>();
}
this.id.add(idItem);
return this;
}
public ListInternetBandwidthsRequest withId(Consumer> idSetter) {
if (this.id == null) {
this.id = new ArrayList<>();
}
idSetter.accept(this.id);
return this;
}
/**
* Get id
* @return id
*/
public List getId() {
return id;
}
public void setId(List id) {
this.id = id;
}
public ListInternetBandwidthsRequest withSize(List size) {
this.size = size;
return this;
}
public ListInternetBandwidthsRequest addSizeItem(Integer sizeItem) {
if (this.size == null) {
this.size = new ArrayList<>();
}
this.size.add(sizeItem);
return this;
}
public ListInternetBandwidthsRequest withSize(Consumer> sizeSetter) {
if (this.size == null) {
this.size = new ArrayList<>();
}
sizeSetter.accept(this.size);
return this;
}
/**
* Get size
* @return size
*/
public List getSize() {
return size;
}
public void setSize(List size) {
this.size = size;
}
public ListInternetBandwidthsRequest withName(List name) {
this.name = name;
return this;
}
public ListInternetBandwidthsRequest addNameItem(String nameItem) {
if (this.name == null) {
this.name = new ArrayList<>();
}
this.name.add(nameItem);
return this;
}
public ListInternetBandwidthsRequest withName(Consumer> nameSetter) {
if (this.name == null) {
this.name = new ArrayList<>();
}
nameSetter.accept(this.name);
return this;
}
/**
* Get name
* @return name
*/
public List getName() {
return name;
}
public void setName(List name) {
this.name = name;
}
public ListInternetBandwidthsRequest withNameLike(String nameLike) {
this.nameLike = nameLike;
return this;
}
/**
* Get nameLike
* @return nameLike
*/
public String getNameLike() {
return nameLike;
}
public void setNameLike(String nameLike) {
this.nameLike = nameLike;
}
public ListInternetBandwidthsRequest withAccessSite(List accessSite) {
this.accessSite = accessSite;
return this;
}
public ListInternetBandwidthsRequest addAccessSiteItem(String accessSiteItem) {
if (this.accessSite == null) {
this.accessSite = new ArrayList<>();
}
this.accessSite.add(accessSiteItem);
return this;
}
public ListInternetBandwidthsRequest withAccessSite(Consumer> accessSiteSetter) {
if (this.accessSite == null) {
this.accessSite = new ArrayList<>();
}
accessSiteSetter.accept(this.accessSite);
return this;
}
/**
* Get accessSite
* @return accessSite
*/
public List getAccessSite() {
return accessSite;
}
public void setAccessSite(List accessSite) {
this.accessSite = accessSite;
}
public ListInternetBandwidthsRequest withStatus(List status) {
this.status = status;
return this;
}
public ListInternetBandwidthsRequest addStatusItem(StatusEnum statusItem) {
if (this.status == null) {
this.status = new ArrayList<>();
}
this.status.add(statusItem);
return this;
}
public ListInternetBandwidthsRequest withStatus(Consumer> statusSetter) {
if (this.status == null) {
this.status = new ArrayList<>();
}
statusSetter.accept(this.status);
return this;
}
/**
* Get status
* @return status
*/
public List getStatus() {
return status;
}
public void setStatus(List status) {
this.status = status;
}
public ListInternetBandwidthsRequest withEnterpriseProjectId(List enterpriseProjectId) {
this.enterpriseProjectId = enterpriseProjectId;
return this;
}
public ListInternetBandwidthsRequest addEnterpriseProjectIdItem(String enterpriseProjectIdItem) {
if (this.enterpriseProjectId == null) {
this.enterpriseProjectId = new ArrayList<>();
}
this.enterpriseProjectId.add(enterpriseProjectIdItem);
return this;
}
public ListInternetBandwidthsRequest withEnterpriseProjectId(Consumer> enterpriseProjectIdSetter) {
if (this.enterpriseProjectId == null) {
this.enterpriseProjectId = new ArrayList<>();
}
enterpriseProjectIdSetter.accept(this.enterpriseProjectId);
return this;
}
/**
* Get enterpriseProjectId
* @return enterpriseProjectId
*/
public List getEnterpriseProjectId() {
return enterpriseProjectId;
}
public void setEnterpriseProjectId(List enterpriseProjectId) {
this.enterpriseProjectId = enterpriseProjectId;
}
public ListInternetBandwidthsRequest withTags(List tags) {
this.tags = tags;
return this;
}
public ListInternetBandwidthsRequest addTagsItem(String tagsItem) {
if (this.tags == null) {
this.tags = new ArrayList<>();
}
this.tags.add(tagsItem);
return this;
}
public ListInternetBandwidthsRequest withTags(Consumer> tagsSetter) {
if (this.tags == null) {
this.tags = new ArrayList<>();
}
tagsSetter.accept(this.tags);
return this;
}
/**
* Get tags
* @return tags
*/
public List getTags() {
return tags;
}
public void setTags(List tags) {
this.tags = tags;
}
public ListInternetBandwidthsRequest withType(List type) {
this.type = type;
return this;
}
public ListInternetBandwidthsRequest addTypeItem(String typeItem) {
if (this.type == null) {
this.type = new ArrayList<>();
}
this.type.add(typeItem);
return this;
}
public ListInternetBandwidthsRequest withType(Consumer> typeSetter) {
if (this.type == null) {
this.type = new ArrayList<>();
}
typeSetter.accept(this.type);
return this;
}
/**
* Get type
* @return type
*/
public List getType() {
return type;
}
public void setType(List type) {
this.type = type;
}
@Override
public boolean equals(java.lang.Object obj) {
if (this == obj) {
return true;
}
if (obj == null || getClass() != obj.getClass()) {
return false;
}
ListInternetBandwidthsRequest that = (ListInternetBandwidthsRequest) obj;
return Objects.equals(this.limit, that.limit) && Objects.equals(this.offset, that.offset)
&& Objects.equals(this.marker, that.marker) && Objects.equals(this.pageReverse, that.pageReverse)
&& Objects.equals(this.fields, that.fields) && Objects.equals(this.extFields, that.extFields)
&& Objects.equals(this.sortKey, that.sortKey) && Objects.equals(this.sortDir, that.sortDir)
&& Objects.equals(this.id, that.id) && Objects.equals(this.size, that.size)
&& Objects.equals(this.name, that.name) && Objects.equals(this.nameLike, that.nameLike)
&& Objects.equals(this.accessSite, that.accessSite) && Objects.equals(this.status, that.status)
&& Objects.equals(this.enterpriseProjectId, that.enterpriseProjectId)
&& Objects.equals(this.tags, that.tags) && Objects.equals(this.type, that.type);
}
@Override
public int hashCode() {
return Objects.hash(limit,
offset,
marker,
pageReverse,
fields,
extFields,
sortKey,
sortDir,
id,
size,
name,
nameLike,
accessSite,
status,
enterpriseProjectId,
tags,
type);
}
@Override
public String toString() {
StringBuilder sb = new StringBuilder();
sb.append("class ListInternetBandwidthsRequest {\n");
sb.append(" limit: ").append(toIndentedString(limit)).append("\n");
sb.append(" offset: ").append(toIndentedString(offset)).append("\n");
sb.append(" marker: ").append(toIndentedString(marker)).append("\n");
sb.append(" pageReverse: ").append(toIndentedString(pageReverse)).append("\n");
sb.append(" fields: ").append(toIndentedString(fields)).append("\n");
sb.append(" extFields: ").append(toIndentedString(extFields)).append("\n");
sb.append(" sortKey: ").append(toIndentedString(sortKey)).append("\n");
sb.append(" sortDir: ").append(toIndentedString(sortDir)).append("\n");
sb.append(" id: ").append(toIndentedString(id)).append("\n");
sb.append(" size: ").append(toIndentedString(size)).append("\n");
sb.append(" name: ").append(toIndentedString(name)).append("\n");
sb.append(" nameLike: ").append(toIndentedString(nameLike)).append("\n");
sb.append(" accessSite: ").append(toIndentedString(accessSite)).append("\n");
sb.append(" status: ").append(toIndentedString(status)).append("\n");
sb.append(" enterpriseProjectId: ").append(toIndentedString(enterpriseProjectId)).append("\n");
sb.append(" tags: ").append(toIndentedString(tags)).append("\n");
sb.append(" type: ").append(toIndentedString(type)).append("\n");
sb.append("}");
return sb.toString();
}
/**
* Convert the given object to string with each line indented by 4 spaces
* (except the first line).
*/
private String toIndentedString(java.lang.Object o) {
if (o == null) {
return "null";
}
return o.toString().replace("\n", "\n ");
}
}