# coding: utf-8

"""
    livesaas20230801

    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 CreateActivityBonusTaskRequest(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 = {
        'activity_id': 'int',
        'bonus_list': 'list[BonusListForCreateActivityBonusTaskInput]',
        'end_time': 'int',
        'name': 'str',
        'start_time': 'int',
        'task_running_type': 'int'
    }

    attribute_map = {
        'activity_id': 'ActivityId',
        'bonus_list': 'BonusList',
        'end_time': 'EndTime',
        'name': 'Name',
        'start_time': 'StartTime',
        'task_running_type': 'TaskRunningType'
    }

    def __init__(self, activity_id=None, bonus_list=None, end_time=None, name=None, start_time=None, task_running_type=None, _configuration=None):  # noqa: E501
        """CreateActivityBonusTaskRequest - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._activity_id = None
        self._bonus_list = None
        self._end_time = None
        self._name = None
        self._start_time = None
        self._task_running_type = None
        self.discriminator = None

        self.activity_id = activity_id
        if bonus_list is not None:
            self.bonus_list = bonus_list
        if end_time is not None:
            self.end_time = end_time
        self.name = name
        if start_time is not None:
            self.start_time = start_time
        self.task_running_type = task_running_type

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


        :return: The activity_id of this CreateActivityBonusTaskRequest.  # noqa: E501
        :rtype: int
        """
        return self._activity_id

    @activity_id.setter
    def activity_id(self, activity_id):
        """Sets the activity_id of this CreateActivityBonusTaskRequest.


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

        self._activity_id = activity_id

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


        :return: The bonus_list of this CreateActivityBonusTaskRequest.  # noqa: E501
        :rtype: list[BonusListForCreateActivityBonusTaskInput]
        """
        return self._bonus_list

    @bonus_list.setter
    def bonus_list(self, bonus_list):
        """Sets the bonus_list of this CreateActivityBonusTaskRequest.


        :param bonus_list: The bonus_list of this CreateActivityBonusTaskRequest.  # noqa: E501
        :type: list[BonusListForCreateActivityBonusTaskInput]
        """

        self._bonus_list = bonus_list

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


        :return: The end_time of this CreateActivityBonusTaskRequest.  # noqa: E501
        :rtype: int
        """
        return self._end_time

    @end_time.setter
    def end_time(self, end_time):
        """Sets the end_time of this CreateActivityBonusTaskRequest.


        :param end_time: The end_time of this CreateActivityBonusTaskRequest.  # noqa: E501
        :type: int
        """

        self._end_time = end_time

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


        :return: The name of this CreateActivityBonusTaskRequest.  # noqa: E501
        :rtype: str
        """
        return self._name

    @name.setter
    def name(self, name):
        """Sets the name of this CreateActivityBonusTaskRequest.


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

        self._name = name

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


        :return: The start_time of this CreateActivityBonusTaskRequest.  # noqa: E501
        :rtype: int
        """
        return self._start_time

    @start_time.setter
    def start_time(self, start_time):
        """Sets the start_time of this CreateActivityBonusTaskRequest.


        :param start_time: The start_time of this CreateActivityBonusTaskRequest.  # noqa: E501
        :type: int
        """

        self._start_time = start_time

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


        :return: The task_running_type of this CreateActivityBonusTaskRequest.  # noqa: E501
        :rtype: int
        """
        return self._task_running_type

    @task_running_type.setter
    def task_running_type(self, task_running_type):
        """Sets the task_running_type of this CreateActivityBonusTaskRequest.


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

        self._task_running_type = task_running_type

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

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