Skip to content

Commit 3f8a9e0

Browse files
committed
Update Docstrings
1 parent 717aef0 commit 3f8a9e0

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

ciscosparkapi/api/licenses.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def __init__(self, json):
5151

5252
@property
5353
def id(self):
54-
"""The unique id for the License."""
54+
"""The unique ID for the License."""
5555
return self._json.get('id')
5656

5757
@property

ciscosparkapi/api/organizations.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ def __init__(self, json):
5252

5353
@property
5454
def id(self):
55-
"""The unique id for the Organization."""
55+
"""The unique ID for the Organization."""
5656
return self._json.get('id')
5757

5858
@property
@@ -135,7 +135,7 @@ def list(self, max=None, **request_parameters):
135135
yield Organization(item)
136136

137137
def get(self, orgId):
138-
"""Get the details of an Organization, by id.
138+
"""Get the details of an Organization, by ID.
139139
140140
Args:
141141
orgId(basestring): The ID of the Organization to be retrieved.

ciscosparkapi/api/people.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ def list(self, email=None, displayName=None, id=None, orgId=None, max=None,
176176
the displayName to be searched.
177177
id(basestring): List people by ID. Accepts up to 85 person IDs
178178
separated by commas.
179-
orgId(basestring): The organization id.
179+
orgId(basestring): The organization ID.
180180
max(int): Limit the maximum number of items returned from the Spark
181181
service per request.
182182
**request_parameters: Additional request parameters (provides
@@ -365,7 +365,7 @@ def delete(self, personId):
365365
Only an admin can remove a person.
366366
367367
Args:
368-
personId(basestring): The 'id' of the person to be deleted.
368+
personId(basestring): The ID of the person to be deleted.
369369
370370
Raises:
371371
AssertionError: If the parameter types are incorrect.

ciscosparkapi/api/roles.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def __init__(self, json):
5151

5252
@property
5353
def id(self):
54-
"""The unique id for the Role."""
54+
"""The unique ID for the Role."""
5555
return self._json.get('id')
5656

5757
@property

0 commit comments

Comments
 (0)