forked from sendgrid/sendgrid-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclick_tracking.py
71 lines (56 loc) · 2.03 KB
/
click_tracking.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
class ClickTracking(object):
"""Allows you to track whether a recipient clicked a link in your email."""
def __init__(self, enable=None, enable_text=None):
"""Create a ClickTracking to track clicked links in your email.
:param enable: Whether click tracking is enabled
:type enable: boolean, optional
:param enable_text: If click tracking is on in your email's text/plain.
:type enable_text: boolean, optional
"""
self._enable = None
self._enable_text = None
if enable is not None:
self.enable = enable
if enable_text is not None:
self.enable_text = enable_text
@property
def enable(self):
"""Indicates if this setting is enabled.
:rtype: boolean
"""
return self._enable
@enable.setter
def enable(self, value):
"""Indicates if this setting is enabled.
:param value: Indicates if this setting is enabled.
:type value: boolean
"""
self._enable = value
@property
def enable_text(self):
"""Indicates if this setting should be included in the text/plain
portion of your email.
:rtype: boolean
"""
return self._enable_text
@enable_text.setter
def enable_text(self, value):
"""Indicates if this setting should be included in the text/plain
portion of your email.
:param value: Indicates if this setting should be included in the
text/plain portion of your email.
:type value: boolean
"""
self._enable_text = value
def get(self):
"""
Get a JSON-ready representation of this ClickTracking.
:returns: This ClickTracking, ready for use in a request body.
:rtype: dict
"""
click_tracking = {}
if self.enable is not None:
click_tracking["enable"] = self.enable
if self.enable_text is not None:
click_tracking["enable_text"] = self.enable_text
return click_tracking