Skip to content

Commit 14d9517

Browse files
authored
Update text and html type requirements
The notes state that the types are strings when the types really need to be FooterText and FooterHtml
1 parent 266c2ab commit 14d9517

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sendgrid/helpers/mail/footer_settings.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ def __init__(self, enable=None, text=None, html=None):
77
:param enable: Whether this footer should be applied.
88
:type enable: boolean, optional
99
:param text: Text content of this footer
10-
:type text: string, optional
10+
:type text: FooterText, optional
1111
:param html: HTML content of this footer
12-
:type html: string, optional
12+
:type html: FooterHtml, optional
1313
"""
1414
self._enable = None
1515
self._text = None

0 commit comments

Comments
 (0)