# coding: utf-8

"""
    bio

    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 CommitIESImageRequest(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 = {
        'description': 'str',
        'image': 'str',
        'image_replace': 'bool',
        'webapp_instance_id': 'str',
        'workspace_id': 'str'
    }

    attribute_map = {
        'description': 'Description',
        'image': 'Image',
        'image_replace': 'ImageReplace',
        'webapp_instance_id': 'WebappInstanceID',
        'workspace_id': 'WorkspaceID'
    }

    def __init__(self, description=None, image=None, image_replace=None, webapp_instance_id=None, workspace_id=None, _configuration=None):  # noqa: E501
        """CommitIESImageRequest - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._description = None
        self._image = None
        self._image_replace = None
        self._webapp_instance_id = None
        self._workspace_id = None
        self.discriminator = None

        self.description = description
        self.image = image
        self.image_replace = image_replace
        self.webapp_instance_id = webapp_instance_id
        self.workspace_id = workspace_id

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


        :return: The description of this CommitIESImageRequest.  # noqa: E501
        :rtype: str
        """
        return self._description

    @description.setter
    def description(self, description):
        """Sets the description of this CommitIESImageRequest.


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

        self._description = description

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


        :return: The image of this CommitIESImageRequest.  # noqa: E501
        :rtype: str
        """
        return self._image

    @image.setter
    def image(self, image):
        """Sets the image of this CommitIESImageRequest.


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

        self._image = image

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


        :return: The image_replace of this CommitIESImageRequest.  # noqa: E501
        :rtype: bool
        """
        return self._image_replace

    @image_replace.setter
    def image_replace(self, image_replace):
        """Sets the image_replace of this CommitIESImageRequest.


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

        self._image_replace = image_replace

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


        :return: The webapp_instance_id of this CommitIESImageRequest.  # noqa: E501
        :rtype: str
        """
        return self._webapp_instance_id

    @webapp_instance_id.setter
    def webapp_instance_id(self, webapp_instance_id):
        """Sets the webapp_instance_id of this CommitIESImageRequest.


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

        self._webapp_instance_id = webapp_instance_id

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


        :return: The workspace_id of this CommitIESImageRequest.  # noqa: E501
        :rtype: str
        """
        return self._workspace_id

    @workspace_id.setter
    def workspace_id(self, workspace_id):
        """Sets the workspace_id of this CommitIESImageRequest.


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

        self._workspace_id = workspace_id

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

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