o
    ëÉ¶d´  ã                   @   s8   d dl mZmZmZ d dlmZ eG dd„ deƒƒZdS )é    )Úformatted_flat_dictÚNONE_SENTINELÚ#value_allowed_none_or_none_sentinel)Úinit_model_state_from_kwargsc                   @   s~   e Zd ZdZdd„ Zedd„ ƒZejdd„ ƒZedd„ ƒZejd	d„ ƒZed
d„ ƒZ	e	jdd„ ƒZ	dd„ Z
dd„ Zdd„ ZdS )ÚTimez<
    A model to hold time in hour:minute:second format.
    c                 K   s2   ddddœ| _ ddddœ| _d| _d| _d| _dS )a  
        Initializes a new Time object with values from keyword arguments.
        The following keyword arguments are supported (corresponding to the getters/setters of this class):

        :param hour:
            The value to assign to the hour property of this Time.
        :type hour: int

        :param minute:
            The value to assign to the minute property of this Time.
        :type minute: int

        :param second:
            The value to assign to the second property of this Time.
        :type second: int

        Úint)ÚhourÚminuteÚsecondr   r	   r
   N)Zswagger_typesZattribute_mapÚ_hourÚ_minuteÚ_second)ÚselfÚkwargs© r   úDusr/lib/python3.10/site-packages/oci/data_integration/models/time.pyÚ__init__   s   ýý
zTime.__init__c                 C   ó   | j S )zƒ
        Gets the hour of this Time.
        The hour value.


        :return: The hour of this Time.
        :rtype: int
        ©r   ©r   r   r   r   r   4   ó   
z	Time.hourc                 C   ó
   || _ dS )z†
        Sets the hour of this Time.
        The hour value.


        :param hour: The hour of this Time.
        :type: int
        Nr   )r   r   r   r   r   r   @   ó   

c                 C   r   )z‰
        Gets the minute of this Time.
        The minute value.


        :return: The minute of this Time.
        :rtype: int
        ©r   r   r   r   r   r	   L   r   zTime.minutec                 C   r   )zŽ
        Sets the minute of this Time.
        The minute value.


        :param minute: The minute of this Time.
        :type: int
        Nr   )r   r	   r   r   r   r	   X   r   c                 C   r   )z‰
        Gets the second of this Time.
        The second value.


        :return: The second of this Time.
        :rtype: int
        ©r   r   r   r   r   r
   d   r   zTime.secondc                 C   r   )zŽ
        Sets the second of this Time.
        The second value.


        :param second: The second of this Time.
        :type: int
        Nr   )r   r
   r   r   r   r
   p   r   c                 C   s   t | ƒS ©N)r   r   r   r   r   Ú__repr__|   s   zTime.__repr__c                 C   s   |d u rdS | j |j kS )NF)Ú__dict__©r   Úotherr   r   r   Ú__eq__   s   zTime.__eq__c                 C   s
   | |k S r   r   r   r   r   r   Ú__ne__…   s   
zTime.__ne__N)Ú__name__Ú
__module__Ú__qualname__Ú__doc__r   Úpropertyr   Úsetterr	   r
   r   r    r!   r   r   r   r   r      s$    "





r   N)Zoci.utilr   r   r   Zoci.decoratorsr   Úobjectr   r   r   r   r   Ú<module>   s   