Skip to content

Commit 3f97a7f

Browse files
authored
fix: replace names in BatchId docstrings (sendgrid#971)
1 parent eb3014b commit 3f97a7f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sendgrid/helpers/mail/batch_id.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ def __init__(self, batch_id=None):
1818

1919
@property
2020
def batch_id(self):
21-
"""A unix timestamp.
21+
"""The batch ID.
2222
2323
:rtype: string
2424
"""
2525
return self._batch_id
2626

2727
@batch_id.setter
2828
def batch_id(self, value):
29-
"""A unix timestamp.
29+
"""The batch ID.
3030
3131
:param value: Batch Id
3232
:type value: string
@@ -42,7 +42,7 @@ def __str__(self):
4242

4343
def get(self):
4444
"""
45-
Get a JSON-ready representation of this SendAt object.
45+
Get a JSON-ready representation of this BatchId object.
4646
4747
:returns: The BatchId, ready for use in a request body.
4848
:rtype: string

0 commit comments

Comments
 (0)