-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: Adding scheduled callbacks API (#83)
* Feat: Adding scheduled callbacks API * Bumping the version
- Loading branch information
Showing
3 changed files
with
19 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
""" | ||
V1 Beta Admin Scheduled Callbacks | ||
""" | ||
|
||
from ....internals.list_resources import ListResources | ||
from ....internals.list_all_resources import ListAllResources | ||
from ....internals.post_resources import PostResources | ||
|
||
|
||
class ScheduledCallbacks(ListResources, ListAllResources, PostResources): | ||
"""Class for Scheduled Callbacks APIs.""" | ||
|
||
SCHEDULED_CALLBACKS = '/scheduled_callbacks' | ||
|
||
def __init__(self, version, role): | ||
super().__init__(version, role, ScheduledCallbacks.SCHEDULED_CALLBACKS) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,7 @@ | |
|
||
setuptools.setup( | ||
name='fyle', | ||
version='v0.35.0', | ||
version='v0.36.0', | ||
author='Siva Narayanan', | ||
author_email='[email protected]', | ||
description='Python SDK for accessing Fyle Platform APIs', | ||
|