# coding: utf-8

"""
    vod20250101

    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 HighlightCutsForStartExecutionInput(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 = {
        'max_duration': 'float',
        'max_number': 'int',
        'min_duration': 'float',
        'miniseries_option': 'MiniseriesOptionForStartExecutionInput',
        'with_storyboard': 'bool'
    }

    attribute_map = {
        'max_duration': 'MaxDuration',
        'max_number': 'MaxNumber',
        'min_duration': 'MinDuration',
        'miniseries_option': 'MiniseriesOption',
        'with_storyboard': 'WithStoryboard'
    }

    def __init__(self, max_duration=None, max_number=None, min_duration=None, miniseries_option=None, with_storyboard=None, _configuration=None):  # noqa: E501
        """HighlightCutsForStartExecutionInput - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._max_duration = None
        self._max_number = None
        self._min_duration = None
        self._miniseries_option = None
        self._with_storyboard = None
        self.discriminator = None

        if max_duration is not None:
            self.max_duration = max_duration
        if max_number is not None:
            self.max_number = max_number
        if min_duration is not None:
            self.min_duration = min_duration
        if miniseries_option is not None:
            self.miniseries_option = miniseries_option
        if with_storyboard is not None:
            self.with_storyboard = with_storyboard

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


        :return: The max_duration of this HighlightCutsForStartExecutionInput.  # noqa: E501
        :rtype: float
        """
        return self._max_duration

    @max_duration.setter
    def max_duration(self, max_duration):
        """Sets the max_duration of this HighlightCutsForStartExecutionInput.


        :param max_duration: The max_duration of this HighlightCutsForStartExecutionInput.  # noqa: E501
        :type: float
        """

        self._max_duration = max_duration

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


        :return: The max_number of this HighlightCutsForStartExecutionInput.  # noqa: E501
        :rtype: int
        """
        return self._max_number

    @max_number.setter
    def max_number(self, max_number):
        """Sets the max_number of this HighlightCutsForStartExecutionInput.


        :param max_number: The max_number of this HighlightCutsForStartExecutionInput.  # noqa: E501
        :type: int
        """

        self._max_number = max_number

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


        :return: The min_duration of this HighlightCutsForStartExecutionInput.  # noqa: E501
        :rtype: float
        """
        return self._min_duration

    @min_duration.setter
    def min_duration(self, min_duration):
        """Sets the min_duration of this HighlightCutsForStartExecutionInput.


        :param min_duration: The min_duration of this HighlightCutsForStartExecutionInput.  # noqa: E501
        :type: float
        """

        self._min_duration = min_duration

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


        :return: The miniseries_option of this HighlightCutsForStartExecutionInput.  # noqa: E501
        :rtype: MiniseriesOptionForStartExecutionInput
        """
        return self._miniseries_option

    @miniseries_option.setter
    def miniseries_option(self, miniseries_option):
        """Sets the miniseries_option of this HighlightCutsForStartExecutionInput.


        :param miniseries_option: The miniseries_option of this HighlightCutsForStartExecutionInput.  # noqa: E501
        :type: MiniseriesOptionForStartExecutionInput
        """

        self._miniseries_option = miniseries_option

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


        :return: The with_storyboard of this HighlightCutsForStartExecutionInput.  # noqa: E501
        :rtype: bool
        """
        return self._with_storyboard

    @with_storyboard.setter
    def with_storyboard(self, with_storyboard):
        """Sets the with_storyboard of this HighlightCutsForStartExecutionInput.


        :param with_storyboard: The with_storyboard of this HighlightCutsForStartExecutionInput.  # noqa: E501
        :type: bool
        """

        self._with_storyboard = with_storyboard

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

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