Accounts model
AccountsSourceModel
Bases: DBBaseModel
Represents account-related data stored in the database.
Attributes:
Name | Type | Description |
---|---|---|
__tablename__ |
str
|
The name of the database table ("accounts_source"). |
id |
UUID
|
The unique identifier for the account. |
account |
str
|
The name of the account. |
sector |
str
|
The business sector of the account. |
year_established |
str
|
The year the account was established. |
revenue |
str
|
The revenue of the account. |
employees |
str
|
The number of employees in the company. |
office_location |
str
|
The primary office location of the account. |
subsidiary_of |
str
|
Indicates if the account is a subsidiary of another company. |
Source code in api/models/accounts_model.py
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 |
|