ó
ş9^c           @   s   d  e  f d     YZ d S(   t   SubscriptionHtmlc           B   sD   e  Z d  Z d d  Z e d    Z e j d    Z d   Z RS(   s$   The HTML of an SubscriptionTracking.c         C   s%   d |  _ | d k	 r! | |  _ n  d S(   sB  Create a SubscriptionHtml object

        :param subscription_html: Html to be appended to the email, with the
                                  subscription tracking link. You may control
                                  where the link is by using the tag <% %>
        :type subscription_html: string, optional
        N(   t   Nonet   _subscription_htmlt   subscription_html(   t   selfR   (    (    sI   /tmp/pip-unpacked-wheel-v7av_c/sendgrid/helpers/mail/subscription_html.pyt   __init__   s    	c         C   s   |  j  S(   sŤ   Html to be appended to the email, with the subscription tracking link.
           You may control where the link is by using the tag <% %>

        :rtype: string
        (   R   (   R   (    (    sI   /tmp/pip-unpacked-wheel-v7av_c/sendgrid/helpers/mail/subscription_html.pyR      s    c         C   s   | |  _  d S(   sr  Html to be appended to the email, with the subscription tracking link.
           You may control where the link is by using the tag <% %>

        :param value: Html to be appended to the email, with the subscription
                      tracking link. You may control where the link is by using
                      the tag <% %>
        :type value: string
        N(   R   (   R   t   value(    (    sI   /tmp/pip-unpacked-wheel-v7av_c/sendgrid/helpers/mail/subscription_html.pyR      s    
c         C   s   |  j  S(   s­   
        Get a JSON-ready representation of this SubscriptionHtml.

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