Skip to content

Commit

Permalink
fix: replace names in BatchId docstrings (#971)
Browse files Browse the repository at this point in the history
  • Loading branch information
bennylope authored Feb 6, 2021
1 parent eb3014b commit 3f97a7f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions sendgrid/helpers/mail/batch_id.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,15 +18,15 @@ def __init__(self, batch_id=None):

@property
def batch_id(self):
"""A unix timestamp.
"""The batch ID.
:rtype: string
"""
return self._batch_id

@batch_id.setter
def batch_id(self, value):
"""A unix timestamp.
"""The batch ID.
:param value: Batch Id
:type value: string
Expand All @@ -42,7 +42,7 @@ def __str__(self):

def get(self):
"""
Get a JSON-ready representation of this SendAt object.
Get a JSON-ready representation of this BatchId object.
:returns: The BatchId, ready for use in a request body.
:rtype: string
Expand Down

0 comments on commit 3f97a7f

Please sign in to comment.