# coding: utf-8

"""
    bmq

    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 PreviewTopicDataRequest(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 = {
        'end_value': 'int',
        'instance_id': 'str',
        'page_number': 'int',
        'page_size': 'int',
        'partitions': 'list[int]',
        'preview_type': 'str',
        'relative_value': 'int',
        'topic_name': 'str'
    }

    attribute_map = {
        'end_value': 'EndValue',
        'instance_id': 'InstanceId',
        'page_number': 'PageNumber',
        'page_size': 'PageSize',
        'partitions': 'Partitions',
        'preview_type': 'PreviewType',
        'relative_value': 'RelativeValue',
        'topic_name': 'TopicName'
    }

    def __init__(self, end_value=None, instance_id=None, page_number=None, page_size=None, partitions=None, preview_type=None, relative_value=None, topic_name=None, _configuration=None):  # noqa: E501
        """PreviewTopicDataRequest - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._end_value = None
        self._instance_id = None
        self._page_number = None
        self._page_size = None
        self._partitions = None
        self._preview_type = None
        self._relative_value = None
        self._topic_name = None
        self.discriminator = None

        if end_value is not None:
            self.end_value = end_value
        self.instance_id = instance_id
        if page_number is not None:
            self.page_number = page_number
        if page_size is not None:
            self.page_size = page_size
        if partitions is not None:
            self.partitions = partitions
        self.preview_type = preview_type
        self.relative_value = relative_value
        self.topic_name = topic_name

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


        :return: The end_value of this PreviewTopicDataRequest.  # noqa: E501
        :rtype: int
        """
        return self._end_value

    @end_value.setter
    def end_value(self, end_value):
        """Sets the end_value of this PreviewTopicDataRequest.


        :param end_value: The end_value of this PreviewTopicDataRequest.  # noqa: E501
        :type: int
        """

        self._end_value = end_value

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


        :return: The instance_id of this PreviewTopicDataRequest.  # noqa: E501
        :rtype: str
        """
        return self._instance_id

    @instance_id.setter
    def instance_id(self, instance_id):
        """Sets the instance_id of this PreviewTopicDataRequest.


        :param instance_id: The instance_id of this PreviewTopicDataRequest.  # noqa: E501
        :type: str
        """
        if self._configuration.client_side_validation and instance_id is None:
            raise ValueError("Invalid value for `instance_id`, must not be `None`")  # noqa: E501

        self._instance_id = instance_id

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


        :return: The page_number of this PreviewTopicDataRequest.  # noqa: E501
        :rtype: int
        """
        return self._page_number

    @page_number.setter
    def page_number(self, page_number):
        """Sets the page_number of this PreviewTopicDataRequest.


        :param page_number: The page_number of this PreviewTopicDataRequest.  # noqa: E501
        :type: int
        """

        self._page_number = page_number

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


        :return: The page_size of this PreviewTopicDataRequest.  # noqa: E501
        :rtype: int
        """
        return self._page_size

    @page_size.setter
    def page_size(self, page_size):
        """Sets the page_size of this PreviewTopicDataRequest.


        :param page_size: The page_size of this PreviewTopicDataRequest.  # noqa: E501
        :type: int
        """

        self._page_size = page_size

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


        :return: The partitions of this PreviewTopicDataRequest.  # noqa: E501
        :rtype: list[int]
        """
        return self._partitions

    @partitions.setter
    def partitions(self, partitions):
        """Sets the partitions of this PreviewTopicDataRequest.


        :param partitions: The partitions of this PreviewTopicDataRequest.  # noqa: E501
        :type: list[int]
        """

        self._partitions = partitions

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


        :return: The preview_type of this PreviewTopicDataRequest.  # noqa: E501
        :rtype: str
        """
        return self._preview_type

    @preview_type.setter
    def preview_type(self, preview_type):
        """Sets the preview_type of this PreviewTopicDataRequest.


        :param preview_type: The preview_type of this PreviewTopicDataRequest.  # noqa: E501
        :type: str
        """
        if self._configuration.client_side_validation and preview_type is None:
            raise ValueError("Invalid value for `preview_type`, must not be `None`")  # noqa: E501

        self._preview_type = preview_type

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


        :return: The relative_value of this PreviewTopicDataRequest.  # noqa: E501
        :rtype: int
        """
        return self._relative_value

    @relative_value.setter
    def relative_value(self, relative_value):
        """Sets the relative_value of this PreviewTopicDataRequest.


        :param relative_value: The relative_value of this PreviewTopicDataRequest.  # noqa: E501
        :type: int
        """
        if self._configuration.client_side_validation and relative_value is None:
            raise ValueError("Invalid value for `relative_value`, must not be `None`")  # noqa: E501

        self._relative_value = relative_value

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


        :return: The topic_name of this PreviewTopicDataRequest.  # noqa: E501
        :rtype: str
        """
        return self._topic_name

    @topic_name.setter
    def topic_name(self, topic_name):
        """Sets the topic_name of this PreviewTopicDataRequest.


        :param topic_name: The topic_name of this PreviewTopicDataRequest.  # noqa: E501
        :type: str
        """
        if self._configuration.client_side_validation and topic_name is None:
            raise ValueError("Invalid value for `topic_name`, must not be `None`")  # noqa: E501

        self._topic_name = topic_name

    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(PreviewTopicDataRequest, 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, PreviewTopicDataRequest):
            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, PreviewTopicDataRequest):
            return True

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