-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathbalances.py
More file actions
94 lines (66 loc) · 2.63 KB
/
balances.py
File metadata and controls
94 lines (66 loc) · 2.63 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# coding: utf-8
"""
Xero Accounting API
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) # noqa: E501
Contact: api@xero.com
Generated by: https://openapi-generator.tech
"""
import re # noqa: F401
from xero_python.models import BaseModel
class Balances(BaseModel):
"""NOTE: This class is auto generated by OpenAPI Generator.
Ref: https://openapi-generator.tech
Do not edit the class manually.
"""
"""
Attributes:
openapi_types (dict): The key is attribute name
and the value is attribute type.
attribute_map (dict): The key is attribute name
and the value is json key in definition.
"""
openapi_types = {
"accounts_receivable": "AccountsReceivable",
"accounts_payable": "AccountsPayable",
}
attribute_map = {
"accounts_receivable": "AccountsReceivable",
"accounts_payable": "AccountsPayable",
}
def __init__(self, accounts_receivable=None, accounts_payable=None): # noqa: E501
"""Balances - a model defined in OpenAPI""" # noqa: E501
self._accounts_receivable = None
self._accounts_payable = None
self.discriminator = None
if accounts_receivable is not None:
self.accounts_receivable = accounts_receivable
if accounts_payable is not None:
self.accounts_payable = accounts_payable
@property
def accounts_receivable(self):
"""Gets the accounts_receivable of this Balances. # noqa: E501
:return: The accounts_receivable of this Balances. # noqa: E501
:rtype: AccountsReceivable
"""
return self._accounts_receivable
@accounts_receivable.setter
def accounts_receivable(self, accounts_receivable):
"""Sets the accounts_receivable of this Balances.
:param accounts_receivable: The accounts_receivable of this Balances. # noqa: E501
:type: AccountsReceivable
"""
self._accounts_receivable = accounts_receivable
@property
def accounts_payable(self):
"""Gets the accounts_payable of this Balances. # noqa: E501
:return: The accounts_payable of this Balances. # noqa: E501
:rtype: AccountsPayable
"""
return self._accounts_payable
@accounts_payable.setter
def accounts_payable(self, accounts_payable):
"""Sets the accounts_payable of this Balances.
:param accounts_payable: The accounts_payable of this Balances. # noqa: E501
:type: AccountsPayable
"""
self._accounts_payable = accounts_payable