ó
š9^c           @   s   d  e  f d     YZ d S(   t   FileContentc           B   sD   e  Z d  Z d d  Z e d    Z e j d    Z d   Z RS(   s,   The Base64 encoded content of an Attachment.c         C   s%   d |  _ | d k	 r! | |  _ n  d S(   s   Create a FileContent object

        :param file_content: The Base64 encoded content of the attachment
        :type file_content: string, optional
        N(   t   Nonet   _file_contentt   file_content(   t   selfR   (    (    sD   /tmp/pip-unpacked-wheel-v7av_c/sendgrid/helpers/mail/file_content.pyt   __init__   s    	c         C   s   |  j  S(   sN   The Base64 encoded content of the attachment.

        :rtype: string
        (   R   (   R   (    (    sD   /tmp/pip-unpacked-wheel-v7av_c/sendgrid/helpers/mail/file_content.pyR      s    c         C   s   | |  _  d S(   s   The Base64 encoded content of the attachment.

        :param value: The Base64 encoded content of the attachment.
        :type value: string
        N(   R   (   R   t   value(    (    sD   /tmp/pip-unpacked-wheel-v7av_c/sendgrid/helpers/mail/file_content.pyR      s    c         C   s   |  j  S(   sĪ   
        Get a JSON-ready representation of this FileContente.

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