# 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 EraseForGetExecutionOutput(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 = {
        'auto': 'AutoForGetExecutionOutput',
        'erase_option': 'EraseOptionForGetExecutionOutput',
        'manual': 'ManualForGetExecutionOutput',
        'mode': 'str',
        'new_vid': 'bool',
        'with_erase_info': 'bool'
    }

    attribute_map = {
        'auto': 'Auto',
        'erase_option': 'EraseOption',
        'manual': 'Manual',
        'mode': 'Mode',
        'new_vid': 'NewVid',
        'with_erase_info': 'WithEraseInfo'
    }

    def __init__(self, auto=None, erase_option=None, manual=None, mode=None, new_vid=None, with_erase_info=None, _configuration=None):  # noqa: E501
        """EraseForGetExecutionOutput - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._auto = None
        self._erase_option = None
        self._manual = None
        self._mode = None
        self._new_vid = None
        self._with_erase_info = None
        self.discriminator = None

        if auto is not None:
            self.auto = auto
        if erase_option is not None:
            self.erase_option = erase_option
        if manual is not None:
            self.manual = manual
        if mode is not None:
            self.mode = mode
        if new_vid is not None:
            self.new_vid = new_vid
        if with_erase_info is not None:
            self.with_erase_info = with_erase_info

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


        :return: The auto of this EraseForGetExecutionOutput.  # noqa: E501
        :rtype: AutoForGetExecutionOutput
        """
        return self._auto

    @auto.setter
    def auto(self, auto):
        """Sets the auto of this EraseForGetExecutionOutput.


        :param auto: The auto of this EraseForGetExecutionOutput.  # noqa: E501
        :type: AutoForGetExecutionOutput
        """

        self._auto = auto

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


        :return: The erase_option of this EraseForGetExecutionOutput.  # noqa: E501
        :rtype: EraseOptionForGetExecutionOutput
        """
        return self._erase_option

    @erase_option.setter
    def erase_option(self, erase_option):
        """Sets the erase_option of this EraseForGetExecutionOutput.


        :param erase_option: The erase_option of this EraseForGetExecutionOutput.  # noqa: E501
        :type: EraseOptionForGetExecutionOutput
        """

        self._erase_option = erase_option

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


        :return: The manual of this EraseForGetExecutionOutput.  # noqa: E501
        :rtype: ManualForGetExecutionOutput
        """
        return self._manual

    @manual.setter
    def manual(self, manual):
        """Sets the manual of this EraseForGetExecutionOutput.


        :param manual: The manual of this EraseForGetExecutionOutput.  # noqa: E501
        :type: ManualForGetExecutionOutput
        """

        self._manual = manual

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


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

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


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

        self._mode = mode

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


        :return: The new_vid of this EraseForGetExecutionOutput.  # noqa: E501
        :rtype: bool
        """
        return self._new_vid

    @new_vid.setter
    def new_vid(self, new_vid):
        """Sets the new_vid of this EraseForGetExecutionOutput.


        :param new_vid: The new_vid of this EraseForGetExecutionOutput.  # noqa: E501
        :type: bool
        """

        self._new_vid = new_vid

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


        :return: The with_erase_info of this EraseForGetExecutionOutput.  # noqa: E501
        :rtype: bool
        """
        return self._with_erase_info

    @with_erase_info.setter
    def with_erase_info(self, with_erase_info):
        """Sets the with_erase_info of this EraseForGetExecutionOutput.


        :param with_erase_info: The with_erase_info of this EraseForGetExecutionOutput.  # noqa: E501
        :type: bool
        """

        self._with_erase_info = with_erase_info

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

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