-
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: Add support for admin subscriptions (#82)
- Loading branch information
1 parent
2ab88bf
commit 7ebcacf
Showing
3 changed files
with
18 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,15 @@ | ||
""" | ||
V1 Beta Admin Subscriptions | ||
""" | ||
|
||
from ....internals.list_resources import ListResources | ||
from ....internals.list_all_resources import ListAllResources | ||
from ....internals.post_resources import PostResources | ||
|
||
class Subscriptions(ListResources, ListAllResources, PostResources): | ||
"""Class for Subscriptions APIs.""" | ||
|
||
SUBSCRIPTIONS = '/subscriptions' | ||
|
||
def __init__(self, version, role): | ||
super().__init__(version, role, Subscriptions.SUBSCRIPTIONS) |
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.34.0', | ||
version='v0.35.0', | ||
author='Siva Narayanan', | ||
author_email='[email protected]', | ||
description='Python SDK for accessing Fyle Platform APIs', | ||
|