# coding: utf-8

"""
    insight

    No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)  # noqa: E501

    OpenAPI spec version: common-version
    
    Generated by: https://github.com/swagger-api/swagger-codegen.git
"""


import pprint
import re  # noqa: F401

import six

from volcenginesdkcore.configuration import Configuration


class PullPostResponse(object):
    """NOTE: This class is auto generated by the swagger code generator program.

    Do not edit the class manually.
    """

    """
    Attributes:
      swagger_types (dict): The key is attribute name
                            and the value is attribute type.
      attribute_map (dict): The key is attribute name
                            and the value is json key in definition.
    """
    swagger_types = {
        'has_more': 'bool',
        'item_docs': 'list[ItemDocForPullPostOutput]',
        'next_page_token': 'str'
    }

    attribute_map = {
        'has_more': 'HasMore',
        'item_docs': 'ItemDocs',
        'next_page_token': 'NextPageToken'
    }

    def __init__(self, has_more=None, item_docs=None, next_page_token=None, _configuration=None):  # noqa: E501
        """PullPostResponse - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._has_more = None
        self._item_docs = None
        self._next_page_token = None
        self.discriminator = None

        if has_more is not None:
            self.has_more = has_more
        if item_docs is not None:
            self.item_docs = item_docs
        if next_page_token is not None:
            self.next_page_token = next_page_token

    @property
    def has_more(self):
        """Gets the has_more of this PullPostResponse.  # noqa: E501


        :return: The has_more of this PullPostResponse.  # noqa: E501
        :rtype: bool
        """
        return self._has_more

    @has_more.setter
    def has_more(self, has_more):
        """Sets the has_more of this PullPostResponse.


        :param has_more: The has_more of this PullPostResponse.  # noqa: E501
        :type: bool
        """

        self._has_more = has_more

    @property
    def item_docs(self):
        """Gets the item_docs of this PullPostResponse.  # noqa: E501


        :return: The item_docs of this PullPostResponse.  # noqa: E501
        :rtype: list[ItemDocForPullPostOutput]
        """
        return self._item_docs

    @item_docs.setter
    def item_docs(self, item_docs):
        """Sets the item_docs of this PullPostResponse.


        :param item_docs: The item_docs of this PullPostResponse.  # noqa: E501
        :type: list[ItemDocForPullPostOutput]
        """

        self._item_docs = item_docs

    @property
    def next_page_token(self):
        """Gets the next_page_token of this PullPostResponse.  # noqa: E501


        :return: The next_page_token of this PullPostResponse.  # noqa: E501
        :rtype: str
        """
        return self._next_page_token

    @next_page_token.setter
    def next_page_token(self, next_page_token):
        """Sets the next_page_token of this PullPostResponse.


        :param next_page_token: The next_page_token of this PullPostResponse.  # noqa: E501
        :type: str
        """

        self._next_page_token = next_page_token

    def to_dict(self):
        """Returns the model properties as a dict"""
        result = {}

        for attr, _ in six.iteritems(self.swagger_types):
            value = getattr(self, attr)
            if isinstance(value, list):
                result[attr] = list(map(
                    lambda x: x.to_dict() if hasattr(x, "to_dict") else x,
                    value
                ))
            elif hasattr(value, "to_dict"):
                result[attr] = value.to_dict()
            elif isinstance(value, dict):
                result[attr] = dict(map(
                    lambda item: (item[0], item[1].to_dict())
                    if hasattr(item[1], "to_dict") else item,
                    value.items()
                ))
            else:
                result[attr] = value
        if issubclass(PullPostResponse, dict):
            for key, value in self.items():
                result[key] = value

        return result

    def to_str(self):
        """Returns the string representation of the model"""
        return pprint.pformat(self.to_dict())

    def __repr__(self):
        """For `print` and `pprint`"""
        return self.to_str()

    def __eq__(self, other):
        """Returns true if both objects are equal"""
        if not isinstance(other, PullPostResponse):
            return False

        return self.to_dict() == other.to_dict()

    def __ne__(self, other):
        """Returns true if both objects are not equal"""
        if not isinstance(other, PullPostResponse):
            return True

        return self.to_dict() != other.to_dict()
