forked from sendgrid/sendgrid-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathspam_url.py
44 lines (35 loc) · 1.34 KB
/
spam_url.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
class SpamUrl(object):
"""An Inbound Parse URL that you would like a copy of your email
along with the spam report to be sent to."""
def __init__(self, spam_url=None):
"""Create a SpamUrl object
:param spam_url: An Inbound Parse URL that you would like a copy of
your email along with the spam report to be sent to.
:type spam_url: string, optional
"""
self._spam_url = None
if spam_url is not None:
self.spam_url = spam_url
@property
def spam_url(self):
"""An Inbound Parse URL that you would like a copy of your email
along with the spam report to be sent to.
:rtype: string
"""
return self._spam_url
@spam_url.setter
def spam_url(self, value):
"""An Inbound Parse URL that you would like a copy of your email
along with the spam report to be sent to.
:param value: An Inbound Parse URL that you would like a copy of your
email along with the spam report to be sent to.
:type value: string
"""
self._spam_url = value
def get(self):
"""
Get a JSON-ready representation of this SpamUrl.
:returns: This SpamUrl, ready for use in a request body.
:rtype: string
"""
return self.spam_url