o
    ɶdj
                     @   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                   @   sd   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d
d Z	dd Z
dd ZdS )
QueueStatsz:
    The stats for a queue and its dead letter queue.
    c                 K   s(   ddd| _ ddd| _d| _d| _dS )a  
        Initializes a new QueueStats object with values from keyword arguments.
        The following keyword arguments are supported (corresponding to the getters/setters of this class):

        :param queue:
            The value to assign to the queue property of this QueueStats.
        :type queue: oci.queue.models.Stats

        :param dlq:
            The value to assign to the dlq property of this QueueStats.
        :type dlq: oci.queue.models.Stats

        ZStats)queuedlqr   r   N)Zswagger_typesZattribute_map_queue_dlq)selfkwargs r   @usr/lib/python3.10/site-packages/oci/queue/models/queue_stats.py__init__   s   
zQueueStats.__init__c                 C      | j S )z
        **[Required]** Gets the queue of this QueueStats.

        :return: The queue of this QueueStats.
        :rtype: oci.queue.models.Stats
        r	   r   r   r   r   r   -      zQueueStats.queuec                 C   
   || _ dS )z
        Sets the queue of this QueueStats.

        :param queue: The queue of this QueueStats.
        :type: oci.queue.models.Stats
        Nr   )r   r   r   r   r   r   7      
c                 C   r   )z
        **[Required]** Gets the dlq of this QueueStats.

        :return: The dlq of this QueueStats.
        :rtype: oci.queue.models.Stats
        r
   r   r   r   r   r   A   r   zQueueStats.dlqc                 C   r   )z
        Sets the dlq of this QueueStats.

        :param dlq: The dlq of this QueueStats.
        :type: oci.queue.models.Stats
        Nr   )r   r   r   r   r   r   K   r   c                 C   s   t | S N)r   r   r   r   r   __repr__U   s   zQueueStats.__repr__c                 C   s   |d u rdS | j |j kS )NF)__dict__r   otherr   r   r   __eq__X   s   zQueueStats.__eq__c                 C   s
   | |k S r   r   r   r   r   r   __ne__^   s   
zQueueStats.__ne__N)__name__
__module____qualname____doc__r   propertyr   setterr   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   