File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 29
29
"""
30
30
31
31
__title__ = 'chartmogul'
32
- __version__ = '1.1.4 '
32
+ __version__ = '1.1.5 '
33
33
__build__ = 0x000000
34
34
__author__ = 'ChartMogul Ltd'
35
35
__license__ = 'MIT'
Original file line number Diff line number Diff line change @@ -39,11 +39,14 @@ class Invoice(Resource):
39
39
40
40
class _Schema (Schema ):
41
41
uuid = fields .String ()
42
- customer_uuid = fields .String (allow_none = True )
43
42
external_id = fields .String (allow_none = True )
43
+ customer_uuid = fields .String (allow_none = True )
44
+ data_source_uuid = fields .String (allow_none = True )
45
+
46
+ currency = fields .String ()
44
47
date = fields .DateTime ()
45
48
due_date = fields .DateTime (allow_none = True )
46
- currency = fields . String ()
49
+
47
50
line_items = fields .Nested (LineItem ._Schema , many = True )
48
51
transactions = fields .Nested (Transaction ._Schema , many = True )
49
52
You can’t perform that action at this time.
0 commit comments