aboutsummaryrefslogtreecommitdiff
path: root/.venv/lib/python3.12/site-packages/sendgrid/helpers/mail/bcc_settings_email.py
diff options
context:
space:
mode:
Diffstat (limited to '.venv/lib/python3.12/site-packages/sendgrid/helpers/mail/bcc_settings_email.py')
-rw-r--r--.venv/lib/python3.12/site-packages/sendgrid/helpers/mail/bcc_settings_email.py40
1 files changed, 40 insertions, 0 deletions
diff --git a/.venv/lib/python3.12/site-packages/sendgrid/helpers/mail/bcc_settings_email.py b/.venv/lib/python3.12/site-packages/sendgrid/helpers/mail/bcc_settings_email.py
new file mode 100644
index 00000000..2c2847e2
--- /dev/null
+++ b/.venv/lib/python3.12/site-packages/sendgrid/helpers/mail/bcc_settings_email.py
@@ -0,0 +1,40 @@
+class BccSettingsEmail(object):
+ """The BccSettingsEmail of an Attachment."""
+
+ def __init__(self, bcc_settings_email=None):
+ """Create a BccSettingsEmail object
+
+ :param bcc_settings_email: The email address that you would like to
+ receive the BCC
+ :type bcc_settings_email: string, optional
+ """
+ self._bcc_settings_email = None
+
+ if bcc_settings_email is not None:
+ self.bcc_settings_email = bcc_settings_email
+
+ @property
+ def bcc_settings_email(self):
+ """The email address that you would like to receive the BCC
+
+ :rtype: string
+ """
+ return self._bcc_settings_email
+
+ @bcc_settings_email.setter
+ def bcc_settings_email(self, value):
+ """The email address that you would like to receive the BCC
+
+ :param value: The email address that you would like to receive the BCC
+ :type value: string
+ """
+ self._bcc_settings_email = value
+
+ def get(self):
+ """
+ Get a JSON-ready representation of this BccSettingsEmail.
+
+ :returns: This BccSettingsEmail, ready for use in a request body.
+ :rtype: string
+ """
+ return self.bcc_settings_email