All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.huaweicloud.sdk.koomessage.v1.model.AimPersonalTemplatePage Maven / Gradle / Ivy

There is a newer version: 3.1.114
Show newest version
package com.huaweicloud.sdk.koomessage.v1.model;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.function.Consumer;

/**
 * AimPersonalTemplatePage
 */
public class AimPersonalTemplatePage {

    @JsonInclude(JsonInclude.Include.NON_NULL)
    @JsonProperty(value = "page_order")

    private Integer pageOrder;

    @JsonInclude(JsonInclude.Include.NON_NULL)
    @JsonProperty(value = "contents")

    private List contents = null;

    public AimPersonalTemplatePage withPageOrder(Integer pageOrder) {
        this.pageOrder = pageOrder;
        return this;
    }

    /**
     * 分页显示,指示当前展示第几页,从1开始,最大支持10页。
     * @return pageOrder
     */
    public Integer getPageOrder() {
        return pageOrder;
    }

    public void setPageOrder(Integer pageOrder) {
        this.pageOrder = pageOrder;
    }

    public AimPersonalTemplatePage withContents(List contents) {
        this.contents = contents;
        return this;
    }

    public AimPersonalTemplatePage addContentsItem(AimPersonalTemplateContent contentsItem) {
        if (this.contents == null) {
            this.contents = new ArrayList<>();
        }
        this.contents.add(contentsItem);
        return this;
    }

    public AimPersonalTemplatePage withContents(Consumer> contentsSetter) {
        if (this.contents == null) {
            this.contents = new ArrayList<>();
        }
        contentsSetter.accept(this.contents);
        return this;
    }

    /**
     * 该page下的协议内容。
     * @return contents
     */
    public List getContents() {
        return contents;
    }

    public void setContents(List contents) {
        this.contents = contents;
    }

    @Override
    public boolean equals(java.lang.Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null || getClass() != obj.getClass()) {
            return false;
        }
        AimPersonalTemplatePage that = (AimPersonalTemplatePage) obj;
        return Objects.equals(this.pageOrder, that.pageOrder) && Objects.equals(this.contents, that.contents);
    }

    @Override
    public int hashCode() {
        return Objects.hash(pageOrder, contents);
    }

    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append("class AimPersonalTemplatePage {\n");
        sb.append("    pageOrder: ").append(toIndentedString(pageOrder)).append("\n");
        sb.append("    contents: ").append(toIndentedString(contents)).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    ");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy