# coding: utf-8

"""
    efs

    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 CreateDirRequest(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 = {
        'access_mode': 'str',
        'file_system_id': 'str',
        'file_system_path': 'str',
        'owner_group_id': 'int',
        'owner_user_id': 'int',
        'recursive': 'bool'
    }

    attribute_map = {
        'access_mode': 'AccessMode',
        'file_system_id': 'FileSystemId',
        'file_system_path': 'FileSystemPath',
        'owner_group_id': 'OwnerGroupId',
        'owner_user_id': 'OwnerUserId',
        'recursive': 'Recursive'
    }

    def __init__(self, access_mode=None, file_system_id=None, file_system_path=None, owner_group_id=None, owner_user_id=None, recursive=None, _configuration=None):  # noqa: E501
        """CreateDirRequest - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._access_mode = None
        self._file_system_id = None
        self._file_system_path = None
        self._owner_group_id = None
        self._owner_user_id = None
        self._recursive = None
        self.discriminator = None

        if access_mode is not None:
            self.access_mode = access_mode
        self.file_system_id = file_system_id
        self.file_system_path = file_system_path
        if owner_group_id is not None:
            self.owner_group_id = owner_group_id
        if owner_user_id is not None:
            self.owner_user_id = owner_user_id
        if recursive is not None:
            self.recursive = recursive

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


        :return: The access_mode of this CreateDirRequest.  # noqa: E501
        :rtype: str
        """
        return self._access_mode

    @access_mode.setter
    def access_mode(self, access_mode):
        """Sets the access_mode of this CreateDirRequest.


        :param access_mode: The access_mode of this CreateDirRequest.  # noqa: E501
        :type: str
        """

        self._access_mode = access_mode

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


        :return: The file_system_id of this CreateDirRequest.  # noqa: E501
        :rtype: str
        """
        return self._file_system_id

    @file_system_id.setter
    def file_system_id(self, file_system_id):
        """Sets the file_system_id of this CreateDirRequest.


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

        self._file_system_id = file_system_id

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


        :return: The file_system_path of this CreateDirRequest.  # noqa: E501
        :rtype: str
        """
        return self._file_system_path

    @file_system_path.setter
    def file_system_path(self, file_system_path):
        """Sets the file_system_path of this CreateDirRequest.


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

        self._file_system_path = file_system_path

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


        :return: The owner_group_id of this CreateDirRequest.  # noqa: E501
        :rtype: int
        """
        return self._owner_group_id

    @owner_group_id.setter
    def owner_group_id(self, owner_group_id):
        """Sets the owner_group_id of this CreateDirRequest.


        :param owner_group_id: The owner_group_id of this CreateDirRequest.  # noqa: E501
        :type: int
        """

        self._owner_group_id = owner_group_id

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


        :return: The owner_user_id of this CreateDirRequest.  # noqa: E501
        :rtype: int
        """
        return self._owner_user_id

    @owner_user_id.setter
    def owner_user_id(self, owner_user_id):
        """Sets the owner_user_id of this CreateDirRequest.


        :param owner_user_id: The owner_user_id of this CreateDirRequest.  # noqa: E501
        :type: int
        """

        self._owner_user_id = owner_user_id

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


        :return: The recursive of this CreateDirRequest.  # noqa: E501
        :rtype: bool
        """
        return self._recursive

    @recursive.setter
    def recursive(self, recursive):
        """Sets the recursive of this CreateDirRequest.


        :param recursive: The recursive of this CreateDirRequest.  # noqa: E501
        :type: bool
        """

        self._recursive = recursive

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

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