U
    cc                     @   s~   d dl Z d dlZd dlZd dlZd dlmZ d dlmZmZ ej	rjd dlm
Z
mZmZmZmZ d dlmZ G dd deZdS )    N)Enum)ABCMetaabstractmethod)DictListOptionalUnionAny)datetimec                   @   sv   e Zd ZdZddiZddiZdZddiZdZe	Z
edd	d
Zedd Zdd Zdd Zdd Zdd Zdd ZdS )Causeat  
    Describes the type of the Cause.


    :param object_type: 
    :type object_type: (optional) str

    .. note::

        This is an abstract class. Use the following mapping, to figure out
        the model class to be instantiated, that sets ``type`` variable.

        | ConnectionCompleted: :py:class:`ask_sdk_model.connection_completed.ConnectionCompleted`

    object_typestrtypeFZConnectionCompletedz6ask_sdk_model.connection_completed.ConnectionCompletedNc                 C   s   d| _ || _dS )zqDescribes the type of the Cause.

        :param object_type: 
        :type object_type: (optional) str
        N)Z_Cause__discriminator_valuer   )selfr    r   7/tmp/pip-unpacked-wheel-urk6bcke/ask_sdk_model/cause.py__init__>   s    zCause.__init__c                 C   s   || j  }| j|S )z:Returns the real base class specified by the discriminator)json_discriminator_keydiscriminator_value_class_mapget)clsdataZdiscriminator_valuer   r   r   get_real_child_modelJ   s    
zCause.get_real_child_modelc                 C   s   i }t | jD ]\}}t| |}t|trDttdd |||< qt|trZ|j||< qt	|drr|
 ||< qt|trttdd | ||< q|||< q|S )z&Returns the model properties as a dictc                 S   s&   t | dr|  S t| tr"| jS | S )Nto_dicthasattrr   
isinstancer   value)xr   r   r   <lambda>Z   s   zCause.to_dict.<locals>.<lambda>r   c                 S   sF   t | d dr"| d | d  fS t| d trB| d | d jfS | S )N   r   r   r   )itemr   r   r   r   d   s
    )six	iteritemsdeserialized_typesgetattrr   listmapr   r   r   r   dictitems)r   resultattr_r   r   r   r   r   Q   s&    





zCause.to_dictc                 C   s   t |  S )z.Returns the string representation of the model)pprintpformatr   r   r   r   r   to_stro   s    zCause.to_strc                 C   s   |   S )zFor `print` and `pprint`)r0   r/   r   r   r   __repr__t   s    zCause.__repr__c                 C   s   t |tsdS | j|jkS )z&Returns true if both objects are equalF)r   r   __dict__r   otherr   r   r   __eq__y   s    
zCause.__eq__c                 C   s
   | |k S )z*Returns true if both objects are not equalr   r3   r   r   r   __ne__   s    zCause.__ne__)N)__name__
__module____qualname____doc__r$   Zattribute_mapZsupports_multiple_typesr   r   r   __metaclass__r   r   classmethodr   r   r0   r1   r5   r6   r   r   r   r   r      s,      
r   )r-   rer"   typingenumr   abcr   r   TYPE_CHECKINGr   r   r   r   r	   r
   objectr   r   r   r   r   <module>   s   