
9^c           @   s   d  e  f d     YZ d S(   t   FileNamec           B   sD   e  Z d  Z d d  Z e d    Z e j d    Z d   Z RS(   s   The filename of an Attachment.c         C   s%   d |  _ | d k	 r! | |  _ n  d S(   s   Create a FileName object

        :param file_name: The file name of the attachment
        :type file_name: string, optional
        N(   t   Nonet
   _file_namet	   file_name(   t   selfR   (    (    sA   /tmp/pip-unpacked-wheel-v7av_c/sendgrid/helpers/mail/file_name.pyt   __init__   s    	c         C   s   |  j  S(   sA   The file name of the attachment.

        :rtype: string
        (   R   (   R   (    (    sA   /tmp/pip-unpacked-wheel-v7av_c/sendgrid/helpers/mail/file_name.pyR      s    c         C   s   | |  _  d S(   s}   The file name of the attachment.

        :param value: The file name of the attachment.
        :type value: string
        N(   R   (   R   t   value(    (    sA   /tmp/pip-unpacked-wheel-v7av_c/sendgrid/helpers/mail/file_name.pyR      s    c         C   s   |  j  S(   s   
        Get a JSON-ready representation of this FileName.

        :returns: This FileName, ready for use in a request body.
        :rtype: string
        (   R   (   R   (    (    sA   /tmp/pip-unpacked-wheel-v7av_c/sendgrid/helpers/mail/file_name.pyt   get    s    N(	   t   __name__t
   __module__t   __doc__R   R   t   propertyR   t   setterR   (    (    (    sA   /tmp/pip-unpacked-wheel-v7av_c/sendgrid/helpers/mail/file_name.pyR       s
   	N(   t   objectR    (    (    (    sA   /tmp/pip-unpacked-wheel-v7av_c/sendgrid/helpers/mail/file_name.pyt   <module>   t    