-
Notifications
You must be signed in to change notification settings - Fork 59
Expand file tree
/
Copy pathbank_transfers.py
More file actions
64 lines (43 loc) · 1.71 KB
/
bank_transfers.py
File metadata and controls
64 lines (43 loc) · 1.71 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
# 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 BankTransfers(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 = {"bank_transfers": "list[BankTransfer]"}
attribute_map = {"bank_transfers": "BankTransfers"}
def __init__(self, bank_transfers=None): # noqa: E501
"""BankTransfers - a model defined in OpenAPI""" # noqa: E501
self._bank_transfers = None
self.discriminator = None
if bank_transfers is not None:
self.bank_transfers = bank_transfers
@property
def bank_transfers(self):
"""Gets the bank_transfers of this BankTransfers. # noqa: E501
:return: The bank_transfers of this BankTransfers. # noqa: E501
:rtype: list[BankTransfer]
"""
return self._bank_transfers
@bank_transfers.setter
def bank_transfers(self, bank_transfers):
"""Sets the bank_transfers of this BankTransfers.
:param bank_transfers: The bank_transfers of this BankTransfers. # noqa: E501
:type: list[BankTransfer]
"""
self._bank_transfers = bank_transfers