# 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 HighlightForStartExecutionInput(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 = {
        'edit': 'EditForStartExecutionInput',
        'highlight_cuts': 'HighlightCutsForStartExecutionInput',
        'mini_game': 'MiniGameForStartExecutionInput',
        'mode': 'str',
        'model': 'str',
        'opening_hook': 'OpeningHookForStartExecutionInput',
        'storyline_cuts': 'StorylineCutsForStartExecutionInput'
    }

    attribute_map = {
        'edit': 'Edit',
        'highlight_cuts': 'HighlightCuts',
        'mini_game': 'MiniGame',
        'mode': 'Mode',
        'model': 'Model',
        'opening_hook': 'OpeningHook',
        'storyline_cuts': 'StorylineCuts'
    }

    def __init__(self, edit=None, highlight_cuts=None, mini_game=None, mode=None, model=None, opening_hook=None, storyline_cuts=None, _configuration=None):  # noqa: E501
        """HighlightForStartExecutionInput - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._edit = None
        self._highlight_cuts = None
        self._mini_game = None
        self._mode = None
        self._model = None
        self._opening_hook = None
        self._storyline_cuts = None
        self.discriminator = None

        if edit is not None:
            self.edit = edit
        if highlight_cuts is not None:
            self.highlight_cuts = highlight_cuts
        if mini_game is not None:
            self.mini_game = mini_game
        if mode is not None:
            self.mode = mode
        if model is not None:
            self.model = model
        if opening_hook is not None:
            self.opening_hook = opening_hook
        if storyline_cuts is not None:
            self.storyline_cuts = storyline_cuts

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


        :return: The edit of this HighlightForStartExecutionInput.  # noqa: E501
        :rtype: EditForStartExecutionInput
        """
        return self._edit

    @edit.setter
    def edit(self, edit):
        """Sets the edit of this HighlightForStartExecutionInput.


        :param edit: The edit of this HighlightForStartExecutionInput.  # noqa: E501
        :type: EditForStartExecutionInput
        """

        self._edit = edit

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


        :return: The highlight_cuts of this HighlightForStartExecutionInput.  # noqa: E501
        :rtype: HighlightCutsForStartExecutionInput
        """
        return self._highlight_cuts

    @highlight_cuts.setter
    def highlight_cuts(self, highlight_cuts):
        """Sets the highlight_cuts of this HighlightForStartExecutionInput.


        :param highlight_cuts: The highlight_cuts of this HighlightForStartExecutionInput.  # noqa: E501
        :type: HighlightCutsForStartExecutionInput
        """

        self._highlight_cuts = highlight_cuts

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


        :return: The mini_game of this HighlightForStartExecutionInput.  # noqa: E501
        :rtype: MiniGameForStartExecutionInput
        """
        return self._mini_game

    @mini_game.setter
    def mini_game(self, mini_game):
        """Sets the mini_game of this HighlightForStartExecutionInput.


        :param mini_game: The mini_game of this HighlightForStartExecutionInput.  # noqa: E501
        :type: MiniGameForStartExecutionInput
        """

        self._mini_game = mini_game

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


        :return: The mode of this HighlightForStartExecutionInput.  # noqa: E501
        :rtype: str
        """
        return self._mode

    @mode.setter
    def mode(self, mode):
        """Sets the mode of this HighlightForStartExecutionInput.


        :param mode: The mode of this HighlightForStartExecutionInput.  # noqa: E501
        :type: str
        """

        self._mode = mode

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


        :return: The model of this HighlightForStartExecutionInput.  # noqa: E501
        :rtype: str
        """
        return self._model

    @model.setter
    def model(self, model):
        """Sets the model of this HighlightForStartExecutionInput.


        :param model: The model of this HighlightForStartExecutionInput.  # noqa: E501
        :type: str
        """

        self._model = model

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


        :return: The opening_hook of this HighlightForStartExecutionInput.  # noqa: E501
        :rtype: OpeningHookForStartExecutionInput
        """
        return self._opening_hook

    @opening_hook.setter
    def opening_hook(self, opening_hook):
        """Sets the opening_hook of this HighlightForStartExecutionInput.


        :param opening_hook: The opening_hook of this HighlightForStartExecutionInput.  # noqa: E501
        :type: OpeningHookForStartExecutionInput
        """

        self._opening_hook = opening_hook

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


        :return: The storyline_cuts of this HighlightForStartExecutionInput.  # noqa: E501
        :rtype: StorylineCutsForStartExecutionInput
        """
        return self._storyline_cuts

    @storyline_cuts.setter
    def storyline_cuts(self, storyline_cuts):
        """Sets the storyline_cuts of this HighlightForStartExecutionInput.


        :param storyline_cuts: The storyline_cuts of this HighlightForStartExecutionInput.  # noqa: E501
        :type: StorylineCutsForStartExecutionInput
        """

        self._storyline_cuts = storyline_cuts

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

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