# coding: utf-8

"""
    vepfs

    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 ScheduleForDescribeLensTasksOutput(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 = {
        'conflict_policy': 'str',
        'once_run_timing': 'str',
        'period': 'int',
        'period_unit': 'str',
        'run_time': 'int',
        'schedule_type': 'str'
    }

    attribute_map = {
        'conflict_policy': 'ConflictPolicy',
        'once_run_timing': 'OnceRunTiming',
        'period': 'Period',
        'period_unit': 'PeriodUnit',
        'run_time': 'RunTime',
        'schedule_type': 'ScheduleType'
    }

    def __init__(self, conflict_policy=None, once_run_timing=None, period=None, period_unit=None, run_time=None, schedule_type=None, _configuration=None):  # noqa: E501
        """ScheduleForDescribeLensTasksOutput - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._conflict_policy = None
        self._once_run_timing = None
        self._period = None
        self._period_unit = None
        self._run_time = None
        self._schedule_type = None
        self.discriminator = None

        if conflict_policy is not None:
            self.conflict_policy = conflict_policy
        if once_run_timing is not None:
            self.once_run_timing = once_run_timing
        if period is not None:
            self.period = period
        if period_unit is not None:
            self.period_unit = period_unit
        if run_time is not None:
            self.run_time = run_time
        if schedule_type is not None:
            self.schedule_type = schedule_type

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


        :return: The conflict_policy of this ScheduleForDescribeLensTasksOutput.  # noqa: E501
        :rtype: str
        """
        return self._conflict_policy

    @conflict_policy.setter
    def conflict_policy(self, conflict_policy):
        """Sets the conflict_policy of this ScheduleForDescribeLensTasksOutput.


        :param conflict_policy: The conflict_policy of this ScheduleForDescribeLensTasksOutput.  # noqa: E501
        :type: str
        """

        self._conflict_policy = conflict_policy

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


        :return: The once_run_timing of this ScheduleForDescribeLensTasksOutput.  # noqa: E501
        :rtype: str
        """
        return self._once_run_timing

    @once_run_timing.setter
    def once_run_timing(self, once_run_timing):
        """Sets the once_run_timing of this ScheduleForDescribeLensTasksOutput.


        :param once_run_timing: The once_run_timing of this ScheduleForDescribeLensTasksOutput.  # noqa: E501
        :type: str
        """

        self._once_run_timing = once_run_timing

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


        :return: The period of this ScheduleForDescribeLensTasksOutput.  # noqa: E501
        :rtype: int
        """
        return self._period

    @period.setter
    def period(self, period):
        """Sets the period of this ScheduleForDescribeLensTasksOutput.


        :param period: The period of this ScheduleForDescribeLensTasksOutput.  # noqa: E501
        :type: int
        """

        self._period = period

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


        :return: The period_unit of this ScheduleForDescribeLensTasksOutput.  # noqa: E501
        :rtype: str
        """
        return self._period_unit

    @period_unit.setter
    def period_unit(self, period_unit):
        """Sets the period_unit of this ScheduleForDescribeLensTasksOutput.


        :param period_unit: The period_unit of this ScheduleForDescribeLensTasksOutput.  # noqa: E501
        :type: str
        """

        self._period_unit = period_unit

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


        :return: The run_time of this ScheduleForDescribeLensTasksOutput.  # noqa: E501
        :rtype: int
        """
        return self._run_time

    @run_time.setter
    def run_time(self, run_time):
        """Sets the run_time of this ScheduleForDescribeLensTasksOutput.


        :param run_time: The run_time of this ScheduleForDescribeLensTasksOutput.  # noqa: E501
        :type: int
        """

        self._run_time = run_time

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


        :return: The schedule_type of this ScheduleForDescribeLensTasksOutput.  # noqa: E501
        :rtype: str
        """
        return self._schedule_type

    @schedule_type.setter
    def schedule_type(self, schedule_type):
        """Sets the schedule_type of this ScheduleForDescribeLensTasksOutput.


        :param schedule_type: The schedule_type of this ScheduleForDescribeLensTasksOutput.  # noqa: E501
        :type: str
        """

        self._schedule_type = schedule_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(ScheduleForDescribeLensTasksOutput, 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, ScheduleForDescribeLensTasksOutput):
            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, ScheduleForDescribeLensTasksOutput):
            return True

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