File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66
77from ._emails import Emails
88
9+
910class SendEmailResponse (TypedDict ):
1011 id : str
1112 """
1213 The sent Email ID.
1314 """
1415
16+
1517class Batch :
1618
1719 class SendOptions (TypedDict ):
Original file line number Diff line number Diff line change @@ -53,6 +53,7 @@ class _EmailDefaultAttrs(_FromParam):
5353 The last event of the email.
5454 """
5555
56+
5657class Email (_EmailDefaultAttrs ):
5758 """
5859 Email type that wraps the email object
Original file line number Diff line number Diff line change @@ -61,6 +61,7 @@ class _CancelScheduledEmailResponse(TypedDict):
6161 },
6262)
6363
64+
6465class _SendParamsDefault (_SendParamsFrom ):
6566 to : Union [str , List [str ]]
6667 """
@@ -108,6 +109,7 @@ class _SendParamsDefault(_SendParamsFrom):
108109 The date should be in ISO 8601 format (e.g: 2024-08-05T11:52:01.858Z).
109110 """
110111
112+
111113class Emails :
112114
113115 class CancelScheduledEmailResponse (_CancelScheduledEmailResponse ):
You can’t perform that action at this time.
0 commit comments