-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add AR Invoice Items support (#103)
* add invoice items support * fix consts * fmt * bump ver * update contract lines schema
- Loading branch information
Showing
5 changed files
with
133 additions
and
2 deletions.
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,11 @@ | ||
""" | ||
Sage Intacct AR Invoice Items | ||
""" | ||
|
||
from .api_base import ApiBase | ||
|
||
|
||
class ARInvoiceItems(ApiBase): | ||
"""Class for AR Invoice Items APIs.""" | ||
def __init__(self): | ||
ApiBase.__init__(self, dimension='ARINVOICEITEM') |
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
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 |
---|---|---|
|
@@ -8,7 +8,7 @@ | |
|
||
setuptools.setup( | ||
name='sageintacctsdk', | ||
version='1.24.0', | ||
version='1.25.0', | ||
author='Ashwin T', | ||
author_email='[email protected]', | ||
description='Python SDK for accessing Sage Intacct APIs', | ||
|