ó
º9—^c           @   s   d  e  f d „  ƒ  YZ d S(   t   SpamThresholdc           B   sD   e  Z d  Z d d „ Z e d „  ƒ Z e j d „  ƒ Z d „  Z RS(   s¬   The threshold used to determine if your content qualifies as spam
       on a scale from 1 to 10, with 10 being most strict, or most likely
       to be considered as spam.c         C   s%   d |  _ | d k	 r! | |  _ n  d S(   sr  Create a SpamThreshold object

        :param spam_threshold: The threshold used to determine if your content
                               qualifies as spam on a scale from 1 to 10, with
                               10 being most strict, or most likely to be
                               considered as spam.
        :type spam_threshold: integer, optional
        N(   t   Nonet   _spam_thresholdt   spam_threshold(   t   selfR   (    (    sF   /tmp/pip-unpacked-wheel-v7av_c/sendgrid/helpers/mail/spam_threshold.pyt   __init__   s    		c         C   s   |  j  S(   sá   The threshold used to determine if your content
           qualifies as spam on a scale from 1 to 10, with
           10 being most strict, or most likely to be
           considered as spam.

        :rtype: integer
        (   R   (   R   (    (    sF   /tmp/pip-unpacked-wheel-v7av_c/sendgrid/helpers/mail/spam_threshold.pyR      s    	c         C   s   | |  _  d S(   s³  The threshold used to determine if your content
           qualifies as spam on a scale from 1 to 10, with
           10 being most strict, or most likely to be
           considered as spam.

        :param value: The threshold used to determine if your content
        qualifies as spam on a scale from 1 to 10, with
        10 being most strict, or most likely to be
        considered as spam.
        :type value: integer
        N(   R   (   R   t   value(    (    sF   /tmp/pip-unpacked-wheel-v7av_c/sendgrid/helpers/mail/spam_threshold.pyR      s    c         C   s   |  j  S(   s¨   
        Get a JSON-ready representation of this SpamThreshold.

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