Skip to content

Commit 6c26450

Browse files
authored
Update Type Requirements
It states that requirement types are string when they are need to by an object.
1 parent 5a73513 commit 6c26450

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sendgrid/helpers/mail/subscription_tracking.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@ def __init__(
1111
:param enable: Whether this setting is enabled.
1212
:type enable: boolean, optional
1313
:param text: Text to be appended to the email with the link as "<% %>".
14-
:type text: string, optional
14+
:type text: SubscriptionText, optional
1515
:param html: HTML to be appended to the email with the link as "<% %>".
16-
:type html: string, optional
16+
:type html: SubscriptionHtml, optional
1717
:param substitution_tag: Tag replaced with URL. Overrides text, html
1818
params.
19-
:type substitution_tag: string, optional
19+
:type substitution_tag: SubscriptionSubstitutionTag, optional
2020
"""
2121
self._enable = None
2222
self._text = None

0 commit comments

Comments
 (0)