forked from routablehq/python-quickbooks
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtaxagency.py
More file actions
24 lines (18 loc) · 751 Bytes
/
taxagency.py
File metadata and controls
24 lines (18 loc) · 751 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from six import python_2_unicode_compatible
from .base import QuickbooksTransactionEntity, QuickbooksManagedObject
@python_2_unicode_compatible
class TaxAgency(QuickbooksManagedObject, QuickbooksTransactionEntity):
"""
QBO definition: Tax Agency is an entity that is associated with a tax rate and identifies the agency to which that tax rate
applies, that is, the entity that collects those taxes.
"""
class_dict = {}
qbo_object_name = "TaxAgency"
def __init__(self):
super(TaxAgency, self).__init__()
self.DisplayName = ""
self.TaxRegistrationNumber = ""
self.TaxTrackedOnSales = True
self.TaxTrackedOnPurchases = False
def __str__(self):
return self.DisplayName