1
- from six import python_2_unicode_compatible
2
1
from ..mixins import ToDictMixin , ToJsonMixin , FromJsonMixin , ListMixin , ReadMixin , UpdateMixin
3
2
4
3
@@ -24,7 +23,6 @@ class QuickbooksReadOnlyObject(QuickbooksBaseObject, ReadMixin, ListMixin):
24
23
pass
25
24
26
25
27
- @python_2_unicode_compatible
28
26
class MetaData (FromJsonMixin ):
29
27
def __init__ (self ):
30
28
self .CreateTime = ""
@@ -44,7 +42,6 @@ def to_linked_txn(self):
44
42
return linked_txn
45
43
46
44
47
- @python_2_unicode_compatible
48
45
class Address (QuickbooksBaseObject ):
49
46
def __init__ (self ):
50
47
self .Id = None
@@ -65,7 +62,6 @@ def __str__(self):
65
62
return "{0} {1}, {2} {3}" .format (self .Line1 , self .City , self .CountrySubDivisionCode , self .PostalCode )
66
63
67
64
68
- @python_2_unicode_compatible
69
65
class PhoneNumber (ToJsonMixin , FromJsonMixin , ToDictMixin ):
70
66
def __init__ (self ):
71
67
self .FreeFormNumber = ""
@@ -74,7 +70,6 @@ def __str__(self):
74
70
return self .FreeFormNumber
75
71
76
72
77
- @python_2_unicode_compatible
78
73
class EmailAddress (QuickbooksBaseObject ):
79
74
def __init__ (self ):
80
75
self .Address = ""
@@ -83,7 +78,6 @@ def __str__(self):
83
78
return self .Address
84
79
85
80
86
- @python_2_unicode_compatible
87
81
class WebAddress (QuickbooksBaseObject ):
88
82
def __init__ (self ):
89
83
self .URI = ""
@@ -92,7 +86,6 @@ def __str__(self):
92
86
return self .URI
93
87
94
88
95
- @python_2_unicode_compatible
96
89
class Ref (QuickbooksBaseObject ):
97
90
def __init__ (self ):
98
91
self .value = ""
@@ -103,7 +96,6 @@ def __str__(self):
103
96
return self .name
104
97
105
98
106
- @python_2_unicode_compatible
107
99
class CustomField (QuickbooksBaseObject ):
108
100
def __init__ (self ):
109
101
self .DefinitionId = ""
@@ -115,7 +107,6 @@ def __str__(self):
115
107
return self .Name
116
108
117
109
118
- @python_2_unicode_compatible
119
110
class LinkedTxn (QuickbooksBaseObject ):
120
111
qbo_object_name = "LinkedTxn"
121
112
@@ -129,7 +120,6 @@ def __str__(self):
129
120
return str (self .TxnId )
130
121
131
122
132
- @python_2_unicode_compatible
133
123
class CustomerMemo (QuickbooksBaseObject ):
134
124
def __init__ (self ):
135
125
super (CustomerMemo , self ).__init__ ()
0 commit comments