# coding: utf-8

"""
    speech_saas_prod20250521

    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 UsageMonitoringRequest(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 = {
        'end': 'str',
        'mode': 'str',
        'project_name': 'str',
        'resource_id': 'str',
        'start': 'str',
        'usage_type': 'str'
    }

    attribute_map = {
        'end': 'End',
        'mode': 'Mode',
        'project_name': 'ProjectName',
        'resource_id': 'ResourceID',
        'start': 'Start',
        'usage_type': 'UsageType'
    }

    def __init__(self, end=None, mode=None, project_name=None, resource_id=None, start=None, usage_type=None, _configuration=None):  # noqa: E501
        """UsageMonitoringRequest - a model defined in Swagger"""  # noqa: E501
        if _configuration is None:
            _configuration = Configuration()
        self._configuration = _configuration

        self._end = None
        self._mode = None
        self._project_name = None
        self._resource_id = None
        self._start = None
        self._usage_type = None
        self.discriminator = None

        self.end = end
        self.mode = mode
        self.project_name = project_name
        self.resource_id = resource_id
        self.start = start
        if usage_type is not None:
            self.usage_type = usage_type

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


        :return: The end of this UsageMonitoringRequest.  # noqa: E501
        :rtype: str
        """
        return self._end

    @end.setter
    def end(self, end):
        """Sets the end of this UsageMonitoringRequest.


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

        self._end = end

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


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

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


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

        self._mode = mode

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


        :return: The project_name of this UsageMonitoringRequest.  # noqa: E501
        :rtype: str
        """
        return self._project_name

    @project_name.setter
    def project_name(self, project_name):
        """Sets the project_name of this UsageMonitoringRequest.


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

        self._project_name = project_name

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


        :return: The resource_id of this UsageMonitoringRequest.  # noqa: E501
        :rtype: str
        """
        return self._resource_id

    @resource_id.setter
    def resource_id(self, resource_id):
        """Sets the resource_id of this UsageMonitoringRequest.


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

        self._resource_id = resource_id

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


        :return: The start of this UsageMonitoringRequest.  # noqa: E501
        :rtype: str
        """
        return self._start

    @start.setter
    def start(self, start):
        """Sets the start of this UsageMonitoringRequest.


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

        self._start = start

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


        :return: The usage_type of this UsageMonitoringRequest.  # noqa: E501
        :rtype: str
        """
        return self._usage_type

    @usage_type.setter
    def usage_type(self, usage_type):
        """Sets the usage_type of this UsageMonitoringRequest.


        :param usage_type: The usage_type of this UsageMonitoringRequest.  # noqa: E501
        :type: str
        """

        self._usage_type = usage_type

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

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